@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: rgba(55, 88, 249, 1);
  --primary-dark: rgba(28, 63, 183, 1);
  --dark-primary: rgba(17, 25, 40, 1);
  --dark-secondary: rgba(55, 65, 81, 1);
  --dark-tertiary: rgba(107, 114, 128, 1);
  --dark-quaternary: rgba(156, 163, 175, 1);
  --white: rgba(255, 255, 255, 1);
  --gray-light: rgba(243, 244, 246, 1);
  --gray-medium: rgba(206, 212, 218, 1);
  --gray-dark: rgba(209, 213, 219, 1);
  --stroke: rgba(223, 228, 234, 1);
  --primary-text: rgba(99, 115, 129, 1);
  --secondary-text: rgba(136, 153, 168, 1);
  --green-dark: rgba(26, 130, 69, 1);
  --green-light: rgba(218, 248, 230, 1);
  --blue-light: rgba(225, 232, 255, 1);
  --blue-gradient-2: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);

  /* Typography */
  --font-family: "Inter", sans-serif;
  --h3-weight: 700;
  --h3-size: 40px;
  --h3-line-height: 48px;
  --h6-weight: 600;
  --h6-size: 24px;
  --h6-line-height: 30px;
  --body-large-weight: 600;
  --body-large-size: 18px;
  --body-large-line-height: 26px;
  --body-medium-weight: 500;
  --body-medium-size: 16px;
  --body-medium-line-height: 24px;
  --body-small-weight: 400;
  --body-small-size: 14px;
  --body-small-line-height: 22px;
  --body-xs-weight: 500;
  --body-xs-size: 12px;
  --body-xs-line-height: 20px;

  /* Shadows */
  --shadow-1: 0px 1px 3px 0px rgba(166, 175, 195, 0.4);
  --shadow-2: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
  --shadow-3: 0px 4px 12px 0px rgba(13, 10, 44, 0.06);
  --shadow-4: 0px 10px 20px 0px rgba(92, 115, 160, 0.07);
}

/* ===== Manual Job Creation: Step 4 (Mobile) ===== */
@media (max-width: 767.9px) {
  /* Header */
  .manual-job-creation #step4 .step-header h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #111827;
    margin: 16px 0 6px 0;
  }

  .manual-job-creation #step4 .step-header p {
    font-size: 14px;
    line-height: 22px;
    color: #8899A8;
    margin: 0 0 16px 0;
  }

  /* Textareas in Additional Info */
  .manual-job-creation #step4 .form-group { margin-bottom: 16px; }
  .manual-job-creation #step4 .form-group label {
    font-size: 14px; line-height: 20px; color: #6B7280; margin-bottom: 8px; display: block;
  }
  .manual-job-creation #step4 textarea.form-control {
    width: 100%;
    background: #F3F5F7;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    line-height: 22px;
    color: #414141;
    min-height: 120px;
  }
  .manual-job-creation #step4 textarea.form-control::placeholder { color: #A0AEC0; }

  /* Attributes accordion */
  .manual-job-creation #step4 .attributes-section { margin-top: 8px; }
  .manual-job-creation #step4 .attributes-section .accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 0;
  }
  .manual-job-creation #step4 .attribute-accordion {
    color: #1C3FB7;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
  }
  .manual-job-creation #step4 .attributes-section .muted-group { margin: 8px 0 10px; }
  .manual-job-creation #step4 .attributes-section .muted { color: #8899A8; font-size: 13px; line-height: 20px; margin: 0; }
  .manual-job-creation #step4 .attributes-section .total { margin: 4px 0 0; font-size: 13px; }
  .manual-job-creation #step4 .attributes-section .total span { color: #16A34A; font-weight: 700; }

  .manual-job-creation #step4 .section-title {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #E5EAF2;
    border-bottom: 1px solid #E5EAF2;
    font-weight: 600;
    font-size: 14px;
    color: #1F2937;
  }

  .manual-job-creation #step4 .skill-grid { display: flex; flex-direction: column; gap: 12px; }

  .manual-job-creation #step4 .skill-card {
    background: #F9FAFB;
    border: 1px solid #E5EAF2;
    border-radius: 12px;
    padding: 12px;
  }
  .manual-job-creation #step4 .skill-card-head { margin-bottom: 8px; }
  .manual-job-creation #step4 .skill-card-title { font-weight: 600; font-size: 13px; color: #475569; }
  .manual-job-creation #step4 .skill-card-colhead { text-align: right; font-size: 12px; color: #9CA3AF; margin-bottom: 8px; }

  .manual-job-creation #step4 .skill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .manual-job-creation #step4 .skill-item {
    display: grid;
    grid-template-columns: auto 1fr 64px;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 10px;
  }
  .manual-job-creation #step4 .skill-name { font-size: 14px; color: #414141; }
  .manual-job-creation #step4 .skill-name.ai { color: #1C3FB7; }

  .manual-job-creation #step4 .weight-input {
    width: 56px;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #E5EAF2;
    border-radius: 8px;
    padding: 6px 8px;
    text-align: right;
    font-size: 14px;
    color: #111827;
  }

  /* Toggle switch scoped to attributes list */
  .manual-job-creation #step4 .skill-list .toggle { display: inline-flex; align-items: center; }
  .manual-job-creation #step4 .skill-list .toggle input { display: none; }
  .manual-job-creation #step4 .skill-list .toggle span {
    position: relative;
    width: 42px;
    height: 24px;
    background: #E5EAF2;
    border-radius: 999px;
    transition: background 0.2s ease;
    display: inline-block;
  }
  .manual-job-creation #step4 .skill-list .toggle span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  .manual-job-creation #step4 .skill-list .toggle input:checked + span { background: #1C3FB7; }
  .manual-job-creation #step4 .skill-list .toggle input:checked + span::after { transform: translateX(18px); }
}
/* ===== GLOBAL STYLES ===== */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-family);
  background-color: #F5F6F7;
}


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

/* ===== TYPOGRAPHY CLASSES ===== */
.h3 {
  font-family: var(--font-family);
  font-weight: var(--h3-weight);
  font-size: var(--h3-size);
  line-height: var(--h3-line-height);
  color: var(--dark-primary);
}

.h6 {
  font-family: var(--font-family);
  font-weight: var(--h6-weight);
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
  color: var(--dark-primary);
}

.body-large {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  line-height: var(--body-large-line-height);
}

.body-medium {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
}

.body-small {
  font-family: var(--font-family);
  font-weight: var(--body-small-weight);
  font-size: var(--body-small-size);
  line-height: var(--body-small-line-height);
}

.body-xs {
  font-family: var(--font-family);
  font-weight: var(--body-xs-weight);
  font-size: var(--body-xs-size);
  line-height: var(--body-xs-line-height);
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  max-width: 100%;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== NOTIFICATION COMPONENT ===== */
.notification-container {
  position: relative;
}

.notification-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== NOTIFICATION DROPDOWN ===== */
.notification-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.notification-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--stroke);
}

.notification-header h3 {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  color: var(--dark-primary);
  margin: 0;
}

.notification-count {
  font-family: var(--font-family);
  font-size: var(--body-small-size);
  color: var(--primary-color);
  font-weight: 500;
}

.notification-list {
  max-height: 300px;
  overflow-y: auto;
}

.notification-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--stroke);
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
}

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

.notification-item:hover {
  background: var(--gray-light);
}

.notification-item.unread {
  background: rgba(55, 88, 249, 0.02);
}

.notification-text {
  font-family: var(--font-family);
  font-size: var(--body-small-size);
  color: var(--primary-text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.notification-time {
  font-family: var(--font-family);
  font-size: var(--body-xs-size);
  color: var(--secondary-text);
}

.notification-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.notification-link {
  font-family: var(--font-family);
  font-size: var(--body-small-size);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
}

button.notification-link {
  position: relative;
  padding: 0 13px 0 0;
  margin-right: 12px;
}

button.notification-link::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dadada;
}

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

/* ===== PAGE CONTENT ===== */
.page-content {
  flex: 1;
  min-height: calc(100vh - 80px);
  position: relative;
}

/* Corner title inside page content */
.page-corner-title {
  /* Convert from absolute corner badge to a normal block title
     aligned to the same left edge as the centered white card (max-width: 880px) */
  position: static;
  display: block;
  max-width: 880px;
  margin: 24px 0 8px; /* sit above the white card */
  z-index: auto;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: var(--dark-primary);
}

/* Mobile-only top row containing title and a gear button (hidden on desktop) */
.page-top-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  max-width: 880px;
  margin: 16px 16px 8px; /* match mobile spacing */
}

.mobile-gear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 2px rgba(16,24,40,.06);
  color: #111928;
}

.mobile-gear-btn:active { transform: translateY(0.5px); }

/* Icon inside the mobile gear button */
.mobile-gear-icon {
  width: 24px;
  height: 24px;
  display: block;
  cursor: pointer;
}

