/* ===== Upwork Inspired Theme ===== */
body {
    background: #f8f9fa;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #333;
}

/* Links & Buttons */
a, .btn-link {
    text-decoration: none;
    color: #1d4354;
}

.btn-primary {
    background: #6fda44;
    border-color: #5ac637;
    font-weight: 600;
    transition: 0.2s;
}
.btn-primary:hover {
    background: #5ac637;
    border-color: #4fb531;
}

.btn-secondary {
    background: #1d4354;
    border-color: #17353f;
    color: #fff;
    transition: 0.2s;
}
.btn-secondary:hover {
    opacity: 0.9;
}

/* Sidebar Styling */
.sidebar {
    background: #fff;
    border-right: 1px solid #e1e5e8;
    height: 100vh;
    position: fixed;
    width: 240px;
    padding: 20px 0;
}

.sidebar a {
    display: block;
    padding: 12px 20px;
    margin: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: #1d4354;
}

.sidebar a.active, .sidebar a:hover {
    background: rgba(111,218,68,0.15);
    color: #000;
}

/* Main content */
.main-content {
    margin-left: 260px;
    padding: 25px;
}

/* KPI Cards */
.card {
    border: none !important;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.card:hover {
    box-shadow: 0 3px 14px rgba(0,0,0,0.10);
}

.card h5, .card strong {
    color: #1d4354;
    font-weight: 700;
}

/* Chart headings */
.card h6 {
    font-weight: 600;
}

/* Tables */
.table th {
    background: #1d4354 !important;
    color: #fff !important;
}

.form-select, input[type="date"], input[type="text"] {
    border-radius: 6px;
}
