/* High contrast overrides for dashboard */
.dashboard-body .text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

.dashboard-body .asset-label {
    color: var(--secondary-gold) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    font-weight: 700 !important;
    opacity: 1 !important;
}

.dashboard-body .asset-value {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    color: #fff !important;
}

/* Sidebar Labels */
.dashboard-body label.text-muted {
    color: rgba(255,255,255,0.9) !important; 
    font-weight: 700;
    text-shadow: 0 1px 1px black;
}

/* Sidebar Values (in the dark boxes) */
.dashboard-body .bg-opacity-10.bg-white {
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.15);
}
.dashboard-body .bg-opacity-10.bg-white span,
.dashboard-body .bg-opacity-10.bg-white div {
    color: #fff !important;
    font-weight: 600;
}
.dashboard-body .bg-opacity-10.bg-white .text-white-50 {
    color: #eee !important;
}

/* Fix Table Visibility */
.dashboard-body .custom-table {
    background: transparent !important;
    color: #fff !important;
}
.dashboard-body .custom-table th {
    color: var(--primary-gold) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,1);
    background: rgba(0,0,0,0.6) !important; /* Make header pop */
    border-bottom: 2px solid var(--primary-gold) !important;
}
.dashboard-body .custom-table td {
    color: #fff !important;
    background: rgba(0,0,0,0.3) !important; /* Slight dark background for rows */
    vertical-align: middle;
}
.dashboard-body .custom-table tr:nth-child(even) td {
    background: rgba(0,0,0,0.45) !important;
}
.dashboard-body .custom-table tr:hover td {
    background: rgba(212,175,55,0.15) !important;
    color: #fff !important;
}
.dashboard-body .badge.bg-secondary {
    background-color: #4a4a4a !important; /* Lighter gray for visibility */
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Input Fields Search */
.dashboard-body .input-group-text {
    background: rgba(0,0,0,0.6) !important;
    border-color: var(--secondary-gold) !important;
    color: var(--primary-gold) !important;
}
.dashboard-body #charSearch {
    background: rgba(0,0,0,0.6) !important;
    border-color: var(--secondary-gold) !important;
    color: #fff !important;
}
.dashboard-body #charSearch::placeholder {
    color: rgba(255,255,255,0.6);
}
