/* ════════════════════════════════════════════════════
   ArchLive! Careers Plugin — global.css v2.0
   Brand: Primary #14005d | Accent #ffd428
════════════════════════════════════════════════════ */

:root {
  --alc-primary:    #14005d;
  --alc-accent:     #ffd428;
  --alc-accent-soft:rgba(255,212,40,0.15);
  --alc-success:    #216b42;
  --alc-success-bg: #e8f7ed;
  --alc-error:      #a82424;
  --alc-error-bg:   #fff1f1;
  --alc-bg:         #f6f4ef;
  --alc-white:      #ffffff;
  --alc-border:     #e2e0d8;
  --alc-text:       #1a1a2e;
  --alc-muted:      #6b6b7b;
  --alc-radius-lg:  28px;
  --alc-radius-md:  18px;
  --alc-radius-sm:  12px;
  --alc-radius-pill:999px;
  --alc-shadow-sm:  0 4px 16px rgba(0,0,0,0.06);
  --alc-shadow-md:  0 10px 40px rgba(0,0,0,0.08);
  --alc-shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
}

/* ─── Reset ─── */
.alc-auth-wrapper *,
.alc-dashboard-layout *,
.alc-jobs-portal *,
.alc-payment-wrapper *,
.alc-application-card * {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════
   AUTH PAGES (Login / Register)
═══════════════════════════════════════ */

.alc-auth-wrapper {
  padding: 40px 20px;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.alc-auth-card {
  width: 100%;
  max-width: 680px;
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--alc-shadow-md);
}

.alc-auth-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  background: rgba(255,212,40,0.14);
  border-radius: 50%;
}

.alc-auth-card::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 240px; height: 240px;
  background: rgba(20,0,93,0.05);
  border-radius: 50%;
}

.alc-auth-top {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}

.alc-mini-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(20,0,93,0.08);
  border-radius: var(--alc-radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--alc-primary);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.alc-auth-top h2 {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--alc-primary);
  margin: 0 0 14px;
}

.alc-auth-top p { color: var(--alc-muted); line-height: 1.7; margin: 0; }

/* ─── Alerts ─── */
.alc-success-message {
  background: var(--alc-success-bg);
  color: var(--alc-success);
  padding: 16px 20px;
  border-radius: var(--alc-radius-md);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative; z-index: 2;
}

.alc-error-message {
  background: var(--alc-error-bg);
  color: var(--alc-error);
  padding: 16px 20px;
  border-radius: var(--alc-radius-md);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative; z-index: 2;
}

.alc-error-message a, .alc-success-message a {
  color: inherit; font-weight: 700;
}

/* ─── Form groups ─── */
.alc-form-group {
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.alc-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 13px;
  color: var(--alc-primary);
  letter-spacing: 0.2px;
}

.alc-req { color: #dc2626; margin-left: 2px; }
.alc-field-hint { display: block; margin-top: 6px; font-size: 12px; color: var(--alc-muted); }

.alc-form-group input[type="text"],
.alc-form-group input[type="email"],
.alc-form-group input[type="password"],
.alc-form-group input[type="url"],
.alc-form-group input[type="date"],
.alc-form-group input[type="number"],
.alc-select,
.alc-select-sm,
.alc-filter-search {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--alc-radius-md);
  border: 1.5px solid var(--alc-border);
  background: var(--alc-white);
  color: var(--alc-text);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.alc-form-group input:focus,
.alc-select:focus,
.alc-filter-search:focus {
  outline: none;
  border-color: var(--alc-primary);
  box-shadow: 0 0 0 3px rgba(20,0,93,0.1);
}

.alc-textarea-sm, .alc-textarea-md, .alc-textarea-lg {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--alc-radius-md);
  border: 1.5px solid var(--alc-border);
  background: var(--alc-white);
  color: var(--alc-text);
  font-size: 15px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

.alc-textarea-sm  { min-height: 80px; }
.alc-textarea-md  { min-height: 120px; }
.alc-textarea-lg  { min-height: 180px; }

.alc-textarea-sm:focus, .alc-textarea-md:focus, .alc-textarea-lg:focus {
  outline: none;
  border-color: var(--alc-primary);
  box-shadow: 0 0 0 3px rgba(20,0,93,0.1);
}

/* ─── Two-column form row ─── */
.alc-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ─── File Upload UI ─── */
.alc-file-upload-box {
  position: relative;
  border: 2px dashed var(--alc-border);
  border-radius: var(--alc-radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.alc-file-upload-box:hover {
  border-color: var(--alc-primary);
  background: rgba(20,0,93,0.02);
}

.alc-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.alc-file-upload-ui { pointer-events: none; }
.alc-file-icon  { display: block; font-size: 28px; margin-bottom: 8px; }
.alc-file-text  { display: block; font-weight: 700; color: var(--alc-primary); font-size: 14px; margin-bottom: 4px; }
.alc-file-sub   { display: block; font-size: 12px; color: var(--alc-muted); }

.alc-current-media {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f0f0f5;
  border-radius: var(--alc-radius-sm);
  margin-bottom: 10px;
}

.alc-media-label { font-size: 12px; color: var(--alc-muted); }
.alc-logo-preview { width: 80px; height: 60px; object-fit: contain; border-radius: 8px; }
.alc-avatar-preview { width: 60px; height: 60px; object-fit: cover; border-radius: 50%; }
.alc-file-link { color: var(--alc-primary); font-weight: 700; text-decoration: none; font-size: 14px; }
.alc-file-link:hover { text-decoration: underline; }

/* ─── Buttons ─── */
button.alc-primary-btn,
a.alc-primary-btn,
.alc-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--alc-accent);
  color: #111;
  border: none;
  padding: 18px 28px;
  border-radius: var(--alc-radius-pill);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(255,212,40,0.35);
  text-decoration: none;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

button.alc-primary-btn:hover,
a.alc-primary-btn:hover,
.alc-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,212,40,0.45);
}

