/* Main CSS file for custom styles */

/* Add your custom styles below */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Estilos para el calendario */
.fc .fc-toolbar-title {
    font-size: 1.25rem;
    margin: 0;
}

.fc .fc-button {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
}

.fc .fc-button-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.fc .fc-button-primary:not(:disabled).fc-button-active, 
.fc .fc-button-primary:not(:disabled):active {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.fc .fc-button-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.fc .fc-daygrid-day-number {
    color: #212529;
    text-decoration: none;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Estilos para días disponibles y no disponibles */
.fc-day-available {
    background-color: rgba(25, 135, 84, 0.1) !important;
    cursor: pointer;
}

.fc-day-available:hover {
    background-color: rgba(25, 135, 84, 0.2) !important;
}

.fc-day-disabled {
    background-color: rgba(108, 117, 125, 0.05) !important;
    color: #6c757d !important;
    cursor: not-allowed;
}

.fc-day-disabled .fc-daygrid-day-number {
    color: #6c757d !important;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .fc-toolbar {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}
main {
    flex: 1;
}

/* Add any additional global styles here */