/* Global Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Style des tableaux dans les zones éditables */
.editable-block table td,
.editable-block table th {
    padding: 20px !important;
}

/* Couleurs personnalisées du projet  */
.b-bleu {
    background-color: #0084ad !important;
    border: none;
}

.b-cyan {
    background-color: #00b09b !important;
    border: none;
}

.b-vert {
    background-color: #28a745 !important;
    border: none;
}

.b-jaune {
    background-color: #f3ae1a !important;
    border: none;
}

.b-rose {
    background-color: #e91e63 !important;
    border: none;
}

.custom-btn {
    padding: 20px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.custom-btn:hover {
    transform: scale(1.02);
}

/* Responsivité Mobile */
@media (max-width: 768px) {
    .custom-btn {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Normalisation des images dans la médiathèque et conférences */
.mediatheque-item img,
.conference-item img {
    width: 100%;
    height: 300px; /* Hauteur fixe pour que les centres soient alignés */
    object-fit: contain; /* L'image est ENTIÈREMENT visible */
    background-color: #f8f9fa; /* Fond gris très clair pour combler les bords */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}