:root {
    /* Defined Primary Color */
    --primary-yellow: #fbca1b; 
    --primary-hover: #e5b817;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

/* Standard Primary Button */
.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-dark); /* Dark text for contrast on yellow */
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navbar */
.nav-brand {
    color: var(--text-dark);
}

/* Cards */
.card {
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Tables */
.table-header {
    background-color: #f3f4f6;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.table-row:hover {
    background-color: #f9fafb;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #9ca3af; 
}