.hover-card {
    transition: all 0.3s ease;
    background: #fff;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    background: #f8fafc;
}
.hover-card:hover h6 {
    color: #3b82f6 !important;
}

/* Dark mode overrides */
body.dark-mode {
    background-color: #0f172a !important;
}
body.dark-mode .text-dark {
    color: #f1f5f9 !important;
}
body.dark-mode .text-muted {
    color: #94a3b8 !important;
}
body.dark-mode .card {
    background-color: #1e293b !important;
    border: 1px solid #334155 !important;
}
body.dark-mode .hover-card:hover {
    background-color: #334155 !important;
    border-color: #3b82f6 !important;
}
body.dark-mode .bg-light {
    background-color: #1e293b !important;
}
    body.dark-mode .card {
        background-color: #1e293b !important;
        border: 1px solid #334155 !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
    }
    
    body.dark-mode .card:hover {
        background-color: #334155 !important;
        border-color: #60a5fa !important;
    }
    
    body.dark-mode .text-dark, body.dark-mode h3.fw-bold, body.dark-mode h6.fw-bold {
        color: #f1f5f9 !important;
    }
    
    body.dark-mode .text-muted, body.dark-mode small.text-muted, body.dark-mode p.text-muted {
        color: #cbd5e1 !important;
    }
    
    body.dark-mode .bg-primary.bg-opacity-10 {
        background-color: rgba(59, 130, 246, 0.2) !important;
    }
    
    body.dark-mode .bg-success.bg-opacity-10 {
        background-color: rgba(16, 185, 129, 0.2) !important;
    }
    
    body.dark-mode .bg-warning.bg-opacity-10 {
        background-color: rgba(245, 158, 11, 0.2) !important;
    }
    
    body.dark-mode .text-primary {
        color: #60a5fa !important;
    }
    
    body.dark-mode .text-success {
        color: #34d399 !important;
    }
    
    body.dark-mode .text-warning {
        color: #fbbf24 !important;
    }
    
    body.dark-mode .text-danger {
        color: #f87171 !important;
    }
    
    body.dark-mode .text-info {
        color: #38bdf8 !important;
    }
    
    body.dark-mode .badge.bg-success {
        background-color: #059669 !important;
        color: #ecfdf5 !important;
    }
    
    body.dark-mode .badge.bg-warning {
        background-color: #d97706 !important;
        color: #fffbeb !important;
    }