/* Gear dropdown menu (mobile) */
.page-gear { position: relative; }
.gear-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0px 20px 24px rgba(16,24,40,.10), 0px 8px 8px rgba(16,24,40,.08), 0 0 0 1px rgba(16,24,40,.02);
  border-radius: 14px;
  padding: 0;
  display: none;
  z-index: 40;
  overflow: hidden; /* rounded corners for first item */
}
.gear-menu.open { display: block; }
.gear-menu a,
.gear-menu button.gear-menu-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px; /* a bit taller like the mock */
  background: transparent;
  border: 0;
  color: #64748B; /* slate-500 like in Figma */
  font-size: 15.5px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}
.gear-menu a:hover,
.gear-menu button.gear-menu-link:hover { background: #F3F4F6; }

/* Active item (first) styled like Figma gradient header */
.gear-menu a.active {
  background: linear-gradient(90deg, #1C3FB7 0%, #3B82F6 100%);
  color: #fff;
  font-weight: 600;
}
.gear-menu a.active:hover { background: linear-gradient(90deg, #1C3FB7 0%, #3B82F6 100%); }

/* Keep a subtle divider after the active header */
.gear-menu a.active + a { border-top: 1px solid #E6EEF9; }

/* Subtle separators between normal items */
.gear-menu a + a,
.gear-menu a + form,
.gear-menu form + a,
.gear-menu form + form { border-top: 1px solid #F3F4F6; }

@media (max-width: 768px) {
  .page-corner-title {
    max-width: none;
    margin: 16px 16px 8px; /* match mobile card margins */
  }
  .page-top-row { display: flex; }
  /* Avoid duplicate titles on mobile: hide the standalone title when row is present */
  .page-top-row + .page-corner-title { display: none; }
}

/* ===== BACK BUTTON (GLOBAL) ===== */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6B7280; /* slate-500 */
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.btn-back:hover { color: #111827; /* gray-900 */ }
.btn-back .chev { font-size: 16px; }

/* ===== Candidate-only normalization for back buttons ===== */
[data-scope="candidate"] .btn-back {
  display: inline-flex; /* enforce layout in case of overrides */
  align-items: center;
  gap: 8px; /* consistent spacing between icon and text */
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
[data-scope="candidate"] .btn-back .chev {
  font-size: 16px; /* normalize arrow glyph size */
  line-height: 1;
}
[data-scope="candidate"] .btn-back svg {
  width: 18px;
  height: 18px; /* normalize SVG icon size */
}
[data-scope="candidate"] .btn-back img {
  width: 18px;
  height: 18px; /* normalize IMG icon size */
  display: inline-block;
}

.app-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.main-content-wrapper {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  background-color: #f5f6f7;
}

/* ===== SIDEBAR LAYOUT ===== */
.sidebar.dashboard-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow-3);
  z-index: 100;
  transition: width 0.3s ease;
}

/* Hide mobile navigation on desktop */
.mobile-bottom-nav {
  display: none;
}

.sidebar.dashboard-sidebar.collapsed {
  width: 80px;
}

.sidebar-top {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.sidebar-bottom {
  flex: 0 0 auto;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
}

/* ===== SIDEBAR LOGO ===== */
.sidebar-logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 60px;
}

.sidebar-logo-full {
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 200px;
  height: auto;
}

.sidebar-logo-collapsed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ===== SIDEBAR NAVIGATION ===== */
.sidebar-nav-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  width: 100%;
}

.sidebar-nav-group {
  display: flex;
  flex-direction: column;
  width: 235px;
  align-items: flex-start;
  gap: 12px;
}

.sidebar-menu-item {
  display: flex;
  flex-direction: column;
  width: 235px;
  align-items: flex-start;
  border-radius: 8px 0px 0px 8px;
  position: relative;
}

.sidebar-menu-item.active {
  border: 1px solid #ced4da;
}

.sidebar-menu-link {
  gap: 10px;
  padding: 10px 22px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 8px 0px 0px 8px;
  border: none;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-menu-link:hover {
  background: var(--gray-light);
  color: var(--primary-color);
}

.sidebar-menu-link.active {
  background-color: rgba(55, 88, 249, 0.1);
  border-right: 3px solid #000B7B;
}

.sidebar-menu-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-menu-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-text);
  transition: color 0.2s ease;
}

.sidebar-menu-link:hover .sidebar-menu-icon {
  color: var(--primary-color);
}

.sidebar-menu-link.active .sidebar-menu-icon {
  color: var(--primary-color);
}

.sidebar-menu-text {
  font-family: var(--font-family);
  font-size: var(--body-medium-size);
  font-weight: var(--body-medium-weight);
  color: var(--primary-text);
}

/* ===== SIDEBAR SETTINGS ACCORDION ===== */
.sidebar-settings-section {
  margin-bottom: 8px;
}

.sidebar-settings-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: transparent;
}

.sidebar-settings-header:hover {
  background-color: var(--gray-light);
}

.sidebar-settings-header.active {
  background-color: var(--blue-light);
  color: var(--primary-color);
}

.sidebar-settings-header .sidebar-menu-text {
  color: var(--primary-text);
}

.sidebar-settings-header.active .sidebar-menu-text {
  color: var(--primary-color);
}

.sidebar-accordion-arrow {
  transition: transform 0.3s ease;
}

.sidebar-accordion-arrow svg {
  transition: transform 0.3s ease;
}

.sidebar-settings-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 28px;
}

.sidebar-settings-content.open {
  max-height: 200px;
  padding-top: 8px;
}

.sidebar-settings-content .sidebar-bottom-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-settings-content .sidebar-bottom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--primary-text);
  border-radius: 6px;
  transition: background-color 0.2s ease;
  font-size: var(--body-small-size);
}

.sidebar-settings-content .sidebar-bottom-item:hover {
  background-color: var(--gray-light);
}

.sidebar-settings-content .sidebar-bottom-icon {
  width: 14px;
  height: 14px;
}

/* ===== SIDEBAR USER SECTION ===== */
.sidebar-user-section {
  padding-top: 16px;
}

.sidebar-user-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-light);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sidebar-user-content:hover {
  background: var(--gray-medium);
}

