/*
 * Recruiter CSS Bundle: recruiters.bundle.css
 * Auto-generated by scripts/bundle_recruiter_css.py
 * DO NOT EDIT - Edit source files instead
 *
 * Sources: _base.css, recruiters-desktop.css, recruiters-mobile-portrait.css, recruiters-mobile-landscape.css
 */

/* === _base.css === */

/**
 * Recruiter Portal Base CSS
 * Variables, reset, shared styles
 */

:root {
    --color-primary: #667eea;
    --color-primary-dark: #5a67d8;
    --color-secondary: #764ba2;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #dc2626;

    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;
    --color-text: #1f2937;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 50%, #f8f9ff 100%);
    min-height: 100vh;
    color: var(--color-text);
}

/* ========================================
   HEADER
   ======================================== */

.recruiter-header {
    background: var(--color-surface);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-btn {
    padding: 8px 16px;
    background: var(--color-bg);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.header-btn:hover {
    background: var(--color-border);
}

/* ========================================
   BADGE
   ======================================== */

.recruiter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.recruiter-badge svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.form-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
}

.form-card-wide {
    max-width: 800px;
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--color-text-light);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-sans);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

input::placeholder {
    color: var(--color-text-light);
}

input.error {
    border-color: var(--color-error);
}

.field-error {
    color: var(--color-error);
    font-size: 12px;
    margin-top: 6px;
}

.code-input {
    letter-spacing: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.row {
    display: flex;
    gap: 16px;
}

.row .form-group {
    flex: 1;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-sans);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--color-border);
}

