img.rdv-logo {
  position:relative;
  top:4px;
  left:156px;
  width: 50px;
  height: 50px;
  border:solid 0px red;
}
h2.vlr_forpopup {
    font-size: 25px !important;
    margin-top:33px;
}
.rdv-btn {
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.rdv-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.rdv-popup {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    overflow-y: auto; /* Activer le défilement vertical */
    height: 90vh; /* Fixer la hauteur pour déclencher le défilement si nécessaire */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}
.rdv-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5em;
}
.rdv-popup-left, .rdv-popup-right {
    width: 48%;
    margin: 1%;
}

#rdv-calendar {
    margin-bottom: 20px;
}
#rdv-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rdv-duration{margin-left:4px;margin-bottom:33px;}
.rdv_descrip{margin-left:25px;margin-right:33px;line-height:1.6em}
/* Boutons pour les créneaux */
.rdv-slot {
    padding: 10px;
    border: 1px solid #007bff;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: background 0.3s;
}
.rdv-slot:hover {
    background: #007bff;
    color: white;
}

.rdv-slot.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

/* Formulaire de coordonnées */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Mentions légales */
.mentions {
    font-size: 0.85em;
    color: #666;
    margin: 20px 0;
}

/* Bouton de confirmation */
.rdv-submit {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

/* Confirmation de prise de RDV */
.rdv-confirmation {
    text-align: center;
    padding: 40px;
}

.rdv-popup-back{position:relative;top:4px;left:14px;cursor:pointer;color:#007bff;font-size:33px;font-weight:bold;}
@media (max-width: 768px) {
    .rdv-popup {
        flex-direction: column;
        max-height: 100vh;
        height: 100%;
        border-radius: 0;
    }
    .rdv-popup-left,
    .rdv-popup-right {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}
