/* Global Styles */
:root {
    --navbar-height: 70px;
    --footer-height: 70px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    min-height: var(--navbar-height);
}

.card-kpi { border-top: 4px solid #4e73df; }
.card-kpi.success { border-top-color: #1cc88a; }
.card-kpi.info { border-top-color: #36b9cc; }
.card-kpi.warning { border-top-color: #f6c23e; }
.card-kpi.danger { border-top-color: #e74a3b; }

footer {
    min-height: var(--footer-height);
    display: flex;
    align-items: center;
    margin-top: auto;
}

.main-content {
    flex: 1;
}

/* Dark Mode Adjustments */
[data-bs-theme="dark"] {
    --bs-body-bg: #1a1d20;
    --bs-body-color: #adb5bd;
    --bs-secondary-color: #868e96;
    --bs-tertiary-bg: #212529;
    --bs-border-color: #2c3034;
}

[data-bs-theme="dark"] .card {
    background-color: #212529;
    border-color: #2c3034;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
}

[data-bs-theme="dark"] .text-muted {
    color: #868e96 !important;
}

[data-bs-theme="dark"] .table-dark {
    --bs-table-bg: #1a1d20;
}

[data-bs-theme="dark"] .card-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid #2c3034;
}

/* Softer Subtle Backgrounds for Dark Mode */
[data-bs-theme="dark"] .bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #4ea2ff !important;
    border: 1px solid rgba(13, 110, 253, 0.15) !important;
}

[data-bs-theme="dark"] .bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #47c385 !important;
    border: 1px solid rgba(25, 135, 84, 0.15) !important;
}

[data-bs-theme="dark"] .bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #ffd33d !important;
    border: 1px solid rgba(255, 193, 7, 0.15) !important;
}

[data-bs-theme="dark"] .bg-info-subtle {
    background-color: rgba(13, 202, 240, 0.1) !important;
    color: #58d9f1 !important;
    border: 1px solid rgba(13, 202, 240, 0.15) !important;
}

[data-bs-theme="dark"] .bg-secondary-subtle {
    background-color: rgba(108, 117, 125, 0.1) !important;
    color: #adb5bd !important;
    border: 1px solid rgba(108, 117, 125, 0.15) !important;
}

[data-bs-theme="dark"] .list-group-item {
    background-color: transparent;
    border-color: #2c3034;
    color: #adb5bd;
}

[data-bs-theme="dark"] .badge.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.2) !important;
}

[data-bs-theme="dark"] .navbar {
    border-bottom: 1px solid #2c3034;
}

