/* ====================== GLOBAL DARK THEME ====================== */
body {
    background-color: #0f0f0f;
    color: #e0e0e0;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, .card-title, .card-header h5 {
    color: #f0f0f0;
}

.text-muted {
    color: #aaaaaa !important;
}

/* ====================== CARDS ====================== */
.card {
    background-color: #1a1a1a;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.card-header {
    background-color: #222222;
    border-bottom: 1px solid #333;
    color: #f0f0f0;
    font-weight: 600;
}

/* Card body text */
.card-body {
    color: #e0e0e0;
}

/* ====================== FORMS ====================== */
label, .form-label {
    color: #d0d0d0 !important;
    font-weight: 500;
}

.form-control, .form-select {
    background-color: #1e1e1e !important;
    border: 1px solid #444 !important;
    color: #e0e0e0 !important;
}

.form-control:focus, .form-select:focus {
    background-color: #252525 !important;
    border-color: #00b894 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 184, 148, 0.25) !important;
}

.form-check-label {
    color: #d0d0d0 !important;
}

.form-control::placeholder {
    color: #777 !important;
}

/* ====================== BUTTONS ====================== */
.btn-primary {
    background-color: #00b894;
    border: none;
}

.btn-primary:hover {
    background-color: #00a07a;
}

.btn-outline-light {
    color: #e0e0e0;
    border-color: #555;
}

.btn-outline-light:hover {
    background-color: #333;
    color: white;
}

/* Links */
a {
    color: #00d4b8;
}

a:hover {
    color: #00ffcc;
}