body {
    background: #0f172a;
    color: #e5e7eb;
    font-family: system-ui;
}

/* Layout */
.container {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.section {
    margin-bottom: 20px;
}

/* Dashboard */
.dashboard-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-card {
    background: #1e293b;
    border-radius: 10px;
    padding: 12px 16px;
    min-width: 120px;
}

.dashboard-label {
    font-size: 12px;
    color: #94a3b8;
}

.dashboard-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* Pills */
.pill-group {
    display: flex;
    gap: 10px;
}

.pill {
    padding: 8px 14px;
    background: #1e293b;
    border-radius: 20px;
    cursor: pointer;
    color: #9ca3af;
    border: none;
}

.pill.active {
    background: #2563eb;
    color: white;
}

/* Nav */
.nav {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 10px 15px;
    background: #1e293b;
    border-radius: 6px;
    cursor: pointer;
    color: #9ca3af;
    border: none;
}

.nav-btn.active {
    background: #2563eb;
    color: white;
}

/* Tabs */
.tab {
    display: none;
}

.tab.active {
    display: block;
}

/* Cards */
.card {
    background: #1e293b;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #e5e7eb;
}

.selected {
    outline: 2px solid #60a5fa;
}

/* Opportunity layout */
.opportunity-card {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.opportunity-main {
    flex: 1;
}

.job-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Links */
.big-link {
    display: block;
    background: #2563eb;
    color: white;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
}

.big-link:hover {
    background: #1d4ed8;
}

/* Buttons */
button {
    background: #374151;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 6px;
    font-size: 12px;
}

button:hover {
    background: #4b5563;
}

button:disabled {
    opacity: 0.6;
    cursor: default;
}

/* Input */
input[type="checkbox"] {
    margin-right: 2px;
    transform: scale(1.1);
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input:not([type]) {
    background: #111827;
    color: white;
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 10px;
    width: 100%;
    max-width: 420px;
}

/* Text visibility */
a {
    color: #60a5fa;
}

/* Utility */
.toolbar {
    margin-bottom: 10px;
}

.action-row {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Headings */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}