.sidebar-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: var(--body-medium-weight);
  font-size: 16px;
  flex-shrink: 0;
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  font-size: var(--body-medium-size);
  font-weight: var(--body-medium-weight);
  color: var(--dark-primary);
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-email {
  font-size: var(--body-small-size);
  color: var(--primary-text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== SIDEBAR TOGGLE BUTTON ===== */
.sidebar-toggle {
  position: absolute;
  top: 65px;
  right: -16px;
  z-index: 1001;
  transition: right 0.3s ease;
}

.sidebar-toggle-btn {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.sidebar-toggle-btn:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ===== COLLAPSED SIDEBAR STYLES ===== */
.sidebar.collapsed .sidebar-logo-full {
  opacity: 0;
  transform: scale(0.8);
}

.sidebar.collapsed .sidebar-logo-collapsed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar.collapsed .sidebar-toggle-icon {
  transform: rotate(180deg);
}

.sidebar.collapsed .sidebar-top {
  align-items: center;
}

.sidebar.collapsed .sidebar-bottom {
  padding: 16px 8px;
  gap: 12px;
  align-items: center;
}

.sidebar.collapsed .sidebar-nav-section {
  padding: 0;
  align-items: center;
}

.sidebar.collapsed .sidebar-nav-group {
  width: 100%;
  align-items: center;
}

.sidebar.collapsed .sidebar-menu-item {
  width: 56px;
  margin: 0 auto 8px auto;
  border-radius: 12px;
}

.sidebar.collapsed .sidebar-menu-link {
  padding: 12px;
  justify-content: center;
  border-radius: 12px;
}

.sidebar.collapsed .sidebar-menu-content {
  justify-content: center;
}

.sidebar.collapsed .sidebar-menu-text {
  display: none;
}

.sidebar.collapsed .sidebar-menu-icon {
  margin: 0;
  width: 20px;
  height: 20px;
}

.sidebar.collapsed .sidebar-settings-header {
  padding: 12px;
  justify-content: center;
  margin: 0 auto;
  width: 56px;
  border-radius: 12px;
}

.sidebar.collapsed .sidebar-settings-header .sidebar-menu-text {
  display: none;
}

.sidebar.collapsed .sidebar-settings-header .sidebar-menu-icon {
  width: 20px;
  height: 20px;
}

.sidebar.collapsed .sidebar-accordion-arrow {
  display: none;
}

.sidebar.collapsed .sidebar-settings-content {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  padding-left: 0;
  padding-top: 8px;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 56px;
  height: 40px;
  border-radius: 12px;
  position: relative;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-text {
  display: none;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-icon {
  width: 18px;
  height: 18px;
}

.sidebar.collapsed .sidebar-user-section {
  padding-top: 12px;
}

.sidebar.collapsed .sidebar-user-content {
  padding: 8px;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  width: 56px;
  margin: 0 auto;
}

.sidebar.collapsed .sidebar-user-content:hover {
  background: var(--gray-light);
}

.sidebar.collapsed .sidebar-user-info {
  display: none;
}

.sidebar.collapsed .sidebar-user-avatar {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

/* ===== TOOLTIPS FOR COLLAPSED SIDEBAR ===== */
.sidebar.collapsed .sidebar-menu-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: var(--body-small-size);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar.collapsed .sidebar-menu-item::before {
  content: '';
  position: absolute;
  left: 62px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #1f2937;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar.collapsed .sidebar-menu-item:hover::after,
.sidebar.collapsed .sidebar-menu-item:hover::before {
  opacity: 1;
  visibility: visible;
}

.sidebar.collapsed .sidebar-settings-header::after {
  content: "Settings";
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: var(--body-small-size);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar.collapsed .sidebar-settings-header::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #1f2937;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar.collapsed .sidebar-settings-header:hover::after,
.sidebar.collapsed .sidebar-settings-header:hover::before {
  opacity: 1;
  visibility: visible;
}

.sidebar.collapsed .sidebar-user-content::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #1f2937;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar.collapsed .sidebar-user-content:hover::after,
.sidebar.collapsed .sidebar-user-content:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dashboard-overlap {
  position: relative;
  min-height: 100vh;
  flex: 1;
}

.dashboard-main, .listing-dashboard-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  align-items: flex-end;

  padding: 40px 20px 40px 20px;
  background-color: #f5f6f7;
  flex: 1;
}

.listing-dashboard-main {
  align-items: flex-start;
}

.dashboard-title {
  align-self: stretch;
  font-weight: var(--h6-weight);
  color: var(--dark-primary);
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
  font-family: var(--font-family);
  margin-bottom: 15px;
}

/* ===== DASHBOARD STATS ===== */
.dashboard-stats {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  width: 100%;
  flex-wrap: wrap;
}

.dashboard-stat-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 164px;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  flex: 1;
  border-radius: 5px;
  min-width: 250px;
  box-shadow: 0 1px 3px 0 rgba(166, 175, 195, 0.40);
}

.dashboard-stat-card.orange .dashboard-stat-icon {
  background-color: #ffefe5;
}

.dashboard-stat-card.purple .dashboard-stat-icon {
  background-color: #f7ebff;
}

.dashboard-stat-card.yellow .dashboard-stat-icon {
  background-color: #ffefd1;
}

.dashboard-stat-card.teal .dashboard-stat-icon {
  background-color: #dcf4f3;
}

.dashboard-stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}

.dashboard-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dashboard-stat-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dashboard-stat-label {
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--dark-primary);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.dashboard-stat-number {
  font-family: var(--font-family);
  font-weight: var(--h3-weight);
  color: var(--dark-primary);
  font-size: var(--h3-size);
  line-height: var(--h3-line-height);
  white-space: nowrap;
}

/* ===== DASHBOARD ACTIONS ===== */
.dashboard-actions {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  gap: 20px;
  margin: 20px 0;
}

.dashboard-search-container {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 400px;
}

.dashboard-search-icon {
  position: absolute;
  left: 25px;
  z-index: 2;
  color: var(--primary-text);
  pointer-events: none;
}

.dashboard-search-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: 40px;
  border: 1px solid var(--primary-dark);
  background: transparent;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--dark-primary);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
  outline: none;
  transition: all 0.2s ease;
  margin: 10px;
}

.dashboard-search-input::placeholder {
  color: var(--primary-text);
  font-weight: 400;
}

.dashboard-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(55, 88, 249, 0.1);
  background: var(--white);
}

.dashboard-search-input:hover {
  border-color: var(--primary-color);
}

.dashboard-create-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  color: transparent;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1), rgba(0, 11, 123, 1));
  background-clip: text;
  -webkit-background-clip: text;
  margin: 10px;
}

.dashboard-create-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  /* border thickness */
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1), rgba(0, 11, 123, 1));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ===== DASHBOARD TABLE ===== */
.dashboard-table-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 10px;
}

.dashboard-table {
  flex: 1;
  align-self: stretch;
  width: 100%;
}

.dashboard-table-container {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  overflow: auto;
  position: relative;
}

/* Custom scrollbar for dashboard table */
.dashboard-table-container::-webkit-scrollbar {
  height: 8px;
}

.dashboard-table-container::-webkit-scrollbar-track {
  background: var(--gray-light);
  border-radius: 4px;
}

.dashboard-table-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
  opacity: 0.7;
}

.dashboard-table-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
  opacity: 1;
}

.dashboard-table-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 60px;
  align-items: flex-start;
  gap: 10px;
  padding: 17px 32px;
  background-color: #f9fafb;
  border-radius: 10px 10px 0px 0px;
}

.dashboard-table-header-row {
  display: flex;
  width: 100%;
  align-items: center;
}

.dashboard-table-header-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dashboard-table-header-cell.position {
  flex: 3;
  min-width: 200px;
}

.dashboard-table-header-cell.status {
  flex: 2;
  min-width: 150px;
}

.dashboard-table-header-cell.start-date {
  flex: 2;
  min-width: 120px;
}

.dashboard-table-header-cell.end-date {
  flex: 2;
  min-width: 120px;
}

.dashboard-table-header-cell.actions {
  flex: 1;
  min-width: 80px;
}

.dashboard-table-header-text {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark-primary);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
  white-space: nowrap;
}

.dashboard-table-body {
  width: 100%;
}

.dashboard-table-sort {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
}

.dashboard-table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 32px;
  background-color: var(--white);
  border-bottom: 1px solid #f0f0f0;
}

.dashboard-table-row-content {
  display: flex;
  width: 100%;
  align-items: center;
}

.dashboard-table-cell {
  display: flex;
  align-items: center;
}

.dashboard-table-cell.position {
  flex: 3;
  min-width: 200px;
}

.dashboard-table-cell.status {
  flex: 2;
  min-width: 150px;
}

.dashboard-table-cell.start-date {
  flex: 2;
  min-width: 120px;
}

.dashboard-table-cell.end-date {
  flex: 2;
  min-width: 120px;
}

.dashboard-table-cell.actions {
  flex: 1;
  min-width: 80px;
  gap: 12px;
}

.dashboard-table-position {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--primary-text);
  font-size: var(--body-small-size);
  line-height: var(--body-small-line-height);
  white-space: nowrap;
}

.dashboard-table-date {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--primary-text);
  font-size: var(--body-small-size);
  line-height: var(--body-small-line-height);
}

/* ===== STATUS BADGES ===== */
.dashboard-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 3px 10px;
  border-radius: 30px;
}

.dashboard-status-badge.opened {
  background-color: var(--green-light);
}

.dashboard-status-badge.new {
  background-color: var(--blue-light);
}

.dashboard-status-badge.publish {
  background-color: #279d9733;
}

.dashboard-status-badge.disable {
  background-color: #e9504633;
}

.dashboard-status-badge.draft {
  background-color: var(--gray-medium);
}

.dashboard-status-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.dashboard-status-text.opened {
  color: var(--green-dark);
}

.dashboard-status-text.new {
  color: var(--primary-dark);
}

.dashboard-status-text.publish {
  color: #279d97;
}

.dashboard-status-text.disable {
  color: #e95046;
}

.dashboard-status-text.draft {
  color: var(--dark-secondary);
}

/* ===== STATUS DROPDOWN ===== */
.dashboard-status-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-status-select {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 6px 30px 6px 10px;
  border-radius: 30px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 80px;
  transition: all 0.2s ease;
}

/* Status-specific dropdown styling */
.dashboard-status-select.status-opened {
  background-color: var(--green-light);
  color: var(--green-dark);
}

.dashboard-status-select.status-new {
  background-color: var(--blue-light);
  color: var(--primary-dark);
}

.dashboard-status-select.status-publish {
  background-color: #279d9733;
  color: #279d97;
}

.dashboard-status-select.status-disable {
  background-color: #e9504633;
  color: #e95046;
}

.dashboard-status-select.status-draft {
  background-color: var(--gray-medium);
  color: var(--dark-secondary);
}

/* Custom dropdown arrow */
.dashboard-status-dropdown::after {
  content: '';
  position: absolute;
  background: url(/images/ico-chevron.png) no-repeat center/contain;
  width: 11px;
  height: 11px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.dashboard-status-dropdown {
  position: relative;
}

/* ===== DASHBOARD SEARCH NO RESULTS ===== */
.dashboard-no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  width: 100%;
  background: var(--white);
}

.dashboard-no-results-content {
  text-align: center;
  max-width: 300px;
}

.dashboard-no-results-content h3 {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  color: var(--dark-primary);
  margin: 16px 0 8px 0;
}

.dashboard-no-results-content p {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  color: var(--primary-text);
  margin: 0;
}

/* ===== ACTION BUTTONS ===== */
.dashboard-action-btn {
  display: flex;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #3e7e98;
  width: 100px;
  height: 33px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1) 0%, rgba(0, 11, 123, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  border-radius: 40px;
}

