.calendrier-dispo {
    font-family: sans-serif;
    max-width: 700px;
    margin: auto;
}

.calendrier-dispo h2 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.calendrier-dispo .mois {
    margin-bottom: 30px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
}

.calendrier-dispo h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-align: center;
}

.grille-jours {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.grille-jours .entete-jour {
    font-weight: bold;
    background-color: #eee;
    padding: 5px;
    border-radius: 5px;
}

.grille-jours .jour {
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f8f8;
}

.grille-jours .jour.vide {
    background: transparent;
}

.grille-jours .jour.disponible {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.grille-jours .jour.disponible:hover {
    transform: scale(1.05);
}

/* Formulaire de réservation */
#form-reservation {
    max-width: 450px;
    margin: 30px auto;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

#form-reservation h3 {
    text-align: center;
    margin-top: 0;
    font-size: 1.3em;
    margin-bottom: 20px;
}

#form-reservation form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#form-reservation label {
    font-weight: bold;
    font-size: 0.95em;
}

#form-reservation input,
#form-reservation select {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
    transition: border-color 0.2s ease;
	margin:initial;
	width:auto;
}

#form-reservation input:focus,
#form-reservation select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 3px rgba(76,175,80,0.5);
}

#form-reservation button {
    padding: 12px;
    font-size: 1em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

#form-reservation button:hover {
    background-color: #45a049;
    transform: scale(1.02);
}

#reservationMessage {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

#content #form-reservation ul{
	margin: 1rem 0 2rem 0;
}

#content #form-reservation li{
	margin-bottom:1rem;
}

#content #form-reservation li::before{
	content:'';
}

#paypal-button-container,
#paypal-response{
	max-width: 450px;
    margin: auto;
}

#paypal-response,
#paypal-response-solde{
    font-size: 20px;
}

#form-reservation button.disabled{
	opacity: 0.5;
}

#infos_solde{
	margin-bottom: 2rem;
	text-align: center;
    font-size: 17px;
	padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fafafa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#paiement_solde_container{
	max-width:450px;
}

#infos_solde .little{
	font-size: 14px;
    font-style: italic;
}

#form-reservation label.news{
	font-weight:initial;
}

#form-reservation label.news input{
	display:inline;
}