#arrow {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    top: calc(100%);
    border-top: 25px solid #fe5815;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.form-full-height {
    height: calc(80vh);
}

@media (min-width: 768px) {
    .form-full-height {
        height: auto;
    }
}

#cgu_form {
    text-align: left;
    font-size: 0.8em;
    line-height: 1;
}

.input-group-text{
    min-width:50px;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.email-suggestions {
    position: absolute;
    top: 100%;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    background: #fff;
}




.rdv .day-btn {
    width: 100%;
    margin-bottom: 0.5rem;
}
.rdv .time-slot {
    padding: 0.75rem;
    margin: 0.25rem;
    border-radius: 4px;
    width: calc(50% - 0.5rem);
    text-align: center;
}



.rdv .selected {
    background-color: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.rdv .time-container {
    display: none;
}
.rdv .time-container.active {
    display: block;
}
.rdv .form-container {
    max-width: 100%;
    padding: 15px;
}
.rdv #time-slots {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.rdv .time-header {
    margin-top: 1rem;
    font-weight: bold;
}



.rdv .selected-days {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f1f3f5;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    border: 1px solid #e9ecef;
}
.rdv .selected-days strong {
    color: #007bff;
}


.rdv .header-container {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    color: #495057;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
}
.rdv .header-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}
.rdv .header-title i {
    color: #000;

}

.rdv i {
    color: #6c757d;;
}


.rdv .time-slot:hover i, .rdv .time-slot.selected > i{
    color: #fff;
}

.rdv .header-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
}


.rdv .confirmation-container {
    display: none;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid #dee2e6;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}
.rdv .confirmation-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}
.rdv .confirmation-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}
.rdv .confirmation-details {
    background: #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}
.rdv .confirmation-item {
    margin-bottom: 0.5rem;
}
.rdv .confirmation-item strong {
    color: #007bff;
}
.rdv .edit-btn {
    margin-top: 1.5rem;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    background: #6c757d;
    border: none;
    transition: all 0.2s;
    color: #fff;
}
.rdv .edit-btn i {
    margin-right: 0.5rem;
    color: #fff;
}
.rdv .edit-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}