.dashboard-delete-btn {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/*===== Welcome =====*/
.welcome-container {
  width: 100vw;
  height: 100vh;
  background-color: #f5f6f7;
  background: url('https://c.animaapp.com/mdh6jochcpZF3l/img/rectangle-41147-1.svg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-modal {
  display: flex;
  flex-direction: column;
  width: 686px;
  height: 498px;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 50px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-2);
}

.welcome-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.welcome-logo {
  width: 280px;
  height: 96.6px;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.welcome-divider {
  width: 90px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1) 0%, rgba(0, 11, 123, 1) 100%);
}

.welcome-tagline {
  width: 430px;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--primary-text);
  font-size: var(--body-medium-size);
  text-align: center;
  line-height: var(--body-medium-line-height);
}

.welcome-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.welcome-button-outline {
  display: flex;
  width: 328px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -1.00px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1) 0%, rgba(0, 11, 123, 1) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 20px;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--white);
  font-size: var(--body-medium-size);
  text-align: center;
  line-height: var(--body-medium-line-height);
}

.welcome-button-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1) 0%, rgba(0, 11, 123, 1) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.welcome-button-filled {
  display: flex;
  width: 328px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1) 0%, rgba(0, 11, 123, 1) 100%);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--white);
  font-size: var(--body-medium-size);
  text-align: center;
  line-height: var(--body-medium-line-height);
}

.welcome-button-outline:hover,
.welcome-button-filled:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* ===== AUTH COMPONENTS ===== */
.auth-container {
  width: 100vw;
  height: 100vh;
  background: url('https://c.animaapp.com/mdh6jochcpZF3l/img/rectangle-41147.svg')no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-2);
  width: 100%;
  max-width: 493px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.auth-logo {
  width: 280px;
  height: 96.6px;
  margin-bottom: 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.auth-form-fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.auth-input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 20px;
  background-color: var(--white);
  border-radius: 6px;
  border: 1px solid #dfe4ea;
  font-family: var(--font-family);
  font-weight: 400;
  color: #000;
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
}

.auth-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.auth-input::placeholder {
  color: var(--dark-quaternary);
}

.auth-label {
  font-family: var(--font-family);
  font-weight: 400;
  color: #111928;
  font-size: var(--body-small-size);
  line-height: var(--body-small-line-height);
}

.auth-button {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(55, 207, 249, 1) 0%, rgba(0, 11, 123, 1) 100%);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--white);
  font-size: var(--body-medium-size);
  text-align: center;
  line-height: var(--body-medium-line-height);
}

.auth-divider {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.auth-divider::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DFE4EA;
}

.auth-divider-text {
  color: #8899A8;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  width: 48px;
  background-color: #fff;
  text-align: center;
  z-index: 9;
  position: relative;
}

.auth-social-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.auth-social-button {
  font-family: 'Inter', sans-serif;
  background: #fff;
  border: 1px solid #000B7B;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #1C3FB7;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.auth-link-text {
  color: #8899A8;
}

.terms-checkbox label {
  color: #111928;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* ===== FORM COMPONENTS ===== */
.form-group {
  padding: 10px 0px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-small-size);
  color: var(--dark-primary);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: var(--body-medium-size);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(55, 88, 249, 0.1);
}

.form-input::placeholder {
  color: var(--secondary-text);
}

.form-error {
  color: #dc3545;
  font-size: var(--body-small-size);
  margin-top: 4px;
}

.forgot-password {
  text-align: right;
}

/* ===== BUTTON COMPONENTS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 8px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--body-small-size);
}

.btn-lg {
  padding: 16px 32px;
  font-size: var(--body-large-size);
}

/* ===== CARD COMPONENTS ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-3);
  overflow: hidden;
}

.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--stroke);
  background: var(--white);
}

.card-body {
  padding: 24px;
}

.card-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--stroke);
  background: var(--gray-light);
}

/* ===== BADGE COMPONENTS ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--body-xs-size);
  font-weight: var(--body-xs-weight);
}

.badge-success {
  background: var(--green-light);
  color: var(--green-dark);
}

.badge-primary {
  background: var(--blue-light);
  color: var(--primary-dark);
}

.badge-secondary {
  background: var(--gray-light);
  color: var(--primary-text);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}

.p-3 {
  padding: 24px;
}

.p-4 {
  padding: 32px;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-none {
  display: none;
}

.align-items-center {
  align-items: center;
}

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

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* ===== ALERT MESSAGES ===== */
.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: var(--body-medium-size);
}

.alert-success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop/Tablet: fix the sidebar and offset main content so it doesn't overlap */
@media (min-width: 768px) {
  .sidebar.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
  }

  .main-content-wrapper {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
  }

  /* When JS toggles collapsed state, reduce content offset */
  .main-content-wrapper.sidebar-collapsed {
    margin-left: 80px;
  }
}

@media (max-width: 1240px) {
  .sidebar.dashboard-sidebar {
    width: 260px;
  }

  .sidebar.dashboard-sidebar.collapsed {
    width: 72px;
  }

  /* Match content offset to sidebar width on tablet */
  .main-content-wrapper {
    margin-left: 260px;
  }

  .main-content-wrapper.sidebar-collapsed {
    margin-left: 72px;
  }

  .dashboard-main {
    padding: 30px 20px;
  }

  .dashboard-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .dashboard-stat-card {
    min-width: 280px;
    flex: 1 1 calc(50% - 8px);
  }

  .sidebar.collapsed .sidebar-menu-item {
    width: 52px;
  }

  .sidebar.collapsed .sidebar-settings-header {
    width: 52px;
  }

  .ae-logo {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .sidebar.collapsed .sidebar-toggle {
    right: -14px;
  }
}

/* ===== TABLET RESPONSIVE (iPad) ===== */
@media (max-width: 1024px) and (min-width: 768px) {
  .dashboard-main {
    padding: 30px 24px;
  }

  /* Convert table to card layout for tablets */
  .dashboard-table-header {
    display: none;
  }

  .dashboard-table-container {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .dashboard-table-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }

  .dashboard-table-row {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--stroke);
    margin-bottom: 0;
  }

  .dashboard-table-row-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .dashboard-table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    min-width: auto;
    flex: none;
  }

  .dashboard-table-cell::before {
    content: attr(data-label);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--body-medium-size);
    color: var(--primary-text);
    flex-shrink: 0;
  }

  .dashboard-table-cell.position::before {
    content: "Position";
  }

  .dashboard-table-cell.status::before {
    content: "Status";
  }

  .dashboard-table-cell.start-date::before {
    content: "Start date";
  }

  .dashboard-table-cell.end-date::before {
    content: "End date";
  }

  .dashboard-table-cell.actions::before {
    content: none;
  }

  .dashboard-table-cell.position .dashboard-table-position {
    font-weight: 600;
    color: var(--dark-primary);
  }

  .dashboard-table-cell.status .dashboard-status-dropdown {
    margin-left: auto;
  }

  .dashboard-table-cell.actions {
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 12px;
    margin-top: 12px;
  }

  .dashboard-delete-btn {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767.9px) {
  .app-container {
    flex-direction: column;
  }

  .sidebar.dashboard-sidebar {
    width: 100%;
    height: 70px;
    max-height: 70px;
    overflow: visible;
    order: 2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-top: 1px solid var(--stroke);
    flex-direction: row;
    padding: 0;
  }

  .main-content-wrapper {
    order: 1;
    margin-left: 0; /* reset desktop/tablet offset on mobile */
    padding-bottom: 70px;
  }

  /* Ensure collapsed state doesn't add offset on mobile */
  .main-content-wrapper.sidebar-collapsed {
    margin-left: 0;
  }

  /* Top bar responsive */
  .top-bar-content {
    padding: 16px 20px;
  }

  .notification-dropdown {
    width: 320px;
    right: -20px;
  }

  .dashboard-main {
    padding: 20px 16px;
    gap: 16px;
  }

  .dashboard-stats {
    flex-direction: column;
    gap: 12px;
  }

  .dashboard-stat-icon {
    min-width: 50px;
  }

  .dashboard-stat-card {
    width: 100%;
    min-width: auto;
    flex: none;
    height: auto;
  }

  .dashboard-actions {
    flex-direction: column-reverse;
    gap: 12px;
    align-items: stretch;
  }

  .dashboard-search-container {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .dashboard-create-btn {
    width: 95%;
    justify-content: center;
  }

  .dashboard-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  }

  .dashboard-table-header-row,
  .dashboard-table-row-content {
    display: flex;
    align-items: center;
  }

  /* Hide table header on mobile */
  .dashboard-table-header {
    display: none;
  }

  /* Convert table to card layout */
  .dashboard-table-container {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

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

  .dashboard-table-row {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--stroke);
    margin-bottom: 0;
  }

  .dashboard-table-row-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  /* Card row styling */
  .dashboard-table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
    min-width: auto;
    flex: none;
  }

  .dashboard-table-cell::before {
    content: attr(data-label);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--body-small-size);
    color: var(--primary-text);
    flex-shrink: 0;
  }

  /* Position cell */
  .dashboard-table-cell.position::before {
    content: "Position";
  }

  .dashboard-table-cell.position .dashboard-table-position {
    font-weight: 600;
    color: var(--dark-primary);
    text-align: right;
  }

  /* Status cell */
  .dashboard-table-cell.status::before {
    content: "Status";
  }

  .dashboard-table-cell.status .dashboard-status-dropdown {
    margin-left: auto;
  }

  /* Start date cell */
  .dashboard-table-cell.start-date::before {
    content: "Start date";
  }

  .dashboard-table-cell.start-date .dashboard-table-date {
    text-align: right;
    color: var(--primary-text);
  }

  /* End date cell */
  .dashboard-table-cell.end-date::before {
    content: "End date";
  }

  .dashboard-table-cell.end-date .dashboard-table-date {
    text-align: right;
    color: var(--primary-text);
  }

  /* Actions cell */
  .dashboard-table-cell.actions::before {
    content: none;
  }

  .dashboard-table-cell.actions {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
  }

  .dashboard-delete-btn {
    width: 24px;
    height: 24px;
  }

  /* Remove scroll indicator */
  .dashboard-table-wrapper::after {
    display: none;
  }

  .auth-card {
    margin: 20px;
    padding: 30px;
    max-width: 90vw;
  }

  .auth-input-group,
  .auth-input,
  .auth-button {
    width: 100%;
    max-width: 350px;
  }

  .auth-logo {
    width: 240px;
    height: auto;
  }

  .sidebar-toggle {
    display: none;
  }

  .sidebar.collapsed {
    width: 100% !important;
  }

  /* Hide desktop sidebar elements */
  .sidebar-top,
  .sidebar-bottom,
  .sidebar-toggle {
    display: none;
  }

  /* Mobile Bottom Navigation */
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 16px;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--primary-text);
    transition: all 0.2s ease;
    border-radius: 8px;
    min-width: 60px;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: var(--primary-color);
    background: var(--blue-light);
  }

  .mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
  }

  .mobile-nav-text {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
  }

  /* Create Job Button Special Styling */
  .mobile-nav-item.create-job {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
  }

  .mobile-nav-item.create-job:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 88, 249, 0.3);
  }

  .mobile-nav-item.create-job .mobile-nav-icon {
    filter: brightness(0) invert(1);
  }

  .dashboard-stat-content {
    width: 100%;
    align-items: flex-start;
  }

  .dashboard-stat-row {
    width: 100%;
  }

  .dashboard-stat-info {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .dashboard-stat-number {
    font-size: 20px;
  }

  .dashboard-search-input {
    padding: 8px 16px 8px 48px;
  }
}

