:root {
    --primary-color: #ff9800;
    /* Matching website theme */
    --secondary-color: #263238;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8f9fa;
    --success-color: #00D084;
    --warning-color: #FF9800;
}

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

/* Navigation */
.nav-bar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: #fff3e0;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #2196F3;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-label {
    color: var(--text-muted);
    font-size: var(--text-small);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--text-color);
}

/* Common Card Styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
}

.p-4 {
    padding: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: var(--text-small);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #f57c00;
}

.btn-secondary,
.btn-outline-secondary {
    background-color: #e2e8f0;
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

/* Status Badges */
.status-badge,
.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--text-small);
    font-weight: 600;
    display: inline-block;
}

.status-new {
    background: #E3F2FD;
    color: #1976D2;
}

.status-contacted {
    background: #FFF3CD;
    color: #856404;
}

.status-converted,
.status-approved,
.badge-success {
    background: #D4EDDA;
    color: #155724;
}

.status-lost,
.status-rejected {
    background: #F8D7DA;
    color: #721C24;
}

.badge-warning {
    background: #FFF3CD;
    color: #856404;
}

.badge-danger {
    background: #F8D7DA;
    color: #721C24;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        background: white;
        border: 1px solid var(--border-color);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}