.alc-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: var(--alc-accent);
  color: #111;
  border-radius: var(--alc-radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}

.alc-btn-accent:hover { transform: translateY(-2px); }

.alc-link-sm {
  font-size: 13px;
  color: var(--alc-primary);
  font-weight: 600;
  text-decoration: none;
}
.alc-link-sm:hover { text-decoration: underline; }

/* ─── Role cards ─── */
.alc-role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.alc-role-card {
  border: 2px solid var(--alc-border);
  border-radius: var(--alc-radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--alc-white);
  transition: all 0.25s;
  display: block;
}

.alc-role-card input[type="radio"] { display: none; }

.alc-role-card:hover {
  border-color: var(--alc-primary);
  transform: translateY(-4px);
  box-shadow: var(--alc-shadow-sm);
}

.alc-role-card:has(input:checked) {
  border-color: var(--alc-primary);
  background: rgba(20,0,93,0.04);
  box-shadow: 0 0 0 3px rgba(20,0,93,0.12);
}

.alc-role-icon { display: block; font-size: 32px; margin-bottom: 10px; }
.alc-role-label { display: block; font-weight: 800; color: var(--alc-primary); margin-bottom: 4px; }
.alc-role-sub { display: block; font-size: 12px; color: var(--alc-muted); }

/* ─── Login extras ─── */
.alc-login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.alc-remember-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.alc-login-options a { font-size: 14px; color: var(--alc-primary); font-weight: 600; text-decoration: none; }

.alc-auth-switch {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--alc-muted);
  position: relative;
  z-index: 2;
}

.alc-auth-switch a { color: var(--alc-primary); font-weight: 700; text-decoration: none; margin-left: 4px; }


/* ═══════════════════════════════════════
   DASHBOARD LAYOUT
═══════════════════════════════════════ */

.alc-dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: var(--alc-bg);
}

/* ─── Sidebar ─── */
.alc-dashboard-sidebar {
  width: 280px;
  min-width: 280px;
  background: var(--alc-primary);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.alc-sidebar-brand h3 {
  font-size: 28px;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: -0.5px;
}

.alc-sidebar-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin: 0 0 28px;
}

.alc-sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--alc-radius-md);
  margin-bottom: 20px;
}

.alc-sidebar-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--alc-accent);
}

.alc-sidebar-avatar-placeholder {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--alc-accent);
  color: #111;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alc-sidebar-name {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alc-sidebar-lock-notice {
  background: rgba(255,212,40,0.15);
  border: 1px solid rgba(255,212,40,0.35);
  border-radius: var(--alc-radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--alc-accent);
  margin-bottom: 16px;
  line-height: 1.5;
}

.alc-dashboard-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.alc-dashboard-menu li {
  border-radius: var(--alc-radius-md);
  margin-bottom: 6px;
  transition: background 0.2s;
}

.alc-dashboard-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--alc-radius-md);
}

.alc-dashboard-menu li a:hover,
.alc-dashboard-menu li:hover:not(.active):not(.locked) {
  background: rgba(255,255,255,0.08);
}