/* ===== CREATE JOB MODAL STYLES =====  */

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-container {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-family);
  font-weight: var(--h6-weight);
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
  color: var(--dark-primary);
  margin: 0;
}

.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background: var(--gray-light);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--primary-text);
}

/* Modal Body */
.modal-body {
  padding: 32px;
}

/* Job Creation Options */
.job-creation-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 2px solid var(--stroke);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.job-option:hover {
  border-color: var(--primary-color);
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 88, 249, 0.15);
}

.job-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-option-icon.manual {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.job-option-icon.upload {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.job-option-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.job-option-content {
  flex: 1;
}

.job-option-title {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  line-height: var(--body-large-line-height);
  color: var(--dark-primary);
  margin: 0 0 8px 0;
}

.job-option-description {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
  color: var(--primary-text);
  margin: 0;
}

.job-option-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary-text);
  transition: transform 0.2s ease;
}

.job-option:hover .job-option-arrow {
  transform: translateX(4px);
  color: var(--primary-color);
}

/* Multi-step Form Styles */
.multi-step-form {
  width: 100%;
}

.form-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 20px;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--stroke);
  color: var(--primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-small-size);
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
}

.form-step.active .step-number {
  background: var(--primary-color);
  color: var(--white);
}

.form-step.completed .step-number {
  background: var(--primary-color);
  color: var(--white);
}

.step-label {
  font-family: var(--font-family);
  font-weight: var(--body-small-weight);
  font-size: var(--body-small-size);
  line-height: var(--body-small-line-height);
  color: var(--primary-text);
  text-align: center;
}

.form-step.active .step-label {
  color: var(--primary-color);
  font-weight: var(--body-medium-weight);
}

/* Form Content */
.form-content {
  margin-bottom: 32px;
}

.form-section {
  display: none;
}

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

.form-section-title {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  line-height: var(--body-large-line-height);
  color: var(--dark-primary);
  margin: 0 0 8px 0;
}

.form-section-description {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
  color: var(--primary-text);
  margin: 0 0 24px 0;
}

.col-1 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Form Fields */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-col {
  flex: 1;
}

.form-col-half {
  flex: 0 0 calc(50% - 10px);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-small-size);
  color: var(--dark-primary);
}

.form-label.required::after {
  content: ' *';
  color: #dc3545;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: var(--body-medium-size);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(55, 88, 249, 0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--secondary-text);
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.checkbox-item label,
.radio-item label {
  margin: 0;
  cursor: pointer;
  font-weight: var(--body-medium-weight);
}

/* Form Actions */
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--stroke);
}

.form-actions-left {
  display: flex;
  gap: 12px;
}

.form-actions-right {
  display: flex;
  gap: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-text);
  border: 1px solid var(--stroke);
}

.btn-outline:hover {
  background: var(--gray-light);
  border-color: var(--gray-medium);
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--stroke);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--gray-light);
}

.upload-area:hover {
  border-color: var(--primary-color);
  background: var(--blue-light);
}

.upload-area.dragover {
  border-color: var(--primary-color);
  background: var(--blue-light);
  transform: scale(1.02);
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary-color);
}

.upload-title {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  line-height: var(--body-large-line-height);
  color: var(--dark-primary);
  margin: 0 0 8px 0;
}

.upload-description {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
  color: var(--primary-text);
  margin: 0 0 16px 0;
}

.upload-formats {
  font-family: var(--font-family);
  font-weight: var(--body-small-weight);
  font-size: var(--body-small-size);
  line-height: var(--body-small-line-height);
  color: var(--secondary-text);
  margin: 0;
}

/* File Input Hidden */
.file-input {
  display: none;
}

/* Success States */
.success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--green-light);
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  margin-bottom: 20px;
}

.success-icon {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}

.success-text {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  color: var(--green-dark);
  margin: 0;
}

/* Error States */
.error-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8d7da;
  border: 1px solid #dc3545;
  border-radius: 8px;
  margin-bottom: 20px;
}

.error-icon {
  width: 20px;
  height: 20px;
  color: #dc3545;
}

.error-text {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  color: #dc3545;
  margin: 0;
}

/* Loading States */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--stroke);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Modal */
@media (max-width: 767.9px) {
  .modal-container {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header {
    padding: 20px 24px;
  }

  .modal-body {
    padding: 24px;
  }

  .form-steps {
    padding: 0 10px;
    margin-bottom: 32px;
  }

  .step-label {
    font-size: 12px;
  }

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

  .form-col-half {
    flex: 1;
  }

  .form-actions {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .form-actions-left,
  .form-actions-right {
    width: 100%;
    justify-content: center;
  }

  .job-option {
    padding: 20px;
  }

  .job-option-icon {
    width: 40px;
    height: 40px;
  }

  .job-option-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== SP
ECIFIC CREATE JOB MODAL STYLES ===== */

/* Override modal styles for create job modal */
.modal-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-container {
  max-width: 640px;
  width: 95%;
}

.modal-header {
  background: var(--white);
  border-bottom: 1px solid var(--stroke);
}

.modal-title {
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  color: var(--dark-primary);
}

.modal-close {
  color: var(--primary-text);
}

.modal-close:hover {
  color: var(--primary-color);
  background: var(--gray-light);
}

/* Job Creation Options Specific Styles */
.job-creation-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 2px solid var(--stroke);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  background: var(--white);
}

.job-option:hover {
  border-color: var(--primary-color);
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 88, 249, 0.15);
  color: inherit;
  text-decoration: none;
}

.job-option-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.job-option-icon.manual {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.job-option-icon.upload {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.job-option:hover .job-option-icon {
  transform: scale(1.1);
}

.job-option-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.job-option-content {
  flex: 1;
  min-width: 0;
}

.job-option-title {
  font-family: var(--font-family);
  font-weight: var(--body-large-weight);
  font-size: var(--body-large-size);
  line-height: var(--body-large-line-height);
  color: var(--dark-primary);
  margin: 0 0 8px 0;
}

.job-option-description {
  font-family: var(--font-family);
  font-weight: var(--body-medium-weight);
  font-size: var(--body-medium-size);
  line-height: var(--body-medium-line-height);
  color: var(--primary-text);
  margin: 0;
}

.job-option-arrow {
  width: 24px;
  height: 24px;
  color: var(--primary-text);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.job-option:hover .job-option-arrow {
  transform: translateX(4px);
  color: var(--primary-color);
}

/* Animation improvements */
.modal-overlay.active {
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active .modal-container {
  animation: slideUp 0.3s ease;
}

#listingBody .col.status {
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mobile responsive for create job modal */
@media (max-width: 767.9px) {
  .modal-container {
    width: 95%;
    margin: 20px;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .job-option {
    padding: 20px;
    gap: 16px;
  }

  .job-option-icon {
    width: 48px;
    height: 48px;
  }

  .job-option-icon svg {
    width: 24px;
    height: 24px;
  }

  .job-option-title {
    font-size: var(--body-medium-size);
  }

  .job-option-description {
    font-size: var(--body-small-size);
  }
}

/* / *=====CREATE JOB MODAL STYLES (EXACT DESIGN MATCH)=====*/
*/

/* Modal Overlay */
.create-job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

/* Modal Container */
.create-job-modal {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.create-job-modal-content {
  padding: 40px;
}

/* Modal Header */
.create-job-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.create-job-modal-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--dark-primary);
  margin: 0;
}

.create-job-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  color: #9CA3AF;
}

/* Modal Description */
.create-job-modal-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #9CA3AF;
  margin: 0 0 40px 0;
}

/* Modal Actions */
.create-job-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.create-job-btn-cancel {
  background: transparent;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
}

.create-job-btn-cancel:hover {
  border-color: #D1D5DB;
  background: #F9FAFB;
}

.create-job-btn-continue {
  background: #3B82F6;
  border: 2px solid #3B82F6;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.5;
}

.create-job-btn-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.create-job-btn-continue.active {
  opacity: 1;
}

.create-job-btn-continue.active:hover {
  background: #2563EB;
  border-color: #2563EB;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .create-job-options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .create-job-option-card {
    min-height: auto;
    padding: 24px 20px;
  }
}

@media (max-width: 767.9px) {
  .create-job-modal {
    width: 95%;
    margin: 20px;
  }

  .create-job-modal-content {
    padding: 24px;
  }

  .create-job-modal-title {
    font-size: 24px;
    line-height: 32px;
  }

  .create-job-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .create-job-btn-cancel,
  .create-job-btn-continue {
    width: 100%;
    justify-content: center;
  }
}

/* * ===== ORIGINAL CREATE JOB MODAL STYLES ===== */
*/

/* Modal Overlay */
.create-job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  margin: 0;
  padding: 0;
}

/* Modal Container */
.create-job-modal {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  margin: 0;
}

.create-job-modal-content {
  padding: 40px;
}

/* Modal Header */
.create-job-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.create-job-modal-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: var(--dark-primary);
  margin: 0;
}

