/* ============================================================================
   ENHANCED JOB BROWSER STYLES (FULL FILE)
   ============================================================================ */


/* ============================================================================
   BREADCRUMBS
   ============================================================================ */
.job-browser{
  padding-bottom: 120px;
}
a.active-pjb-breadcrumbs{
  color: var(--button-bg) !important;
}
.pjb-breadcrumbs {
  font-size: 14px;
  color: #666;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}

.pjb-breadcrumbs a {
  color: #6f6f6f;
  text-decoration: underline;
  font-family: var(--inter);
  text-underline-offset: 2px;
}
.pjb-breadcrumbs a.active {
  color: #ed5a04;
}

.pjb-breadcrumbs a:hover {
  text-decoration: underline;
}

.pjb-breadcrumbs .sep {
  margin: 0 8px;
  color: #999;
}

.pjb-breadcrumbs .current {
  color: #333;
  font-weight: 600;
}

/* ============================================================================
   MAIN SEARCH FORM
   ============================================================================ */

.jb-browse-form {
  margin-bottom: 24px;
}

/* Primary Row: Profession, State, City */
.jb-primary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.jb-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 8px;
}

/* Secondary Row: Filter Buttons */
.jb-secondary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 20px;
}

.jb-filter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  gap: 6px;
  padding: 8px 16px;
  background: none;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  font-size: 12px;
  line-height: 150%;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s;
}

.jb-filter-btn:hover {
  background: #fff7ed;
  border-color: #ea580c;
}

.primary-count {
  background-color: rgb(234, 88, 12);
  color: rgb(255, 255, 255);
  display: none;
  min-width: 18px;
  height: 18px;
  padding-left: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 25px;
}

.jb-filter-btn .filter-count {
  background-color: #ea580c;
  color: #fff;
  display: none;
  min-width: 18px;
  height: 18px;
  padding-left: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 25px;
  justify-content: center;
}

.jb-filter-btn .filter-count[style*="display: inline"],
.jb-filter-btn .filter-count:not([style*="display: none"]) {
  display: inline-block;
}

.jb-clear-all {
  padding: 8px 16px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ea580c;
  cursor: pointer;
  margin-left: auto;
}

.jb-clear-all:hover {
  text-decoration: underline;
}

/* Filter Panels (dropdown content) */
.jb-filter-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-top: 8px;
  min-width: 280px;
}

.jb-filter-panel[hidden] {
  display: none;
}

/* Submit Button */
.jb-submit-wrap {
  margin-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}

.jb-search-btn {
  padding: 14px 60px;
  background: #ed5a04;
  border: none;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.jb-search-btn:hover {
  background: #c2410c;
}

/* ============================================================================
   TOM SELECT CUSTOMIZATION - CHIP DISPLAY
   ============================================================================ */

.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 18px 12px;
  min-height: 44px;
  cursor: pointer;
  transition: all 0.2s;
}

.ts-wrapper.focus .ts-control {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.ts-control-placeholder {
  color: #9ca3af;
  font-size: 14px;
}

/* Chip Display */
.ts-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.ts-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #ea580c;
  color: #fff;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

/* Dropdown */
.ts-dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
}

.ts-dropdown-content {
  max-height: 320px;
  overflow-y: auto;
}

.ts-dropdown .option {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.15s;
}

.ts-dropdown .option:hover {
  background: #f9fafb;
}

.ts-dropdown .option.active {
  background: #fff7ed;
  color: #ea580c;
}

/* Checkbox Options */
.ts-dropdown .option.ts-checked::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: #ea580c;
  font-weight: 700;
}

/* Footer with Apply/Clear buttons */
.ts-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.ts-apply-btn {
  padding: 6px 20px;
  background: #ea580c;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.ts-apply-btn:hover {
  background: #c2410c;
}

.ts-clear-btn {
  padding: 6px 12px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #ea580c;
  cursor: pointer;
}

.ts-clear-btn:hover {
  text-decoration: underline;
}

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

/* 40/60 split like the mock */
.job-browser-body {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr; /* LEFT 40% / RIGHT 60% */
  gap: 32px;
  align-items: start;
  position: relative;
}

.job-list-col {
  position: relative;
  margin-top: -63px;
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.results-summary {
  font-size: 18px;
  color: #6f6f6f;
  font-weight: 500;
  font-style: italic;
}

.results-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #6f6f6f;
  line-height: 150%;
  font-weight: 400;
  justify-content: end;
  padding-bottom: 32px;
  font-family: var(--inter);
}

