/* kalanso.css : Styles personnalisés pour KalansoWeb */

/********************* Eleves **************************/
.eleves-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.eleve-elt-in-list {
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 350px;
}
/********************* Eleves **************************/


.eleve-infos-card, .responsable-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px;
    margin: 10px;
    background: #fff;
    background:red;
    min-width: 250px;
    max-width: 350px;
}

.eleve-infos-card img, .responsable-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.eleve-infos-card h4, .responsable-card h4 {
    margin: 0;
}

.eleve-infos-card .btn, .responsable-card .btn {
    font-size: 0.95em;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-confirm {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    padding: 30px 30px 20px 30px;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
}
.modal-confirm h5 {
    margin-bottom: 10px;
}
.modal-confirm p {
    margin-bottom: 20px;
} 