.create-job-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

/* Modal Description */
.create-job-modal-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-text);
  margin: 0 0 32px 0;
}

/* Job Creation Options */
.create-job-options {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.create-job-option {
  background: var(--white);
  border: 2px solid var(--stroke);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.create-job-option.selected,
.create-job-option:hover {
  background: #F7FFFF;
}

/* Per-option hover backgrounds for Create Job options */
#manual-option:hover {
  background: #F7FFFF;
}

#upload-option:hover {
  background: #FFFCF6;
}

#ai-option:hover {
  background: #FCF7FF;
}

/* Per-option selected backgrounds for Create Job options */
#manual-option.selected {
  background: #F7FFFF;
}

#upload-option.selected {
  background: #FFFCF6;
}

#ai-option.selected {
  background: #FCF7FF;
}

.create-job-option-content {
  width: 100%;
}

.create-job-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.create-job-option-header img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.create-job-option-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-primary);
  margin: 0;
}

.create-job-option-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-text);
  margin: 0;
}

/* Content Sections */
#manualContent.create-job-content-section {
  border-radius: 15px;
  border: 1px solid #CED4DA;
  background: #F7FFFF;
  padding: 15px;
}

#uploadContent.create-job-content-section {
  border: 1px solid #CED4DA;
  margin-bottom: 24px;
  padding: 20px;
  background: #FFFCF6;
  border-radius: 12px;
}

#aiContent.create-job-content-section {
  background: #FCF7FF;
  border: 1px solid #CED4DA;
  padding: 15px;
  border-radius: 15px;
}

.create-job-content-info {
  width: 100%;
}

.create-job-content-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-primary);
  margin: 0 0 10px 0;
}

.create-job-content-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-text);
  margin: 0;
}

/* AI Input Section */
.create-job-ai-input {
  margin-bottom: 20px;
}

.create-job-ai-textarea-field {
  width: 100%;
  min-height: 35px;
  padding: 12px 16px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-primary);
  background: var(--white);
  resize: none;
  transition: border-color 0.2s ease;
}

.create-job-ai-textarea-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(55, 88, 249, 0.1);
}

/* Prompt Suggestion */
.create-job-prompt-suggestion-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-primary);
  margin: 0 0 12px 0;
}

.create-job-prompt-suggestion-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--primary-text);
  margin: 0 0 12px 0;
  padding: 0 15px;
}

.create-job-prompt-suggestion-note {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--secondary-text);
  margin: 0;
}

/* File Upload Section */
.create-job-file-upload-content {
  width: 100%;
}

.create-job-file-upload-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-primary);
  margin: 0 0 16px 0;
}

.create-job-file-upload-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 2px dashed var(--stroke);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.create-job-file-upload-area:hover {
  background: #FFFCF6;
}

.create-job-file-upload-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-text);
  margin: 0;
  cursor: pointer;
}

.create-job-file-upload-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--secondary-text);
  margin: 0;
}

/* Modal Actions */
.create-job-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 24px;
}