.results-sort select {
  cursor: pointer;
  border: none;
  font-size: 16px;
  color: #6f6f6f;
  line-height: 150%;
  font-weight: 400;
  font-family: var(--inter);
}

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

/* Job Cards List */
.job-cards {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

/* --- Card Base --- */
.job-card {
  position: relative;
  overflow: hidden; /* keep gradient rail rounded */
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 18px 18px 18px 20px;
  transition: all 0.25s ease;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

/* Hover/Active state: warm glow + subtle radial fill + show rail */
.job-card:hover,
.job-card.active {
  background: radial-gradient(
    54.47% 54.47% at 50% 54.47%,
    #ff8e30 0%,
    #f8d75a 96.25%
  );
  color: #fff;
  transition: opacity 0.4s ease;
}

.job-card:hover::before,
.job-card.active::before {
  opacity: 1;
}

/* Link wrapper spacing so text doesn’t collide with rail */
.job-card .job-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding-left: 4px;
}

/* Title & meta */
.job-title {
  font-size: 22px !important; /* slightly smaller to match mock proportions */
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  left: -0.02em;
  line-height: 106%;
  font-family: var(--tobias);
}

.job-card .meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0em;
  font-weight: 400;
  color: #1a1a1a;
  font-family: var(--inter);
  flex-direction: row;
}

.job-card .meta li {
  display: flex;
  align-items: center;
}

.job-card .meta li::before {
  content: "•";
  margin-right: 12px;
  color: #1a1a1a;
}

.job-card .meta li:first-child::before {
  display: none;
}

