#abs-calendar-container {
    /* max-width: 400px;*/
    margin: 20px auto;
    font-family: sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    /*padding: 15px;*/
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.abs-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#abs-current-month-year {
    font-weight: bold;
    font-size: 1.2em;
}

.abs-nav-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1.1em;
}

.abs-nav-btn:hover {
    background-color: #e0e0e0;
}

.abs-calendar-weekdays, .abs-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.abs-calendar-weekdays div {
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    color: #777;
    padding-bottom: 10px;
}

.abs-calendar-days .day {
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.abs-calendar-days .day.prev-month, .abs-calendar-days .day.next-month {
    color: #ccc;
    cursor: default;
}

.abs-calendar-days .day.available:hover {
    background-color: #e6f7ff;
}

.abs-calendar-days .day.selected {
    background-color: #dc3545; /* Rojo, como en la imagen */
    color: white;
    font-weight: bold;
}

.abs-calendar-days .day.disabled {
    color: #d0d0d0;
    background-color: #f9f9f9;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Variantes para estados deshabilitados */
.abs-calendar-days .day.disabled.fully-booked {
    background-color: #fee2e2; /* rojo claro */
    color: #b91c1c; /* rojo oscuro */
    border: 1px solid #fecaca;
}

.abs-calendar-days .day.disabled.no-slots {
    background-color: #f3f4f6; /* gris neutro */
    color: #9ca3af;
    border: 1px dashed #e5e7eb;
}

#abs-slots-container {
    margin-top: 20px;
}

.abs-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.abs-time-slot {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
}

.abs-time-slot:hover {
    background-color: #e0e0e0;
}

.abs-time-slot.selected {
    background-color: #28a745; /* Verde para el slot seleccionado */
    color: white;
    border-color: #28a745;
}

.abs-time-slot.disabled {
    background-color: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}