.create-job-modal-cancel {
  min-width: 153px;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 40px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--primary-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.create-job-modal-cancel:hover {
  border-color: var(--gray-medium);
  background: var(--gray-light);
}

.create-job-modal-continue {
  min-width: 166px;
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
  border: none;
  border-radius: 40px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.create-job-modal-continue:disabled {
  background: var(--gray-medium);
  color: var(--secondary-text);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 767.9px) {
  .create-job-modal {
    width: 95%;
    margin: 20px;
  }

  .create-job-modal-content {
    padding: 24px;
  }

  .create-job-modal-title {
    font-size: 24px;
    line-height: 32px;
  }

  /* Stack options vertically on mobile */
  .create-job-options {
    flex-direction: column;
  }

  /* Show Continue above Cancel on mobile */
  .create-job-modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }

  .create-job-modal-cancel,
  .create-job-modal-continue {
    width: 100%;
    justify-content: center;
  }
}

/* Ad
ditional Modal Centering Fix */
.create-job-modal-overlay {
  /* Force perfect centering */
  display: none !important;
}

.create-job-modal-overlay[style*="flex"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure modal appears above sidebar */
.create-job-modal-overlay {
  z-index: 1002 !important;
}

/* Alternative centering method */
.create-job-modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal animation */
.create-job-modal {
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Force modal to cover entire viewport */
.create-job-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 9999 !important;
  margin: 0 !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  background: #000000ab;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* To
oltips for collapsed settings items */
.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item {
  position: relative;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: var(--body-small-size);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #1f2937;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item:hover::after,
.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item:hover::before {
  opacity: 1;
  visibility: visible;
}

.sidebar.collapsed .sidebar-settings-content .sidebar-bottom-item:hover {
  background-color: var(--gray-light);
}

/* ===== LISTING: STATUS TABS ===== */
.status-tabs {
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 4px 0 8px;
  border-bottom: 1px solid #DFE4EA; /* default baseline */
}

.status-tab {
  background: none;
  border: none;
  padding: 18px 30px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #6b7280; /* default text */
  cursor: pointer;
  font-weight: 500;
  position: relative; /* for underline */
}

.status-tab .label {
  font-size: 16px;
  font-weight: 500;
}

.status-tab .count {
  background: #E5E7EB;
  color: #6b7280;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
}

/* Active tab styles */
.status-tab.active {
  color: #1C3FB7;
  font-weight: 500;
}

.status-tab.active .count {
  background: #E1E8FF;
  color: #1C3FB7;
}

/* Underline: default none; active shows gradient as 2px "border-bottom" */
.status-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px; /* sit on top of container baseline */
  height: 2px;
  background: transparent; /* default */
}

.status-tab.active::after {
  background: linear-gradient(90deg, #37CFF9 0%, #000B7B 100%);
}

/* ===== CANDIDATE DETAIL PAGE ===== */
.candidate-page {
  margin: 0 auto;
}

.back-link-muted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1C3FB7;
  text-decoration: none;
  margin-bottom: 16px;
}
.back-link-muted span {
  color: #8899A8;
}

.candidate-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.candidate-card-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-block;
}

.candidate-name {
  font-weight: 600;
  color: #111827;
}

.candidate-title {
  color: #6b7280;
  font-size: 14px;
}

.candidate-meta {
  display: flex;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
  margin-top: 6px;
}

/* meta items with small icons */
.candidate-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.candidate-meta .icon-sm { flex: 0 0 auto; }

.candidate-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.resume-link {
  border-radius: 40px;
}

/* native select for candidate status */
.status-select { position: relative; }
.status-dropdown-select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  line-height: 1.2;
  color: #111827;
  cursor: pointer;
}
.status-select::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 10px;
  height: 6px;
  background: url(/images/ico-chevron.png) no-repeat center/contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.dropdown { position: relative; }

.status-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #E5E7EB;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

/* dropdown menu */
.candidate-card .dropdown { position: relative; }
.status-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 6px;
  display: none;
  z-index: 10;
}
.status-dropdown-menu .menu-item {
  padding: 8px 10px;
  border-radius: 8px;
  color: #374151;
  cursor: pointer;
}
.status-dropdown-menu .menu-item:hover { background: #F3F4F6; }
.status-dropdown-menu .menu-item.selected { background: linear-gradient(180deg,#4F83FF,#123CDA); color: #fff; }
.candidate-card .dropdown:hover .status-dropdown-menu { display: block; }

.score-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin: 18px 0;
}

.score-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px;
}

/* score card with icon */
.score-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.score-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.score-card .icon.orange { background: #FFF4E6; color: #F59E0B; }
.score-card .icon.purple { background: #F3E8FF; color: #7C3AED; }
.score-card .icon.green  { background: #ECFDF5; color: #10B981; }

.score-label {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 6px;
}

.score-value {
  font-weight: 700;
  font-size: 28px;
}

.video-box {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
}

.evaluation-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.section-title.with-icon { display: inline-flex; align-items: center; gap: 8px; }
.section-title.with-icon.info { color: #1C3FB7; }

.muted { color: #6b7280; line-height: 1.6; }
.mb-10 { margin-bottom: 10px; }

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.qa-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px;
}

.qa-subtitle {
  color: #111827;
  font-weight: 600;
  margin-bottom: 6px;
}

.assessment-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 22px 0 10px;
}

.assessment-header .section-heading {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.assessment-header .period {
  color: #6b7280;
  font-size: 14px;
}

.resume-link .btn-icon { margin-right: 6px; }

/* ===== MODAL (GLOBAL) ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 25, 40, 0.45);
  display: none; /* toggled to flex in JS */
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-backdrop[aria-hidden="false"] {
  display: flex;
}

.logout-modal {
  width: 100%;
  max-width: 530px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 50px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: #e5e7eb;
}

.modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.modal-title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #111827;
  text-align: center;
}

.modal-underline {
  height: 3px;
  width: 72px;
  margin: 12px auto 14px;
  border-radius: 999px;
  background: #9D33DB;
}

.modal-text {
  margin: 18px 0 28px 0;
  color: var(--primary-text);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
}

.btn-primary:hover {
  filter: brightness(0.98);
}

.btn-secondary {
  background: #f3f4f6;
  color: #111827;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

/* --- Modal-specific button styles (logout modal) --- */
.logout-modal .btn-primary {
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
  min-width: 136px;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 16px;
}

.logout-modal .btn-primary:hover,
.logout-modal .btn-primary:focus {
  filter: none;
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
}

.logout-modal .btn-secondary {
  border: 1px solid #8899A8;
  background: transparent;
  color: #8899A8;
  border-radius: 100px;
  min-width: 166px;
  padding: 12px 24px;
  font-size: 16px;
}

.logout-modal .btn-secondary:hover,
.logout-modal .btn-secondary:focus {
  background: transparent;
  color: #8899A8;
  border-color: #8899A8;
}

/* --- Change Password Modal --- */
.change-password-modal {
  width: 100%;
  max-width: 530px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 50px;
  position: relative;
}

.change-password-modal .modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #111827;
}

.change-password-modal .modal-underline {
  height: 3px;
  width: 72px;
  margin: 12px auto 27px;
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
}

.change-password-modal .modal-text { /* if ever used */
  margin: 18px 0 28px 0;
  color: var(--primary-text);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.change-password-modal .modal-field {
  margin-bottom: 26px;
}

.change-password-modal label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #111827;
}

.change-password-modal .input-wrapper {
  position: relative;
}

.change-password-modal .modal-input {
  width: 100%;
  border: 1px solid #E5E7EB;
  background: #F3F4F6;
  color: #111827;
  border-radius: 10px;
  padding: 12px 44px 12px 14px;
  font-size: 14px;
  outline: none;
}

.change-password-modal .toggle-visibility {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.change-password-modal .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 35px;
}

/* Buttons inside change password modal */
.change-password-modal .btn-primary {
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
  min-width: 136px;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 16px;
}

.change-password-modal .btn-primary:hover,
.change-password-modal .btn-primary:focus {
  filter: none;
  background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
}

.change-password-modal .btn-secondary {
  border: 1px solid #8899A8;
  background: transparent;
  color: #8899A8;
  border-radius: 100px;
  min-width: 166px;
  padding: 12px 24px;
  font-size: 16px;
}

.change-password-modal .btn-secondary:hover,
.change-password-modal .btn-secondary:focus {
  background: transparent;
  color: #8899A8;
  border-color: #8899A8;
}

/* ===== FAQ & HELP PAGE ===== */
.faq-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}

.faq-wrapper {
  padding: 0 90px;
}

.faq-title {
  font-weight: var(--h6-weight);
  color: var(--dark-primary);
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
}

.section-title {
  margin: 0 0 4px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-primary);
}

.section-title.blue { color: var(--primary-dark); }

.section-subtitle {
  margin: 0 0 16px 0;
  color: #637381;
  font-size: 16px;
}

.faq-section {
  margin-bottom: 24px;
}

.faq-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#faqAccordion .accordion-trigger {
  gap: 75px;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  box-shadow: var(--shadow-1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--dark-primary);
}

.accordion-trigger .chevron-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(48, 86, 211, 0.06); /* #3056D3 @ 60% */
}

.accordion-trigger .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.accordion-item.open .accordion-trigger .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 18px 18px 18px;
  color: var(--primary-text);
  font-size: 14px;
}

.accordion-item.open .accordion-content { display: block; }

.help-section .help-form {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  box-shadow: var(--shadow-1);
  padding: 20px;
}

.help-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.help-form label {
  font-size: 14px;
  color: var(--dark-primary);
}

.help-form input,
.help-form textarea {
  width: 100%;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  color: #111827;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.help-form textarea { resize: vertical; }

.help-form .form-actions {
  display: flex;
  justify-content: flex-end;
  border-top: none;
}

/* ===== FAQ Responsive ===== */
@media (max-width: 1024px) {
  .faq-page { padding: 32px; }
  .faq-wrapper { padding: 0 40px; }
  #faqAccordion .accordion-trigger { gap: 40px; }
}

@media (max-width: 768px) {
  .faq-page { padding: 24px; }
  .faq-wrapper { padding: 0 20px; }
  .faq-title { font-size: 20px; line-height: 28px; }
  .section-title { font-size: 20px; line-height: 28px; }
  .section-subtitle { font-size: 14px; }
  .accordion-trigger { padding: 14px 16px; font-size: 15px; justify-content: space-between; }
  .accordion-trigger .chevron-wrap { order: 2; }
  .accordion-trigger .chevron-wrap { width: 24px; height: 24px; border-radius: 6px; }
  #faqAccordion .accordion-trigger { gap: 16px; }
}

@media (max-width: 480px) {
  .faq-page { padding: 16px; }
  .faq-wrapper { padding: 0 12px; }
  .accordion-content { font-size: 13px; }
  .help-section .help-form { padding: 16px; }
}

/* ===== Notifications Page ===== */
.notifications-page {
  padding: 40px 20px;
}

.notifications-header .page-title {
  margin: 0 0 16px 0;
  font-weight: 700;
  font-size: 24px;
  color: #414141;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notification-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(166, 175, 195, 0.4);
  padding: 18px;
  transition: background-color 0.2s;
}

.notification-card + .notification-card {
  margin-top: 10px;
}

.notification-card:hover {
  background-color: #f9fafb;
}

.notification-card.unread {
  background-color: #eff6ff;
}

.notification-icon {
  width: 65px;
  height: 65px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.noti-bell-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notification-icon.purple { background: rgba(159, 58, 219, 0.10); }
.notification-icon.orange { background: rgba(249, 122, 43, 0.10); }
.notification-icon.teal { background: rgba(40, 156, 152, 0.10); }
.notification-icon img { width: 31px; height: 31px; }

.notification-body { display: flex; flex-direction: column; gap: 8px; }
.notification-title {
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
  font-size: 14px;
}
.notification-text {
  margin: 0;
  color: #637381;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 1024px) {
  .notifications-page { padding: 40px; }
}

/* ===== Notification Detail ===== */
.notification-detail-page { padding: 40px 20px; }
.notification-detail-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.notification-detail-header .btn-back { color: #1C3FB7; text-decoration: none; font-size: 14px; }
.notification-detail-header .page-title { margin: 0; font-weight: 700; font-size: 24px; color: #414141; }

.notification-detail-card {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(166,175,195,0.4);
  padding: 18px;
}
.notification-detail-icon { width: 34px; height: 34px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; }
.notification-detail-icon.purple { background: rgba(159, 58, 219, 0.10); }
.notification-detail-icon.orange { background: rgba(249, 122, 43, 0.10); }
.notification-detail-icon.teal { background: rgba(40, 156, 152, 0.10); }
.notification-detail-icon img { width: 18px; height: 18px; }
.notification-detail-body { display: flex; flex-direction: column; gap: 6px; }
.notification-detail-body .detail-title { margin: 0; font-weight: 600; font-size: 18px; line-height: 26px; color: #1C3FB7; }
.notification-detail-body .detail-time { font-size: 12px; color: #8899A8; }
.notification-detail-body .detail-text { margin: 0; color: #637381; font-size: 14px; line-height: 22px; }

#experiences-container .experience-gp + .experience-gp {
  margin-top: 25px;;
}

.duration-row {
    padding: 20px 0;
}

@media (min-width: 1024px) { .notification-detail-page { padding: 40px; } }

/* ===== Manual Job Creation: Step 1 (Mobile) ===== */
@media (max-width: 767.9px) {
  .manual-job-creation .main-content { padding: 16px; }

  .manual-job-creation #step1 .step-header h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #111827;
    margin: 0 0 6px 0;
  }

  .manual-job-creation #step1 .step-header p {
    font-size: 14px;
    line-height: 22px;
    color: #8899A8;
    margin: 0 0 16px 0;
  }

  .manual-job-creation #step1 .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .manual-job-creation #step1 .form-group label {
    font-size: 14px;
    line-height: 20px;
    color: #414141;
    margin-bottom: 8px;
    display: block;
  }

  .manual-job-creation #step1 .form-control {
    width: 100%;
    background: #F3F5F7;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 22px;
    color: #414141;
  }

  .manual-job-creation #step1 .form-control::placeholder {
    color: #A0AEC0;
  }

  /* Ensure selects and date inputs appear consistent */
  .manual-job-creation #step1 select.form-control,
  .manual-job-creation #step1 input[type="date"].form-control {
    appearance: none;
    -webkit-appearance: none;
    background-color: #F3F5F7;
    padding-right: 36px;
    height: 48px;
  }

  /* Remote position card */
  .manual-job-creation #step1 .remote-card {
    margin-top: 8px;
    border: 1px solid #CED4DA;
    border-radius: 12px;
    padding: 12px;
    background: #FFFFFF;
    width: 100%;
  }

  .manual-job-creation #step1 .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
  }

  .manual-job-creation #step1 .checkbox-title {
    font-weight: 600;
    color: #414141;
  }

  .manual-job-creation #step1 .checkbox-description {
    margin: 0 0 0 34px;
    font-size: 12px;
    line-height: 18px;
    color: #8899A8;
  }
}

