.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;
    color: #f1f5f9 !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-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-warning {
    color: #fbbf24 !important;
}

body.dark-mode .text-success {
    color: #34d399 !important;
}

body.dark-mode .text-info {
    color: #38bdf8 !important;
}

body.dark-mode .text-danger {
    color: #f87171 !important;
}

body.dark-mode .text-secondary {
    color: #94a3b8 !important;
}