/* public/assets/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent-blue: #2563eb;
    --accent-green: #16a34a;
    --accent-red: #dc2626;
}

body {
    background-color: var(--bg-main);
    background-image: radial-gradient(circle at 1px 1px, #e2e8f0 1px, transparent 0);
    background-size: 24px 24px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.5;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav { background: white; border-bottom: 1px solid var(--border-color); padding: 1rem 0; position: sticky; top: 0; z-index: 50; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }

/* Panels */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 2rem;
}

/* Forms & Buttons */
.btn-primary {
    background-color: var(--accent-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}
.btn-primary:hover { background-color: #1d4ed8; transform: translateY(-1px); }
/* --- PRINT OPTIMIZATION --- */
@media print {
    nav, .btn-primary, .no-print, form { display: none !important; }
    body { background: white !important; }
    .glass-panel { 
        border: none !important; 
        box-shadow: none !important; 
        padding: 0 !important; 
        margin-bottom: 2rem !important;
    }
    .container { max-width: 100% !important; width: 100% !important; margin: 0 !important; }
    .score-text { color: #2563eb !important; -webkit-print-color-adjust: exact; }
}
textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s;
}
textarea:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

/* Data Tables */
.matrix-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); background: white; }
table { width: 100%; border-collapse: collapse; }
th { background: #f1f5f9; padding: 12px 20px; text-align: left; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--border-color); }
td { padding: 18px 20px; border-bottom: 1px solid var(--border-color); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background-color: #f8fafc; }

/* Status Badges */
.badge { font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; border: 1px solid transparent; }
.badge-ready { color: var(--accent-green); background: #f0fdf4; border-color: #dcfce7; }
.badge-eval { color: var(--accent-blue); background: #eff6ff; border-color: #dbeafe; }

/* Scores */
.score-text { font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; }


/* Sidebar & Grid Layout */
.dashboard-grid { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }
@media (max-width: 900px) { .dashboard-grid { grid-template-columns: 1fr; } }

/* Nodal Cards */
.node-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-left: 4px solid var(--accent-blue);
    padding: 16px;
    margin-bottom: 12px;
}

.node-pulse {
    height: 8px; width: 8px; background: var(--accent-green);
    border-radius: 50%; display: inline-block;
    box-shadow: 0 0 8px var(--accent-green);
    margin-right: 8px;
}

/* Settings Dropdown */
.settings-menu {
    position: absolute; right: 0; top: 100%; width: 200px;
    background: white; border: 1px solid var(--border-color);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 8px; display: none; z-index: 100;
}
.settings-menu.active { display: block; }

/* Nodal Map Visualization */
.map-container {
    background: #f1f5f9;
    border-radius: 12px;
    height: 180px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.node-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
    cursor: pointer;
}

/* Salary Benchmarking */
.benchmark-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    position: relative;
    margin: 20px 0;
}
.benchmark-fill {
    height: 100%;
    background: var(--accent-green);
    border-radius: 4px;
}
.benchmark-marker {
    position: absolute;
    top: -10px;
    width: 2px;
    height: 28px;
    background: var(--text-main);
}

/* Profile Sidebar Layout */
.settings-section {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}
.settings-section:last-child { border-bottom: none; }