.brand .logo img,
.footer-logo img {
  height: 100%;
  display: block;
  object-fit: contain;
}
.container,
body {
  min-height: 100vh;
}
.all-categories-link,
.apply-button,
.category-chip,
.footer-menu a,
.site-nav a {
  text-decoration: none;
}
.site-header {
  width: 100%;
  background: linear-gradient(90deg, #134a1a, #1da1f2);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  top: 0;
  z-index: 60;
}
.main-content,
.sidebar {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.site-header .inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 12px;
}
.brand,
.brand .logo {
  align-items: center;
  display: flex;
}
.brand {
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}
.brand .logo {
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  height: 40px;
  aspect-ratio: 3.38/1;
  width: auto;
}
.brand .logo img {
  width: auto;
}
.site-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-nav a {
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo {
  height: 38px;
  aspect-ratio: 3.38/1;
  width: auto;
  display: flex;
  align-items: center;
}
.footer-logo img {
  width: auto;
}
.site-footer {
  width: 100%;
  background: #0f1724;
  color: #cbd5e1;
  margin-top: 24px;
  padding: 20px 0;
}
.site-footer .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-menu {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #cbd5e1;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 16px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: linear-gradient(180deg, #134a1a, #0f3f18);
    flex-direction: column;
    padding: 12px 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-header .inner {
    position: relative;
  }
}
body {
  padding-top: 0;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}
.container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}
.sidebar {
  width: 380px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  height: calc(100vh - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 20px;
}
.search-form {
  padding: 20px;
  background: #1da1f2;
  color: #fff;
  transition: 0.3s;
}
.search-form.collapsed {
  max-height: 60px;
  overflow: hidden;
  cursor: pointer;
}
.search-form-toggle {
  display: none;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.search-form.collapsed .search-form-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-title-break,
.search-form.collapsed form {
  display: none;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #fff;
  font-size: 0.95rem;
  transition: 0.3s;
}
.job-card,
.pagination button {
  transition: 0.2s;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.5);
}
.search-summary {
  background: #f8fafc;
  padding: 15px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #64748b;
}
.search-summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.search-summary strong {
  color: #1e293b;
  font-weight: 600;
}
.job-list-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.loading {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.action-button.secondary.show,
.loading.active,
.see-detail.secondary.show,
.why-modal-backdrop.open {
  display: flex;
}
.loading i {
  color: #3498db;
}
.job-detail {
  height: 100%;
  overflow-y: auto;
}
.pagination {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.pagination button {
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  color: #64748b;
  font-weight: 500;
}
.pagination button:hover:not(:disabled) {
  background: #f8fafc;
  color: #1da1f2;
  border-color: #1da1f2;
}
.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.job-list {
  flex: 1;
  overflow-y: auto;
  background: #f8fafc;
}
.job-list::-webkit-scrollbar {
  width: 6px;
}
.job-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.job-card {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.detail-meta,
.job-detail {
  padding: 20px;
}
.job-card:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}
.job-card.active {
  background: #eff6ff;
  border-left: 4px solid #1da1f2;
}
.job-card .job-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.job-card .job-company {
  color: #1da1f2;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.job-card .job-info {
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.main-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.detail-header {
  margin-bottom: 24px;
}
.detail-title {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}
.detail-company {
  font-size: 1.2rem;
  color: #1da1f2;
  margin-bottom: 16px;
}
.detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2d2d2d;
}
.detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #2d2d2d;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.empty-state,
.loading {
  color: #64748b;
  text-align: center;
}
.detail-description p {
  margin-bottom: 14px;
}
.detail-description ol,
.detail-description ul {
  margin: 12px 0 16px 20px;
  padding-left: 18px;
}
.detail-description li {
  margin-bottom: 8px;
}
.detail-description h2,
.detail-description h3,
.detail-description h4 {
  margin: 5px 0;
  color: #1e293b;
}
.detail-actions {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 0 solid #e2e8f0;
}
.apply-button {
  display: inline-flex;
  align-items: center;
  background: #17d27c;
}
.apply-button:hover {
  background: #1d4ed8;
}
.loading {
  display: none;
  padding: 40px;
}
.loading i {
  font-size: 2rem;
  margin-bottom: 12px;
  animation: 1s linear infinite spin;
}
@keyframes spin {
  0%,
  from {
    transform: rotate(0);
  }
  100%,
  to {
    transform: rotate(360deg);
  }
}
.empty-state {
  padding: 10px;
}
.empty-state i {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #cbd5e1;
}
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    height: auto;
    position: static;
  }
  .job-list {
    max-height: 400px;
  }
  .main-content {
    margin-top: 20px;
  }
}
.see-detail.secondary {
  background: #fff;
  border-color: #0b78d1;
  margin-top: 8px;
  margin-bottom: 8px;
  display: none;
  color: #0b78d1;
}
.action-button,
.apply-button,
.search-button,
.see-detail {
  width: 100%;
  padding: 12px;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}
.search-button {
  background: #ff9a0e;
}
.search-button:hover {
  background: #333;
}
.see-detail {
  border: 1px solid #0b78d1;
}
.see-detail:hover {
  background: #1da1f2;
  color: #fff;
}
.action-button.secondary {
  margin-bottom: 8px;
  display: none;
  background: #6b7280;
  margin-top: 8px;
}
.action-button.secondary:hover {
  background: #4b5563;
}
.landing-hero-container {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 178, 255, 0.06),
    rgba(255, 156, 0, 0.03)
  );
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.landing-hero {
  max-width: 1100px;
  margin: 0 auto;
}
.landing-title,
.landing-title-h2 {
  font-family: BebasNeue, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.03;
  color: #0b78d1;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.landing-hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-col {
  flex: 1;
  min-width: 0;
}
.landing-title {
  font-size: 44px;
}
.landing-title-h2 {
  font-size: 30px;
}
.landing-title-main {
  display: block;
}
.in-hero.v2-style-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.search-form-inputs {
  display: flex;
  gap: 12px;
  flex: 1 1 600px;
  align-items: center;
}
.location-input,
.position-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 200px;
}
.input-label {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
}
.in-hero input[type="search"] {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e6eef8;
  background: #fff;
  font-size: 1rem;
  outline: 0;
  width: 100%;
  box-shadow: 0 1px 4px rgba(2, 6, 23, 0.03);
}
.search-button-container {
  flex: 0 0 auto;
}
.search-jobs-button {
  background: linear-gradient(90deg, #0bb2ff, #ff9c00);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11, 178, 255, 0.12);
}
.search-jobs-button:active {
  transform: translateY(1px);
}
.hero-cta-row {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.landing-upload-button {
  border: 1px solid rgba(3, 7, 18, 0.06);
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.why-lensa.simple-why {
  max-width: 1100px;
  margin: 10px auto 28px;
  padding: 18px 12px;
  background: 0 0;
}
.why-title h2 {
  color: #1e293b;
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.why-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.why-item {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 10px rgba(2, 6, 23, 0.04);
  text-align: center;
}
.why-item img {
  height: 72px;
  margin-bottom: 10px;
}
.why-item h4 {
  margin: 6px 0;
  color: #0b78d1;
}
.why-item p {
  color: #51606a;
  font-size: 0.95rem;
  margin: 0;
}
@media (max-width: 900px) {
  .landing-title {
    font-size: 34px;
  }
  .landing-title-h2 {
    font-size: 25px;
  }
  .landing-title-break {
    display: inline-block;
  }
  .search-form-inputs {
    flex-direction: column;
  }
  .search-button-container {
    width: 100%;
  }
  .landing-hero-container {
    padding: 20px;
  }
}
@media (max-width: 520px) {
  .landing-title {
    font-size: 26px;
  }
  .landing-title-h2 {
    font-size: 20px;
  }
  .why-grid {
    flex-direction: column;
  }
}
.why-learn-more {
  margin-top: 12px;
  background: 0 0;
  border: 1px solid rgba(11, 178, 255, 0.12);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  color: #0b78d1;
  background: linear-gradient(
    90deg,
    rgba(11, 178, 255, 0.06),
    rgba(255, 156, 0, 0.02)
  );
}
.why-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.why-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.28);
  overflow: hidden;
  transform: translateY(8px);
  transition: transform 0.18s, opacity 0.18s;
  opacity: 0;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.why-modal-backdrop.open .why-modal {
  opacity: 1;
  transform: translateY(0);
}
.why-modal .modal-header {
  padding: 16px 18px;
  border-bottom: 1px solid #eef3f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.why-modal .modal-title {
  font-weight: 800;
  color: #0b78d1;
  font-size: 1.125rem;
  margin: 0;
}
.why-modal .modal-body {
  padding: 18px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.5;
  overflow: auto;
}
.why-modal .modal-close {
  background: 0 0;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #64748b;
}
@media (max-width: 640px) {
  .pagination {
    flex-wrap: wrap;
  }
  .container {
    padding: 10px;
  }
  .job-detail {
    padding: 20px;
  }
  .detail-title {
    font-size: 1.5rem;
  }
  .detail-meta {
    grid-template-columns: 1fr;
  }
  .why-modal {
    max-width: 520px;
  }
  .why-grid {
    gap: 12px;
  }
  .why-item img {
    height: 60px;
  }
}
.popular-categories-section {
  max-width: 1100px;
  margin: 18px auto 30px;
  padding: 14px;
}
.popular-categories-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.popular-categories-section .section-header h3 {
  margin: 0;
  font-size: 1.125rem;
  color: #0b78d1;
  letter-spacing: -0.2px;
}
.all-categories-link {
  font-weight: 700;
  color: #0b78d1;
  background: 0 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(11, 178, 255, 0.12);
  transition: 0.15s;
}
.all-categories-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 178, 255, 0.08);
}
.popular-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.category-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
  border: 1px solid rgba(3, 7, 18, 0.04);
  transition: transform 0.12s, box-shadow 0.12s;
  color: #10293b;
}
.category-chip img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}
.category-chip span {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
}
.category-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}
.share-actions a:hover,
.time-box:hover {
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .popular-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .category-chip img {
    height: 36px;
    width: 36px;
  }
}
.schema-box {
  margin-top: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.schema-box h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-box h3,
.schema-item {
  margin-bottom: 14px;
  display: flex;
}
.schema-item {
  gap: 12px;
  align-items: flex-start;
}
.schema-item i {
  color: #1da1f2;
  font-size: 1rem;
  margin-top: 2px;
  width: 20px;
}
.schema-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1da1f2;
  font-weight: 700;
}
.schema-value {
  color: #000;
  display: inline-block;
  padding: 4px 10px;
  background-color: #f2f2f2;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.countdown-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.countdown-box h3 {
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(60px, 1fr));
  gap: 14px;
}
.time-box {
  background: #fff;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: transform 0.15s;
}
.time-box .num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  display: block;
  line-height: 1.2;
}
.time-box .label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 4px;
}
.countdown-timer.warning .time-box {
  border-color: #f59e0b;
  background: #fffbeb;
}
.countdown-timer.urgent .time-box {
  border-color: #dc2626;
  background: #fef2f2;
}
.countdown-timer.expired .time-box {
  background: #f3f4f6;
  color: #9ca3af;
}
.countdown-timer.expired .num {
  color: #9ca3af;
}
.schema-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  align-items: stretch;
}
.schema-left {
  display: flex;
  flex-direction: column;
}
.schema-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .schema-map {
    min-height: 220px;
  }
}
#job-map {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .schema-grid {
    grid-template-columns: 1fr;
  }
  .schema-map {
    height: 240px;
  }
}
.job-map-marker {
  width: 16px;
  height: 16px;
  background: #1da1f2;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 rgba(29, 161, 242, 0.4);
  animation: 1.8s infinite marker-pulse;
}
.job-map-marker::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(29, 161, 242, 0.35);
}
@keyframes marker-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.45);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(29, 161, 242, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(29, 161, 242, 0);
  }
}
.job-map-popup {
  min-width: 220px;
  font-family: inherit;
}
.job-map-popup .popup-company {
  font-weight: 700;
  color: #1da1f2;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.popup-apply-btn,
.share-actions a {
  align-items: center;
  color: #fff;
  text-decoration: none;
  display: flex;
}
.job-map-popup .popup-title {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.3;
}
.popup-apply-btn {
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #17d27c;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.popup-apply-btn:hover {
  background: #10b981;
}
#save-job-btn.saved {
  background: #facc15;
  color: #111827;
}
.share-actions {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.share-actions a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  justify-content: center;
  transition: transform 0.15s, opacity 0.15s;
}
.share-actions a:hover {
  opacity: 0.9;
}
.share-actions .whatsapp {
  background: #25d366;
}
.share-actions .linkedin {
  background: #0a66c2;
}
.share-actions .twitter {
  background: #000;
}
.share-actions .copy {
  background: #64748b;
}
.global-loading {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-loading-box {
  text-align: center;
  background: #fff;
  padding: 26px 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.global-loading-box i {
  font-size: 34px;
  color: #1da1f2;
  margin-bottom: 12px;
}
.d-none {
  display: none !important;
}

/* Category Description Styles */

.job-list {
  overflow-y: auto;
  max-height: calc(100vh - 340px);
}

.category-description {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 20px;
}