.no-results {
  padding: 40px 20px;
  text-align: center;
  color: #1a1a1a;
  font-size: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-link {
  min-width: 24px;
  height: 24px;
  padding: 0px;
  background: none;
  border-radius: 25px;
  font-size: 14px;
  color: #6f6f6f;
  text-decoration: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 92%;
  letter-spacing: -0.03em;
  font-weight: 500 !important;
}

.pagination-link:hover {
  border-color: #ed5a04;
}

.pagination-link.active {
  background: #ed5a04;
  color: #fff;
}

.pagination .dots {
  color: #999;
  padding: 0 4px;
}

/* ============================================================================
   JOB DETAIL PANEL
   ============================================================================ */

.job-detail-col {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 32px 0px 32px 32px;
  position: relative;
  top: auto;
  max-height: none;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.job-detail-col.loading {
  opacity: 0.6;
  pointer-events: none;
}

.detail-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.job-detail-article {
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  max-height: calc(100vh - 160px);
  padding-right: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-detail-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.job-detail-head .sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.job-detail-head .meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #333;
}

.job-detail-head .meta li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.apply-now {
  padding: 12px 28px;
  background-color: #ed5a04;
  border: none;
  outline: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 32px;
  font-family: var(--inter);
  transition: 0.4s ease all;
  border: 1pc solid transparent;
}

.apply-now:hover {
  background: none;
  border: 1pc solid #ed5a04;
}

.view-job-link {
  font-size: 14px;
  color: #ea580c;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.view-job-link:hover {
  text-decoration: underline;
}

.job-detail-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.job-detail-body .content {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.job-details-settings .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 10px;
}
.job-details-settings .meta .job-type {
  min-width: 230px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.job-details-settings .meta .job-type p.main-head {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f6f6f;
  font-size: 12px;
}
p.job-type-info {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 400;
  letter-spacing: 0em;
  background-color: #f6f6f6;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-top: 20px;
  line-height: 100%;
}
.job-detail-title-topinfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
p.salary-info {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 120%;
  letter-spacing: 0em;
  margin-top: 20px;
}

.jb-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jb-checklist li {
  margin: 10px 0;
}
.jb-checklist .chk {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.panel-actions {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  margin-top: 12px;
}

.jb-checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jb-additional-filter-wrapper {
  position: relative;
}
.jb-filter-panel .custom-btn {
  padding: 8px 12px;
}
.custom-btn:hover {
  cursor: pointer;
  border: 1px solid #ed5a04;
  color: #ed5a04;
}
.custom-btn {
  border: 1px solid var(--button-bg) !important;
  transition: 0.3s ease all;
}
.custom-btn.outline-border {
  background: none;
  border: none !important;
  color: #6f6f6f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.custom-btn.outline-border:hover {
  color: #ed5a04;
}

.jb-no-results-global {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.jb-no-results-msg h2 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.jb-no-results-msg p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.fr-info-modal-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.fr-info-modal-form.is-open {
  display: flex;
}


body.fr-modal-open {
  overflow: hidden;
}
.job-browser-title {
  margin-bottom: 40px !important;
  padding-top: 20px;
    font-size: clamp(24px, 7vw, 32px) !important;
}
.static-section.job-page {
  margin-top: 120px;
}
.jb-checklist{
 margin-bottom: 0px !important;
 padding-left: 0px !important;
 gap: 0px !important;
}

/* sachin css start 25 nov 2025 */

.mobile_sort{
  display: none;
}

.web_sort{
  display: flex;
}

@media (max-width: 720px){
  .mobile_sort{
  display: flex;
}

.web_sort{
  display: none;
}
}

.job-detail-body .content,
.job-detail-body .content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-detail-body .content p {
    margin-top: 10px;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
  .static-section.job-page {
    margin-top: 80px;
  }
}

@media (max-width: 1024px) {
  .job-browser-body {
    grid-template-columns: 1fr; /* stack */
    gap: 40px;
  }

  .job-detail-col {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .jb-primary-row {
    grid-template-columns: 1fr;
  }

  .jb-secondary-row {
    align-items: stretch;
  }

  .jb-clear-all {
    margin-left: 0;
  }
  .job-detail-title-topinfo{
    flex-direction: column;
    gap: 10px;
    align-items: start;
    padding-top: 20px;
  }
  .custom-btn.apply-now{
    padding: 10px 25px;
    font-size: 12px;
  }
}

.section-label {
  margin: 10px 0;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0em;
  line-height: 150%;
  font-size: 24px;
  color: #6f6f6f;
  text-transform: uppercase;
}

/* ====== TOP CITIES & JOBS SECTION ====== */

.top-cities-jobs-section {
    max-width: 1400px;
    /* margin: 60px auto; */
}

.tcj-header {
    text-align: center;
    margin-bottom: 40px;
}

.tcj-title {
    font-family: 'Tobias', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.tcj-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}


/* Cities Navigation */

.tcj-cities-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}


/* NON-ACTIVE tabs */

.tcj-city-btn {
    cursor: pointer;
    height: fit-content;
    padding: 14px 40px;
    background: #fff;
    border: 1px solid var(--button-bg);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--inter);
    transition: 0.3s ease all;
    white-space: nowrap;
}


/* hover (light orange) */

.tcj-city-btn:hover {
    background: #fff7ed;
    border-color: #ed5a04;
    color: #ed5a04;
}


/* ACTIVE tab (solid orange) */

.tcj-city-btn.active {
    background: #ed5a04;
    border-color: #ed5a04;
    color: #fff;
}


/* Jobs Container */

.tcj-jobs-container {
    position: relative;
    min-height: 400px;
}

.tcj-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.tcj-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
    margin-bottom: 40px;
}


/* Job Cards */

.tcj-job-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100% !important;
}

.tcj-job-card:hover {
    background: radial-gradient(54.47% 54.47% at 50% 54.47%, #ff8e30 0%, #f8d75a 96.25%);
    color: #fff;
    transition: opacity 0.4s ease;
}

.tcj-job-title {
    font-family: var(--tobias);
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.tcj-job-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.tcj-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
}

.tcj-meta-item svg {
    flex-shrink: 0;
    color: #ED5A04;
}

.tcj-view-details {
    display: inline-block;
    font-family: var(--inter);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.tcj-view-details:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* Footer */

.tcj-footer {
    text-align: center;
    padding-top: 20px;
}

.tcj-browse-all-btn {
    display: inline-block;
    font-family: var(--inter);
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: var(--button-bg);
    padding: 16px 40px;
    letter-spacing: 2px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid #ED5A04;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tcj-browse-all-btn:hover {
    background: none;
    color: #1a1a1a;
    border-color: #ED5A04;
}


/* Messages */

.tcj-no-jobs,
.tcj-error {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
}

.tcj-error {
    color: #d32f2f;
}


/* Responsive */

@media (max-width: 768px) {
    .tcj-title {
        font-size: 32px;
    }
    .tcj-subtitle {
        font-size: 14px;
    }
    .tcj-jobs-grid {
        grid-template-columns: 1fr;
    }
    .tcj-city-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}


/* ====== TOP CITIES BY PROFESSION SECTION ====== */

.top-cities-by-profession-section {
    max-width: 1400px;
    margin: 60px auto;
}

.tcbp-header {
    text-align: center;
    margin-bottom: 40px;
}

.tcbp-title {
    font-family: 'Tobias', serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.tcbp-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}


/* Professions Navigation */

.tcbp-professions-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tcbp-profession-btn {
    cursor: pointer;
    height: fit-content;
    padding: 14px 30px;
    background: #fff;
    border: 1px solid var(--button-bg);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--inter);
    white-space: nowrap;
    transition: 0.3s ease all;
}

.tcbp-profession-btn:hover {
    background: #fff7ed;
    border-color: #ea580c;
}

.tcbp-profession-btn.active {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff;
}


/* Cities Container */

.tcbp-cities-container {
    position: relative;
    min-height: 400px;
}

.tcbp-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}

.tcbp-cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
}


/* City Cards */

.tcbp-city-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: opacity 0.4s ease;
    width: 100% !important;
}

