body {
    background: #f8f9fa; /* Light grey background like instant loan light theme */
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    color: #0b1e3b; /* Navy */
}

a {
    color: #1a4f8a; /* Brand Blue */
}

a:hover {
    color: #0b1e3b;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn,
.btn-primary {
    background-color: #1a4f8a; /* Brand Blue */
    border-color: #1a4f8a;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    transition: all 0.2s ease;
}

.btn:hover,
.btn-primary:hover {
    background-color: #0b1e3b; /* Deep Navy */
    border-color: #0b1e3b;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    border-color: #d1d5db;
    color: #333;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Cards */
.card, .container, .card-glass {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 30, 59, 0.1);
}

/* Typography Utils */
.text-primary {
    color: #1a4f8a !important; /* Brand Blue */
}

.text-secondary {
    color: #64748b !important;
}

.text-success {
    color: #21c48c !important; /* Theme Green */
}

.text-info {
    color: #c5a059 !important; /* Gold */
}

.text-warning {
    color: #f59e0b !important;
}

.text-danger {
    color: #ef4444 !important;
}

/* Sidebar override */
.bg-menu-theme .menu-link.active {
    background-color: rgba(26, 79, 138, 0.15) !important;
    color: #1a4f8a !important;
}

.bg-menu-theme .menu-link:hover {
    background-color: rgba(11, 30, 59, 0.05);
}

.bg-navbar-theme {
    background-color: #ffffff !important;
    box-shadow: 0 1px 0 rgba(11, 30, 59, 0.1);
}

/* Form Controls */
.form-control:focus {
    border-color: #1a4f8a;
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 138, 0.15);
}

.form-check-input:checked {
    background-color: #1a4f8a;
    border-color: #1a4f8a;
}

/* Status Badges */
.badge.bg-label-primary {
    background-color: rgba(26, 79, 138, 0.15) !important;
    color: #1a4f8a !important;
}

.badge.bg-label-success {
    background-color: rgba(33, 196, 140, 0.15) !important;
    color: #0d9488 !important; /* Darker teal/green for text */
}

.badge.bg-label-warning {
    background-color: rgba(197, 160, 89, 0.15) !important;
    color: #854d0e !important; /* Dark gold/brown */
}

/* OTP input boxes */
.otp-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.otp-input {
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1.25rem;
}

.otp-input:focus {
    outline: none;
    border-color: #1a4f8a;
    box-shadow: 0 0 0 2px rgba(26, 79, 138, 0.2);
}

/* Employee Directory Styles maintained but updated colors */
.employee-directory-card {
    border: 1px solid rgba(11, 30, 59, 0.1);
    box-shadow: 0 4px 12px rgba(11, 30, 59, 0.05);
}

.employee-directory-filter.is-active {
    background: #1a4f8a;
    color: #ffffff;
}

.employee-directory-avatar {
    background: linear-gradient(135deg, #0b1e3b, #1a4f8a);
}

.presence-report-sessions summary {
    color: #1a4f8a;
}