.alc-dashboard-menu li a:hover { color: #fff; }

.alc-dashboard-menu li.active a,
.alc-dashboard-menu li.active span {
  color: #111;
}

.alc-dashboard-menu li.active {
  background: var(--alc-accent);
}

.alc-dashboard-menu li.locked {
  opacity: 0.45;
  cursor: not-allowed;
}

.alc-dashboard-menu li.locked span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 14px;
}

.alc-sidebar-footer {
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.alc-logout-btn {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--alc-radius-sm);
  transition: color 0.2s;
}

.alc-logout-btn:hover { color: #fff; }

/* ─── Main content area ─── */
.alc-dashboard-main {
  flex: 1;
  padding: 44px 48px;
  overflow-y: auto;
}

.alc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.alc-section-header h2 {
  font-size: 40px;
  color: var(--alc-primary);
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 0 0 8px;
}

.alc-section-sub { color: var(--alc-muted); margin: 0 0 28px; }
.alc-section-header p { color: var(--alc-muted); margin: 0; font-size: 15px; }

/* ─── Incomplete profile banner ─── */
.alc-incomplete-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,212,40,0.12);
  border: 1.5px solid rgba(255,212,40,0.4);
  border-radius: var(--alc-radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.alc-incomplete-icon { font-size: 28px; line-height: 1; }
.alc-incomplete-banner strong { display: block; font-size: 16px; color: var(--alc-primary); margin-bottom: 4px; }
.alc-incomplete-banner p { margin: 0; color: var(--alc-muted); font-size: 14px; }

/* ─── Stat cards ─── */
.alc-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.alc-stat-card {
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--alc-shadow-sm);
}

.alc-stat-number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 6px;
  line-height: 1;
}

.alc-stat-label { font-size: 13px; color: var(--alc-muted); font-weight: 600; }