.tcbp-city-card:hover {
    background: radial-gradient(54.47% 54.47% at 50% 54.47%, #ff8e30 0%, #f8d75a 96.25%);
    color: #fff;
    transition: opacity 0.4s ease;
}

.tcbp-city-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tcbp-city-info {
    flex: 1;
}

.tcbp-city-name {
    font-family: var(--tobias);
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 106%;
}

.tcbp-city-rank {
    display: inline-block;
    font-family: var(--inter);
    font-size: 13px;
    font-weight: 600;
    color: var(--button-bg);
    background: #fff5ed;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 10px;
}

.tcbp-city-icon {
    width: 35px;
    height: 35px;
    background: #fff5ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tcbp-city-icon svg {
    color: var(--button-bg);
    height: 20px;
    width: 20px;
}


/* City Stats */

.tcbp-city-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tcbp-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
}

.tcbp-stat svg {
    flex-shrink: 0;
    color: #999;
}

.tcbp-stat strong {
    color: #1a1a1a;
    font-weight: 600;
}

.tcbp-view-jobs {
    display: inline-flex;
    align-items: center;
    font-family: var(--inter);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.tcbp-view-jobs:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.jb-city-info {
    position: relative;
    display: inline-flex;
    margin-left: 6px;
    cursor: help;
    color: #666;
}

.jb-city-info .jb-tooltip-text {
    /* Tooltip styling... */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    /* ... */
}

.jb-city-info:hover .jb-tooltip-text {
    visibility: visible;
    opacity: 1;
}


/* Footer */

.tcbp-footer {
    text-align: center;
    padding-top: 20px;
}

.tcbp-browse-all-btn {
    display: inline-block;
    font-family: var(--inter);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background: var(--button-bg);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid #ED5A04;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tcbp-browse-all-btn:hover {
    background: none;
    color: #1a1a1a;
    border-color: #ED5A04;
}


/* Messages */

.tcbp-no-cities,
.tcbp-error,
.tcbp-no-professions {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
}

.tcbp-error {
    color: #d32f2f;
}

.tcbp-no-professions {
    background: #f5f5f5;
    border-radius: 12px;
    margin: 40px 0;
}

.jb-fild-wrap {
    display: flex;
    gap: 10px;
    align-items: start;
}

.jb-city-info .jb-tooltip-text {
    bottom: 20px;
    width: 240px;
    z-index: 5;
}


/* Responsive */
@media (max-width: 991px) {
  .tcbp-cities-grid {
      grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .tcbp-title {
        font-size: 32px;
    }
    .tcbp-subtitle {
        font-size: 14px;
    }
    .tcbp-cities-grid {
        grid-template-columns: 1fr;
    }
    .tcbp-profession-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    .tcbp-city-name {
        font-size: 20px;
    }
    .tcbp-browse-all-btn {
        font-size: 12px;
        padding: 14px 26px;
    }
    .tcbp-professions-nav {
        overflow: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    .tcj-cities-nav {
        overflow: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    .job-browser {
        padding-bottom: 0px;
    }
    .tcj-browse-all-btn {
        padding: 16px 20px;
    }
    .jb-city-info .jb-tooltip-text {
        width: 140px;
    }
    .tcbp-cities-grid {
      grid-template-columns: 1fr;
    }
}





