/* Estilos para la página de agendamiento */
.calendar-day {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
}

.calendar-day:hover:not(.disabled) {
    background-color: #f0e6ff;
}

.calendar-day.today {
    border: 1px solid #8b5cf6;
}

.calendar-day.selected {
    background-color: #8b5cf6;
    color: white;
    font-weight: bold;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.time-slot {
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.2s;
}

.time-slot:hover:not(.disabled) {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.time-slot.selected {
    background-color: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
    font-weight: bold;
}

.time-slot.disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: line-through;
}
.iti {
    width: 100%;
}

.iti__country-list {
    width: 300px; /* Fixed width for the dropdown */
    max-width: 300px; /* Ensure it doesn't exceed this width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    position: relative; /* Ensure proper positioning of children */
    z-index: 1; /* Ensure it's above other elements */
}

.iti__country-list .country-search-input {
    background-color: white; /* Ensure background is white to cover scrolling content */
    border-bottom: 1px solid #eee; /* Keep the subtle separator */
}