.alc-stat-blue   .alc-stat-number { color: #2441a8; }
.alc-stat-green  .alc-stat-number { color: var(--alc-success); }
.alc-stat-yellow .alc-stat-number { color: #9c7000; }
.alc-stat-gray   .alc-stat-number { color: #444; }

/* ─── Panels ─── */
.alc-panel {
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 28px;
  box-shadow: var(--alc-shadow-sm);
  margin-bottom: 24px;
}

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

.alc-panel-header h3 { font-size: 20px; color: var(--alc-primary); margin: 0; }

/* ─── Table ─── */
.alc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.alc-table th {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid #eee;
  color: var(--alc-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.alc-table td {
  padding: 14px;
  border-bottom: 1px solid #f3f3f3;
  vertical-align: top;
}

.alc-table tr:last-child td { border-bottom: none; }
.alc-table tr:hover td { background: #fafafa; }
.alc-table-sub { display: block; font-size: 12px; color: var(--alc-muted); margin-top: 2px; }

/* ─── Badges ─── */
.alc-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--alc-radius-pill);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.alc-badge-publish   { background: #e8f7ed; color: var(--alc-success); }
.alc-badge-pending   { background: #e8efff; color: #2441a8; }
.alc-badge-draft     { background: #fff4d8; color: #9c7000; }
.alc-badge-app-new          { background: #e8efff; color: #2441a8; }
.alc-badge-app-reviewed     { background: #fff4d8; color: #7a5900; }
.alc-badge-app-shortlisted  { background: var(--alc-success-bg); color: var(--alc-success); }
.alc-badge-app-rejected     { background: var(--alc-error-bg); color: var(--alc-error); }

/* ─── Tags ─── */
.alc-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--alc-radius-pill);
  font-size: 12px;
  font-weight: 700;
  background: rgba(20,0,93,0.08);
  color: var(--alc-primary);
}

.alc-tag-loc    { background: #e8f5ff; color: #0d5986; }
.alc-tag-type   { background: rgba(20,0,93,0.08); color: var(--alc-primary); }
.alc-tag-urgent { background: #fff0e8; color: #b84c00; }
.alc-tag-date   { background: #f0f0f0; color: #555; }

/* ─── Cover message preview ─── */
.alc-cover-preview {
  font-size: 12px;
  color: var(--alc-muted);
  margin-top: 4px;
  font-style: italic;
}

/* ─── Filter bar ─── */
.alc-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.alc-filter-bar label { font-weight: 700; font-size: 13px; color: var(--alc-primary); }

.alc-select-sm {
  padding: 10px 16px;
  border-radius: var(--alc-radius-md);
  border: 1.5px solid var(--alc-border);
  font-size: 14px;
  background: var(--alc-white);
  color: var(--alc-text);
  cursor: pointer;
  min-width: 160px;
}

/* ─── Empty state ─── */
.alc-empty-state {
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--alc-shadow-sm);
}

.alc-empty-icon  { display: block; font-size: 48px; margin-bottom: 20px; }
.alc-empty-state h3 { font-size: 24px; color: var(--alc-primary); margin: 0 0 10px; }
.alc-empty-state p  { color: var(--alc-muted); margin: 0 0 24px; }


/* ═══════════════════════════════════════
   PROFILE SETUP FORM
═══════════════════════════════════════ */

.alc-profile-setup-wrapper {
  max-width: 800px;
}

.alc-setup-banner {
  background: linear-gradient(135deg, var(--alc-primary), #2a1090);
  color: #fff;
  border-radius: var(--alc-radius-lg);
  padding: 36px 40px;
  margin-bottom: 32px;
}

.alc-setup-step {
  display: inline-block;
  background: var(--alc-accent);
  color: #111;
  padding: 6px 14px;
  border-radius: var(--alc-radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.alc-setup-banner h2 {
  font-size: 36px;
  letter-spacing: -1px;
  margin: 0 0 10px;
  color: #fff;
}

.alc-setup-banner p { color: rgba(255,255,255,0.75); margin: 0; line-height: 1.7; }

.alc-profile-form {
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 40px;
  box-shadow: var(--alc-shadow-sm);
}

/* ─── Candidate overview panel ─── */
.alc-candidate-profile-overview .alc-profile-overview-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.alc-profile-overview-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--alc-accent);
}

.alc-profile-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--alc-accent);
  color: #111;
  font-weight: 800;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alc-profile-overview-info h4 {
  font-size: 22px;
  color: var(--alc-primary);
  margin: 0 0 8px;
}

.alc-profile-detail {
  color: var(--alc-muted);
  font-size: 14px;
  margin: 0 0 6px;
}

.alc-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.alc-skill-tag {
  padding: 4px 12px;
  background: rgba(20,0,93,0.07);
  color: var(--alc-primary);
  border-radius: var(--alc-radius-pill);
  font-size: 12px;
  font-weight: 600;
}


/* ═══════════════════════════════════════
   JOB SUBMISSION FORM
═══════════════════════════════════════ */

.alc-job-form-wrapper { padding: 0; }
.alc-job-form-card    { max-width: 100%; }

.alc-posting-as {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(20,0,93,0.06);
  border-radius: var(--alc-radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--alc-primary);
}

.alc-job-submit-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,212,40,0.1);
  border: 1px solid rgba(255,212,40,0.4);
  border-radius: var(--alc-radius-md);
  padding: 18px 22px;
  margin-bottom: 20px;
}

.alc-job-submit-notice span { font-size: 22px; }
.alc-job-submit-notice p { margin: 0; font-size: 14px; color: var(--alc-muted); line-height: 1.6; }


/* ═══════════════════════════════════════
   JOB LISTING PAGE
═══════════════════════════════════════ */

.alc-jobs-portal { padding: 0; }

.alc-jobs-filter-bar {
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: var(--alc-shadow-sm);
}

.alc-filter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alc-filter-search {
  flex: 1;
  min-width: 240px;
}

.alc-btn-filter {
  padding: 12px 24px;
  background: var(--alc-primary);
  color: #fff;
  border: none;
  border-radius: var(--alc-radius-pill);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.alc-btn-filter:hover { opacity: 0.85; }

.alc-btn-clear {
  padding: 12px 16px;
  background: transparent;
  border: 1.5px solid var(--alc-border);
  color: var(--alc-muted);
  border-radius: var(--alc-radius-pill);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.alc-btn-clear:hover { border-color: #999; color: #333; }

.alc-jobs-count {
  margin-bottom: 20px;
}

.alc-jobs-count p { color: var(--alc-muted); font-size: 15px; margin: 0; }

/* ─── Jobs grid ─── */
.alc-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.alc-job-card {
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  overflow: hidden;
  box-shadow: var(--alc-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.alc-job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--alc-shadow-md);
}

.alc-job-card.alc-job-urgent {
  border: 2px solid #ff8c00;
}

.alc-job-card-banner { height: 140px; overflow: hidden; }
.alc-job-card-banner img { width: 100%; height: 100%; object-fit: cover; }

.alc-job-card-body {
  padding: 24px;
  flex: 1;
}

.alc-job-card-company {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.alc-company-logo-sm {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #eee;
}

.alc-company-logo-placeholder {
  width: 40px; height: 40px;
  background: var(--alc-accent);
  color: #111;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.alc-company-name { font-size: 13px; font-weight: 600; color: var(--alc-muted); }

.alc-job-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--alc-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

.alc-job-excerpt {
  font-size: 13px;
  color: var(--alc-muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.alc-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.alc-job-expiry {
  font-size: 12px;
  color: var(--alc-muted);
  margin: 0;
}

.alc-job-card-footer {
  padding: 16px 24px;
  border-top: 1px solid #f3f3f3;
}

.alc-apply-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--alc-primary);
  color: #fff;
  border-radius: var(--alc-radius-md);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.alc-apply-btn:hover { background: #1e0099; }

.alc-btn-applied {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--alc-success-bg);
  color: var(--alc-success);
  border-radius: var(--alc-radius-md);
  font-weight: 700;
  font-size: 14px;
}

.alc-jobs-empty { padding: 80px 40px; }


/* ═══════════════════════════════════════
   APPLICATION FORM
═══════════════════════════════════════ */

.alc-application-card {
  width: 100%;
  max-width: 760px;
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 56px 64px;
  box-shadow: var(--alc-shadow-md);
  position: relative;
  overflow: hidden;
}

.alc-apply-job-summary { margin-bottom: 8px; }

.alc-apply-job-info h2 {
  font-size: 30px;
  color: var(--alc-primary);
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}

.alc-apply-company {
  font-size: 15px;
  font-weight: 600;
  color: var(--alc-muted);
  margin: 0 0 12px;
}

.alc-divider { border: none; border-top: 1px solid #eee; margin: 24px 0; }


/* ═══════════════════════════════════════
   PAYMENT
═══════════════════════════════════════ */

.alc-payment-wrapper { padding: 40px 20px; }

.alc-payment-card {
  max-width: 720px;
  margin: auto;
  background: var(--alc-white);
  border-radius: var(--alc-radius-lg);
  padding: 60px;
  box-shadow: var(--alc-shadow-md);
  position: relative;
  overflow: hidden;
}

.alc-payment-summary {
  background: #f8f6f1;
  border-radius: var(--alc-radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}

.alc-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e7e2d8;
  font-size: 14px;
}

.alc-payment-row:last-child { border-bottom: none; }
.alc-payment-row span  { color: var(--alc-muted); }
.alc-payment-row strong { color: var(--alc-primary); text-align: right; max-width: 60%; }

.alc-amount { font-size: 24px; font-weight: 800; color: var(--alc-primary); }

.alc-stripe-btn { background: #635bff !important; color: #fff !important; box-shadow: 0 8px 24px rgba(99,91,255,0.35) !important; }
.alc-stripe-btn:hover { background: #4f46e5 !important; }

.alc-payment-note { text-align: center; font-size: 12px; color: var(--alc-muted); margin-top: 16px; }

.alc-payment-success-card { text-align: center; }
.alc-success-icon { font-size: 64px; margin-bottom: 20px; }
.alc-payment-success-card h2 { font-size: 36px; color: var(--alc-primary); margin: 0 0 12px; }
.alc-payment-success-card > p { color: var(--alc-muted); margin: 0 0 28px; }
.alc-payment-success-card .alc-primary-btn { max-width: 300px; margin: 20px auto 0; }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 1100px) {
  .alc-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .alc-dashboard-layout { flex-direction: column; }
  .alc-dashboard-sidebar { width: 100%; height: auto; position: static; padding: 24px 20px; }
  .alc-dashboard-menu { display: flex; flex-wrap: wrap; gap: 8px; }
  .alc-dashboard-menu li { margin-bottom: 0; }
  .alc-dashboard-main { padding: 28px 20px; }
  .alc-section-header h2 { font-size: 32px; }
  .alc-stat-grid { grid-template-columns: 1fr 1fr; }
  .alc-form-row-2 { grid-template-columns: 1fr; }
  .alc-auth-card { padding: 40px 28px; }
  .alc-auth-top h2 { font-size: 40px; }
  .alc-role-grid { grid-template-columns: 1fr; }
  .alc-application-card { padding: 36px 28px; }
  .alc-payment-card { padding: 40px 28px; }
}

@media (max-width: 640px) {
  .alc-stat-grid { grid-template-columns: 1fr; }
  .alc-jobs-grid { grid-template-columns: 1fr; }
  .alc-filter-form { flex-direction: column; align-items: stretch; }
  .alc-filter-search { min-width: unset; }
  .alc-auth-top h2 { font-size: 34px; }
  .alc-section-header { flex-direction: column; gap: 16px; }
}