/* ===== Manual Job Creation: Step 2 (Mobile) ===== */
@media (max-width: 767.9px) {
  .manual-job-creation #step2 .step-header h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #111827;
    margin: 16px 0 6px 0;
  }

  .manual-job-creation #step2 .step-header p {
    font-size: 14px;
    line-height: 22px;
    color: #8899A8;
    margin: 0 0 16px 0;
  }

  .manual-job-creation #step2 .form-group { margin-bottom: 16px; }

  .manual-job-creation #step2 .form-group label {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280; /* slightly muted like mock */
    margin-bottom: 8px;
    display: block;
  }

  .manual-job-creation #step2 textarea.form-control {
    width: 100%;
    background: #F3F5F7;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    line-height: 22px;
    color: #414141;
    min-height: 140px;
  }

  .manual-job-creation #step2 textarea.form-control::placeholder {
    color: #A0AEC0;
  }
}

/* ===== Manual Job Creation: Step 3 (Mobile) ===== */
@media (max-width: 767.9px) {
  .manual-job-creation #step3 .step-header h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #111827;
    margin: 16px 0 6px 0;
  }

  .manual-job-creation #step3 .step-header p {
    font-size: 14px;
    line-height: 22px;
    color: #8899A8;
    margin: 0 0 16px 0;
  }

  .manual-job-creation #step3 .form-group { margin-bottom: 16px; }

  .manual-job-creation #step3 .form-group label {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    margin-bottom: 8px;
    display: block;
  }

  .manual-job-creation #step3 textarea.form-control {
    width: 100%;
    background: #F3F5F7;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    line-height: 22px;
    color: #414141;
    min-height: 140px;
  }

  .manual-job-creation #step3 textarea.form-control::placeholder {
    color: #A0AEC0;
  }
}

/* ===== Manual Job Creation: Step 5 (Mobile) ===== */
@media (max-width: 767.9px) {
  /* Card containers */
  .manual-job-creation #step5 .section-card {
    background: #FFFFFF;
    border: 1px solid #E5EAF2;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(166, 175, 195, 0.2);
    margin-bottom: 16px;
  }

  .manual-job-creation #step5 .section-head .title {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #111827;
    margin: 0 0 6px 0;
  }
  .manual-job-creation #step5 .section-head .subtitle {
    font-size: 14px;
    line-height: 22px;
    color: #8899A8;
    margin: 0 0 12px 0;
  }

  /* Grid to single column */
  .manual-job-creation #step5 .two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .manual-job-creation #step5 .form-group label {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    margin-bottom: 8px;
    display: block;
  }

  .manual-job-creation #step5 .form-control {
    width: 100%;
    background: #F3F5F7;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 22px;
    color: #414141;
  }
  .manual-job-creation #step5 .form-control::placeholder { color: #A0AEC0; }

  .manual-job-creation #step5 input[type="date"].form-control {
    appearance: none;
    -webkit-appearance: none;
    background-color: #F3F5F7;
    padding-right: 36px;
    height: 48px;
  }

  /* Switches */
  .manual-job-creation #step5 .switch-row {
    display: flex;
   
    gap: 12px;
    margin-top: 8px;
  }
  .manual-job-creation #step5 .switch-item { display: flex; align-items: center; gap: 10px; }
  .manual-job-creation #step5 .switch-label { color: #414141; font-size: 14px; }

  /* Toggle visual */
  .manual-job-creation #step5 .toggle { display: inline-flex; align-items: center; }
  .manual-job-creation #step5 .toggle input { display: none; }
  .manual-job-creation #step5 .toggle span {
    position: relative;
    width: 42px;
    height: 24px;
    background: #E5EAF2;
    border-radius: 999px;
    transition: background 0.2s ease;
    display: inline-block;
  }
  .manual-job-creation #step5 .toggle span::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  .manual-job-creation #step5 .toggle input:checked + span { background: #1C3FB7; }
  .manual-job-creation #step5 .toggle input:checked + span::after { transform: translateX(18px); }
}

/* ===== Manual Job Creation: Step 6 (Mobile) ===== */
@media (max-width: 767.9px) {
  /* Toggle header */
  .manual-job-creation #step6 .accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: transparent;
    border: none;
    border-top: 1px solid #E5EAF2;
  }
  .manual-job-creation #step6 .accordion-toggle span strong {
    color: #1C3FB7;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
  }
  .manual-job-creation #step6 .accordion-toggle .chevron img { width: 16px; height: 16px; }

  /* Panel */
  .manual-job-creation #step6 .accordion-panel {
    padding: 0 16px 16px;
    border-bottom: 1px solid transparent;
  }
  .manual-job-creation #step6 .accordion-toggle[aria-expanded="true"] + .accordion-panel {
    border-bottom-color: #E5EAF2;
  }
  /* Do not draw bottom border for the last panel (JS adds .is-last) */
  .manual-job-creation #step6 .accordion-toggle[aria-expanded="true"] + .accordion-panel.is-last { border-bottom-color: transparent; }

  /* Content inside panel */
  .manual-job-creation #step6 .form-grid,
  .manual-job-creation #step6 .two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .manual-job-creation #step6 .form-group label {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    margin-bottom: 6px;
    display: block;
  }
  .manual-job-creation #step6 .form-control {
    width: 100%;
    background: #F3F5F7;
    border: 1px solid #E5EAF2;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 22px;
    color: #414141;
  }
  .manual-job-creation #step6 .form-control::placeholder { color: #A0AEC0; }

  /* Remote card adjustments */
  .manual-job-creation #step6 .remote-card { min-width: auto; width: 100%; }
  .manual-job-creation #step6 .checkbox-title { color: #6B7280; font-weight: 600; }
}

/* ===== Global: Form Navigation (Mobile) ===== */
@media (max-width: 767.9px) {
  /* Hide Previous button on mobile */
  .form-navigation #prevBtn { display: none !important; }

  /* Layout: split actions left/right */
  .form-navigation { gap: 12px; }
  .form-navigation .nav-left { display: none !important; }
  .form-navigation .nav-right {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  /* Buttons fill half width with pill shape */
  .form-navigation .nav-right .btn {
    flex: 1 1 0;
    border-radius: 999px;
    padding: 12px 20px;
    min-height: 44px;
  }

  /* Draft = outlined style */
  .form-navigation .nav-right .btn-draft {
    border: 1px solid #000B7B;
    color: #1C3FB7;
  }

  /* Next = gradient filled style */
  .form-navigation .nav-right .btn-next {
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #37CFF9 -28.93%, #000B7B 136.96%);
  }
}
