body {
    background-color: var(--background);
    font-family: "Segoe UI", Tahoma, sans-serif;
    padding: 30px;
    display: flex;
    justify-content: center;
    color: var(--paraph);
}

.container {
    background-color: var(--blanc);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px var(--ombres);
    max-width: 700px;
    width: 100%;
    text-align: center;
}

h1, h2 {
    color: var(--majeur);
    margin-bottom: 15px;
}

.img-placeholder {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    border-radius: 15px;
    margin: 15px 0;
}

.card-demande {
    background-color: var(--champs);
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 2px 5px var(--ombres);
}

.card-demande .profil {
    width: 60px;
    height: 60px;
    background-color: #eee;
    border-radius: 50%;
    margin: 10px auto;
}

.accept, .refuse {
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
    transition: 0.2s ease;
}

.accept {
    background-color: #d4f6dd;
    color: green;
    border: 2px solid green;
}

.accept:hover {
    background-color: green;
    color: white;
}

.refuse {
    background-color: #ffdada;
    color: red;
    border: 2px solid red;
}

.refuse:hover {
    background-color: red;
    color: white;
}

.calendar {
    margin-top: 30px;
    text-align: center;
}

.mois {
    font-size: 18px;
    color: var(--majeur);
    margin-bottom: 15px;
    font-weight: bold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    justify-items: center;
    font-size: 14px;
}

.day {
    width: 35px;
    height: 35px;
    background-color: var(--champs);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px var(--ombres);
    font-weight: bold;
}

.day.reserved {
    background-color: var(--majeur);
    color: white;
}

.mini-back {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: var(--champs);
    color: var(--majeur);
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 2px 2px 6px var(--ombres);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 0.2s ease;
}

.mini-back:hover {
    background-color: var(--majeur);
    color: white;
}
.calendar {
    margin-top: 20px;
    text-align: center;
}

.calendar-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #0a829c;
    font-size: 18px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* ✅ 7 jours/semaine */
    gap: 8px;
    justify-items: center;
}

.day {
    padding: 10px;
    width: 40px;
    height: 40px;
    background-color: #e0f7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.day.reserved {
    background-color: #0a829c;
    color: white;
}

.day.empty {
    background-color: transparent;
    visibility: hidden;
}

/* Bouton retour rond + icône */
.mini-back {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #cff6ff;
    color: #0a829c;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.mini-back:hover {
    background-color: #0a829c;
    color: white;
}