.btn-disabled {
    background: var(--color-bg);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.alert-warning {
    background: #fefce8;
    color: #ca8a04;
    border: 1px solid #fef08a;
}

.alert-info {
    background: #f0f4ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
}

/* ========================================
   INFO BOX
   ======================================== */

.info-box {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.info-box h4 {
    color: #4338ca;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h4 svg {
    width: 18px;
    height: 18px;
}

.info-box p {
    color: #6366f1;
    font-size: 13px;
    line-height: 1.5;
}

.info-box ul {
    color: #6366f1;
    font-size: 13px;
    line-height: 1.8;
    margin-left: 26px;
}

/* ========================================
   STEP INDICATOR
   ======================================== */

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
}

.step-dot.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

/* ========================================
   STATUS BADGES
   ======================================== */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge-active {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.status-badge-expired {
    background: rgba(107, 114, 128, 0.15);
    color: #6b7280;
}

.status-badge-sponsored {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #059669;
}

.status-badge-free {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.status-badge-paid {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    color: #d97706;
}

/* ========================================
   TABLES
   ======================================== */

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.data-table th {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(135deg, #f8f9ff 0%, #f5f3ff 100%);
}

.data-table td {
    font-size: 14px;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background: rgba(139, 92, 246, 0.03);
}

.table-link {
    color: var(--color-primary);
    text-decoration: none;
}

.table-link:hover {
    text-decoration: underline;
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.progress-bar {
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ========================================
   EMPTY STATES
   ======================================== */

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empty-state-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.empty-state h3 {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ========================================
   FOOTER LINKS
   ======================================== */

.footer-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.nav-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ========================================
   SPINNER
   ======================================== */

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   SUCCESS ICON
   ======================================== */

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* ========================================
   WARNING ICON
   ======================================== */

.warning-icon {
    width: 80px;
    height: 80px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.warning-icon svg {
    width: 40px;
    height: 40px;
    color: #d97706;
}

/* ========================================
   ERROR ICON
   ======================================== */

.error-icon {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.error-icon svg {
    width: 40px;
    height: 40px;
    color: #dc2626;
}

/* ========================================
   DETAILS CARD
   ======================================== */

.details-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--color-text-muted);
    font-size: 14px;
}

.detail-value {
    color: var(--color-text);
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    min-height: calc(100vh - 80px);
    align-content: start;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-section {
    flex: 0 0 auto;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header-row .section-title {
    margin-bottom: 0;
}

/* ========================================
   COMPACT PROFILE CARD
   ======================================== */

.profile-card-compact {
    padding: 20px;
}

.profile-header-compact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.profile-avatar-compact {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.profile-name-compact h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.profile-branch {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
}

.profile-details-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.profile-detail-row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.profile-social-compact {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.social-link {
    padding: 6px 12px;
    background: var(--color-bg);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.social-link:hover {
    background: var(--color-border);
}

/* ========================================
   COMPACT SPONSORSHIP CARD
   ======================================== */

.sponsorship-card-compact {
    padding: 16px;
}

.sponsorship-card-compact.active {
    border-left: 4px solid var(--color-success);
}

.sponsorship-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.sponsorship-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
}

.sponsorship-info .text-muted {
    font-size: 13px;
    color: var(--color-text-muted);
}

.sponsorship-dates {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.days-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   COMPACT EMPTY STATE
   ======================================== */

.empty-state-compact {
    padding: 24px;
    text-align: center;
}

.empty-state-compact p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   COMPACT TABLE
   ======================================== */

.data-table.compact th,
.data-table.compact td {
    padding: 10px 14px;
    font-size: 13px;
}

/* ========================================
   SMALL BUTTON
   ======================================== */

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-sm svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   TEXT UTILITIES
   ======================================== */

.text-muted {
    color: var(--color-text-muted);
}

/* ========================================
   REQUIRED MARKER
   ======================================== */

.required {
    color: var(--color-error);
}

/* ========================================
   FINDER RESULTS - STATION CARDS
   ======================================== */

.station-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.station-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: var(--shadow-md);
}

.station-card.verified {
    border-left: 4px solid var(--color-success);
}

.station-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.station-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.station-insignia {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
}

.station-insignia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.station-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.station-header-info .station-name {
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.station-header-info .station-branch {
    font-size: 13px;
    color: var(--color-text-muted);
}

.station-distance {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.station-details {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.station-details a {
    color: var(--color-primary);
    text-decoration: none;
}

.station-details a:hover {
    text-decoration: underline;
}

.station-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.station-social a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.station-social a:hover {
    text-decoration: underline;
}

/* Station actions (intro button) */
.station-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.btn-intro {
    background: linear-gradient(135deg, var(--color-success), #059669);
    color: white;
    border: none;
}

.btn-intro:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-intro.sent {
    background: var(--color-bg);
    color: var(--color-text-muted);
    cursor: default;
}

/* Bulk intro container */
.bulk-intro-container {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
}

.btn-send-all {
    background: linear-gradient(135deg, var(--color-success), #059669);
    color: white;
    border: none;
}

.btn-send-all:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-send-all.sent {
    background: var(--color-bg);
    color: var(--color-text-muted);
}

/* Results section */
.results-section {
    display: none;
    margin-top: 30px;
}

.results-section.active {
    display: block;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.results-header h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.results-count {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ========================================
   BRANCH TABS
   ======================================== */

.branch-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.branch-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.branch-tab:hover:not(:disabled) {
    border-color: var(--color-primary);
    background: rgba(102, 126, 234, 0.05);
}

.branch-tab.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-color: transparent;
    color: white;
}

.branch-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.branch-tab.empty {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--color-bg);
}

.branch-tab.empty .tab-count {
    background: rgba(107, 114, 128, 0.15);
    color: var(--color-text-muted);
}

.branch-tab.has-verified {
    border-left: 4px solid var(--color-success);
}

.branch-tab.has-verified.active {
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.tab-name {
    font-weight: 600;
}

.tab-count {
    background: rgba(102, 126, 234, 0.15);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}


/* === recruiters-desktop.css === */

/**
 * Recruiter Portal Desktop Styles
 */

@media (min-width: 769px) {

/* ========================================
   LAYOUT
   ======================================== */

.recruiter-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

.recruiter-main.narrow {
    max-width: 520px;
}

.recruiter-main.wide {
    max-width: 1100px;
}

/* ========================================
   HEADER ADJUSTMENTS
   ======================================== */

.recruiter-header {
    padding: 16px 24px;
}

.brand-logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.2rem;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    margin-bottom: 40px;
}

.page-header.center {
    text-align: center;
}

.page-title {
    font-size: 2rem;
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header-left h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.dashboard-header-left p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.dashboard-header-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   ACTIVE SPONSORSHIP CARD
   ======================================== */

.sponsorship-card {
    padding: 24px;
}

.sponsorship-card.active {
    border: 2px solid var(--color-success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 95, 70, 0.02) 100%);
}

.sponsorship-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.sponsorship-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success);
}

.status-text {
    color: var(--color-success);
    font-weight: 600;
}

.days-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.applicant-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.info-item label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.info-item span {
    font-size: 15px;
    color: var(--color-text);
}

.sponsorship-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   HISTORY TABLE
   ======================================== */

.history-section {
    margin-top: 40px;
}

/* ========================================
   FINDER PAGE
   ======================================== */

.search-card {
    padding: 32px;
    margin-bottom: 30px;
}

.branch-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.branch-option {
    position: relative;
}

.branch-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.branch-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.branch-option input:checked + label {
    border-color: var(--color-primary);
    background: #f0f4ff;
}

.branch-option label:hover {
    border-color: var(--color-primary);
}

.branch-option .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.branch-option .name {
    font-size: 12px;
    color: var(--color-text);
    text-align: center;
    font-weight: 500;
}

/* ========================================
   RESULTS SECTION
   ======================================== */

.results-section {
    display: none;
}

.results-section.active {
    display: block;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-header h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text);
}

.results-count {
    color: var(--color-text-muted);
    font-size: 14px;
}

.station-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.station-card:hover {
    border-color: rgba(102, 126, 234, 0.4);
}

.station-card.verified {
    border-color: var(--color-success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 95, 70, 0.02) 100%);
}

.station-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.station-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.station-distance {
    color: var(--color-text-muted);
    font-size: 14px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--color-success);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.station-branch {
    display: inline-block;
    background: rgba(102, 126, 234, 0.15);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.station-details {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.station-details a {
    color: var(--color-primary);
    text-decoration: none;
}

.station-details a:hover {
    text-decoration: underline;
}

.station-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.station-social a {
    color: var(--color-primary);
    font-size: 13px;
    text-decoration: none;
}

.station-social a:hover {
    text-decoration: underline;
}

/* ========================================
   APPLICANT PROGRESS PAGE
   ======================================== */

.profile-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.profile-email {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.profile-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ========================================
   COURSES GRID
   ======================================== */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.course-card {
    padding: 20px;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.course-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.course-percentage {
    font-size: 14px;
    color: var(--color-success);
    font-weight: 600;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 12px;
    margin-top: 12px;
}

/* ========================================
   GOALS LIST
   ======================================== */

.goals-list {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.goal-item:last-child {
    border-bottom: none;
}

.goal-name {
    font-size: 14px;
    color: var(--color-text);
}

.goal-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.goal-progress .progress-bar {
    width: 100px;
    margin-bottom: 0;
}

.goal-pct {
    font-size: 13px;
    color: var(--color-text-muted);
    min-width: 40px;
    text-align: right;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbf24;
}

.star.empty {
    color: var(--color-border);
}

} /* End @media desktop */


/* === recruiters-mobile-portrait.css === */

/**
 * Recruiter Portal Mobile Portrait Styles
 */

@media (max-width: 768px) and (orientation: portrait) {

/* ========================================
   LAYOUT
   ======================================== */

.recruiter-main {
    padding: 24px 16px;
}

/* ========================================
   HEADER
   ======================================== */

.recruiter-header {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
}

.header-left {
    width: 100%;
    justify-content: space-between;
}

.brand-logo {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-size: 1rem;
}

.brand-tagline {
    font-size: 0.6rem;
}

.header-right {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
}

.header-btn {
    padding: 8px 12px;
    font-size: 13px;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    margin-bottom: 24px;
}

.page-title {
    font-size: 1.5rem;
}

.page-subtitle {
    font-size: 0.9rem;
}

/* ========================================
   CARDS
   ======================================== */

.form-card {
    padding: 24px;
}

.card {
    border-radius: var(--radius-md);
}

/* ========================================
   FORMS
   ======================================== */

.row {
    flex-direction: column;
    gap: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    padding: 12px 14px;
    font-size: 16px;
}

/* ========================================
   DASHBOARD
   ======================================== */

.dashboard-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
}

.dashboard-sidebar {
    order: -1;
}

.dashboard-header {
    flex-direction: column;
    margin-bottom: 24px;
}

.dashboard-header-left h1 {
    font-size: 1.5rem;
}

.dashboard-header-right {
    width: 100%;
}

.dashboard-header-right .btn {
    flex: 1;
    justify-content: center;
}

/* ========================================
   COMPACT PROFILE CARD
   ======================================== */

.profile-card-compact {
    padding: 16px;
}

.profile-header-compact {
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.profile-avatar-compact {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.profile-name-compact h2 {
    font-size: 14px;
}

.profile-branch {
    font-size: 12px;
}

.profile-details-compact {
    gap: 8px;
}

.profile-detail-row {
    font-size: 12px;
}

.profile-social-compact {
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 12px;
}

.social-link {
    font-size: 11px;
    padding: 5px 10px;
}

/* ========================================
   COMPACT SPONSORSHIP CARD
   ======================================== */

.sponsorship-card-compact {
    padding: 14px;
}

.sponsorship-info strong {
    font-size: 14px;
}

.sponsorship-dates {
    flex-direction: column;
    gap: 4px;
}

.days-badge {
    align-self: flex-start;
}

/* ========================================
   SPONSORSHIP CARD
   ======================================== */

.sponsorship-card {
    padding: 20px;
}

.sponsorship-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.applicant-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item label {
    font-size: 11px;
}

.info-item span {
    font-size: 14px;
}

.sponsorship-actions {
    flex-direction: column;
}

.sponsorship-actions .btn {
    width: 100%;
}

/* ========================================
   TABLES
   ======================================== */

.data-table {
    display: block;
    overflow-x: auto;
}

.data-table th,
.data-table td {
    padding: 12px;
    font-size: 13px;
}

/* ========================================
   FINDER
   ======================================== */

.search-card {
    padding: 20px;
}

.branch-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.branch-option label {
    padding: 12px 8px;
}

.branch-option .icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
}

.branch-option .name {
    font-size: 11px;
}

/* ========================================
   BRANCH TABS
   ======================================== */

.branch-tabs {
    flex-wrap: wrap;
    gap: 6px;
}

.branch-tab {
    padding: 8px 12px;
    font-size: 13px;
}

.tab-count {
    padding: 2px 6px;
    font-size: 11px;
}

/* ========================================
   RESULTS
   ======================================== */

.results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.results-header h2 {
    font-size: 1.1rem;
}

.station-card {
    padding: 16px;
}

.station-name {
    font-size: 15px;
}

.station-header {
    flex-direction: column;
    gap: 8px;
}

.station-header-left {
    width: 100%;
}

.station-insignia {
    width: 36px;
    height: 36px;
}

.station-distance {
    align-self: flex-start;
}

.station-details {
    font-size: 13px;
}

.station-social {
    flex-wrap: wrap;
    gap: 8px;
}

.station-actions {
    margin-top: 10px;
    padding-top: 10px;
}

.btn-intro {
    width: 100%;
}

.bulk-intro-container {
    justify-content: center;
}

.btn-send-all {
    width: 100%;
}

/* ========================================
   PROFILE
   ======================================== */

.profile-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    font-size: 24px;
}

.profile-name {
    font-size: 1.25rem;
}

.profile-badges {
    justify-content: center;
}

/* ========================================
   COURSES GRID
   ======================================== */

.courses-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.course-card {
    padding: 16px;
}

.course-name {
    font-size: 15px;
}

/* ========================================
   GOALS
   ======================================== */

.goal-item {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.goal-progress {
    width: 100%;
    justify-content: space-between;
}

.goal-progress .progress-bar {
    flex: 1;
    max-width: 150px;
}

/* ========================================
   NAV LINKS
   ======================================== */

.nav-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 12px 20px;
    font-size: 15px;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-state {
    padding: 40px 16px;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
}

.empty-state-icon svg {
    width: 32px;
    height: 32px;
}

} /* End @media mobile portrait */


/* === recruiters-mobile-landscape.css === */

/**
 * Recruiter Portal Mobile Landscape Styles
 */

@media (max-width: 926px) and (orientation: landscape) {

/* ========================================
   LAYOUT
   ======================================== */

.recruiter-main {
    padding: 20px;
    max-width: 100%;
}

/* ========================================
   HEADER
   ======================================== */

.recruiter-header {
    padding: 10px 16px;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 0.95rem;
}

.brand-tagline {
    display: none;
}

.header-btn {
    padding: 6px 12px;
    font-size: 12px;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    margin-bottom: 20px;
}

.page-title {
    font-size: 1.25rem;
}

.page-subtitle {
    font-size: 0.85rem;
}

/* ========================================
   CARDS
   ======================================== */

.form-card {
    padding: 24px;
}

/* ========================================
   FORMS
   ======================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    padding: 10px 12px;
    font-size: 14px;
}

/* ========================================
   DASHBOARD
   ======================================== */

.dashboard-layout {
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 16px;
}

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-header-left h1 {
    font-size: 1.25rem;
}

/* ========================================
   COMPACT PROFILE/SPONSORSHIP
   ======================================== */

.profile-card-compact {
    padding: 14px;
}

.profile-avatar-compact {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.profile-name-compact h2 {
    font-size: 13px;
}

.profile-detail-row {
    font-size: 11px;
}

.sponsorship-card-compact {
    padding: 12px;
}

.sponsorship-info strong {
    font-size: 13px;
}

/* ========================================
   SPONSORSHIP CARD
   ======================================== */

.sponsorship-card {
    padding: 16px;
}

.applicant-info {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.info-item label {
    font-size: 10px;
}

.info-item span {
    font-size: 13px;
}

/* ========================================
   FINDER
   ======================================== */

.search-card {
    padding: 20px;
}

.branch-selector {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.branch-option label {
    padding: 10px 6px;
}

.branch-option .icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin-bottom: 4px;
}

.branch-option .name {
    font-size: 10px;
}

/* ========================================
   BRANCH TABS
   ======================================== */

.branch-tabs {
    gap: 6px;
}

.branch-tab {
    padding: 8px 12px;
    font-size: 12px;
}

.tab-count {
    font-size: 10px;
}

/* ========================================
   RESULTS
   ======================================== */

.results-header h2 {
    font-size: 1rem;
}

.station-card {
    padding: 14px;
}

.station-name {
    font-size: 14px;
}

.station-insignia {
    width: 36px;
    height: 36px;
}

.station-details {
    font-size: 12px;
}

/* ========================================
   PROFILE
   ======================================== */

.profile-card {
    padding: 16px;
    gap: 16px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    font-size: 22px;
}

.profile-name {
    font-size: 1.1rem;
}

/* ========================================
   COURSES GRID
   ======================================== */

.courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.course-card {
    padding: 14px;
}

.course-name {
    font-size: 14px;
}

/* ========================================
   GOALS
   ======================================== */

.goal-item {
    padding: 12px 14px;
}

.goal-name {
    font-size: 13px;
}

.goal-progress .progress-bar {
    width: 80px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 10px 18px;
    font-size: 14px;
}

/* ========================================
   NAV LINKS
   ======================================== */

.nav-links {
    gap: 16px;
    margin-top: 24px;
    padding-top: 16px;
}

.nav-links a {
    font-size: 13px;
}

} /* End @media mobile landscape */
