 .contract-item {
    background:rgba(255,255,255,0.05);
    padding:10px;
    border-radius:8px;
    margin-bottom:10px;
}
.notif-box {
    background:rgba(255,255,255,0.05);
    padding:10px;
    border-radius:8px;
    margin-bottom:10px;
}
a {
    color:#2603a5;
    margin-right:10px;
}
.message-box {
    background:rgba(255,255,255,0.05);
    padding:10px;
    border-radius:8px;
    margin-bottom:10px;
}
.feedback-box {
    margin-top:10px;
    padding:10px;
    background:rgba(0,207,255,0.1);
    border-radius:8px;
    font-size:0.9rem;
}

body {
    --panel: #192132;
    --panel-light: #f4f7fb;
    --panel-dark: #1a2236;
    --line: #2a3650;
    --line-strong: #00cfff;
    --accent: #00cfff;
    --text: #e0e7ff;
    --text-muted: #b6c2e2;
    --shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
    --shadow-soft: 0 6px 24px rgba(25, 118, 210, 0.13);
    --bg-main: linear-gradient(120deg,#0f172a,#020617);
    background: var(--bg-main);
    color: var(--text);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    transition: background 0.3s, color 0.3s;
}

.light-mode {
    --panel: #eaf1fb;
    --panel-light: #fafdff;
    --panel-dark: #e3eaf6;
    --line: #c3d0e6;
    --line-strong: #0078ff;
    --accent: #0078ff;
    --text: #1a2236;
    --text-muted: #5c6b8a;
    --shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
    --shadow-soft: 0 6px 24px rgba(25, 118, 210, 0.13);
    --bg-main: linear-gradient(120deg,#f5f7fa,#c3cfe2);
    color: var(--text);
}

.glass, .contract-item, .notif-box, .message-box {
    background: var(--panel) !important;
}

a {
    color: var(--accent);
}

h1, h2 {
    color: var(--accent);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}
.quick-access-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    background: var(--panel);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 22px 18px 18px 18px;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s, background 0.18s;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}
.quick-access-card:hover {
    transform: translateY(-2px) scale(1.025);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
    background: color-mix(in srgb, var(--accent) 7%, var(--panel) 93%);
}
.quick-access-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.92;
}
.quick-access-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.08rem;
    color: var(--accent);
}
.quick-access-sub {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.qa-blue { border-left: 5px solid #38bdf8; }
.qa-cyan { border-left: 5px solid #06b6d4; }
.qa-purple { border-left: 5px solid #a78bfa; }
.qa-pink { border-left: 5px solid #ec4899; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--panel);
    border-color: var(--line);
    border-radius: 14px;
    text-align: left;
    padding: 16px 14px;
    box-shadow: var(--shadow);
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    border-left: 5px solid var(--accent);
    min-width: 0;
}
.stat-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
    background: color-mix(in srgb, var(--accent) 7%, var(--panel) 93%);
}
.stat-blue { border-left-color: #38bdf8; }
.stat-cyan { border-left-color: #06b6d4; }
.stat-green { border-left-color: #22c55e; }
.stat-yellow { border-left-color: #fbbf24; }
.stat-purple { border-left-color: #a78bfa; }
.stat-pink { border-left-color: #ec4899; }
.stat-gold { border-left-color: #f59e42; }
.stat-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
    opacity: 0.92;
}
.stat-value {
    color: var(--accent);
    font-size: 1.9rem;
    margin-bottom: 2px;
    font-weight: 700;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.dashboard-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}
.dashboard-panels > div {
    background: var(--panel);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px 14px 12px 14px;
}
.table-wrapper {
    background: var(--panel-light);
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.06);
    padding: 8px 0 0 0;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}
th, td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--line);
}
th {
    background: var(--panel-dark);
    color: var(--accent);
    font-weight: 700;
}
tr:last-child td {
    border-bottom: none;
}

.theme-toggle {
    background: var(--panel);
    color: var(--accent);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.06);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    cursor: pointer;
}
.theme-toggle:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.glass, .contract-item, .notif-box, .message-box {
    background: var(--bg-card) !important;
}

a {
    color: var(--color-link);
}

h1,h2 {
    color: var(--color-title);
}

.container {
    max-width:900px;
    margin:auto;
    padding:20px;
}

 .glass {
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:15px;
}

canvas {
    background: white;
    border-radius: 8px;
}
    box-shadow:0 0 20px rgba(0,207,255,0.2);
    margin-bottom:20px;
}

h1,h2 {
    color:#2603a5;
}

input, textarea {
    width:100%;
    padding:12px;
    margin:8px 0;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,0.1);
    color:white;
}

button {
    background:#2603a5;
    border:none;
    padding:12px;
    border-radius:10px;
    color:white;
    cursor:pointer;
    box-shadow:0 0 10px #2603a5;
}

button:hover {
    transform:scale(1.05);
}

.track-card {
    background:rgba(255,255,255,0.05);
    padding:15px;
    border-radius:12px;
    margin-bottom:15px;
}

.track-info {
    margin-bottom:10px;
}

.track-actions button {
    background:#ff4444;
}

/* STATUS COLORS */
.status {
    padding:3px 8px;
    border-radius:6px;
}

.status.pending {
    background:orange;
}

.status.approved {
    background:green;
}

.status.rejected {
    background:red;
}