@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary: #f97316;    /* Bright Orange */
    --primary-dark: #ea580c;
    --secondary: #3b82f6;  /* Blue */
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --danger: #ef4444;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-brand { font-size: 20px; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; margin-left: 20px; transition: 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-links .logout-btn { color: var(--danger); }

/* Main Container */
.container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }

/* Dashboard Grid */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.dash-card {
    background: var(--white); border-radius: 12px; padding: 25px; text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); border: 1px solid var(--border);
    text-decoration: none; color: var(--text-dark); transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.dash-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: var(--primary); }
.dash-icon { font-size: 40px; margin-bottom: 15px; }
.dash-title { font-size: 18px; font-weight: 600; margin: 0; }
.dash-desc { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* Global Buttons */
.btn { display: inline-block; padding: 10px 20px; border-radius: 6px; font-weight: 500; cursor: pointer; text-decoration: none; border: none; font-family: inherit; transition: 0.2s;}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }