/* Custom styles for OTD Dashboard */

/* Card styling */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    /* Se eliminó el efecto de elevación */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Status badges */
.badge.bg-warning {
    color: #212529 !important;
}

/* Navbar customization */
.navbar-brand {
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Footer styling */
.footer {
    border-top: 1px solid #dee2e6;
    margin-top: 3rem;
}

/* KPI cards */
.card .display-4 {
    font-weight: bold;
}

/* Improve spacing in forms */
.form-label {
    font-weight: 500;
}

.modal-header {
    border-bottom-width: 3px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-footer {
        flex-direction: column;
    }
    
    .card-footer .btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
