body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
}

.page-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0px auto 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.job-container {
  flex: 1;
  padding: 10px;

  background: #fff;
  overflow-x: auto;
}

.job-header {
    /* margin-bottom: 20px; */
    padding: 12px 8px;
}
.job-title-line {
  font-size: 30px;
  padding-top: 80px;
  font-weight: bold;
  color: #ff1118;
   font-family: Arial, sans-serif;

;
 
  line-height: 1.4;
  text-align: left;
}



.job-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid #ccc;
}

.job-table th,
.job-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #ddd;
 text-align: left;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 16px;
}
.job-table td,
.job-table th{
  font-size: 18px;
 
}
.job-table th {
  background-color: #ffffff;
  font-weight: 500;
  color: #000000;
  width: 35%;
}                                     

.job-table td {
  background-color: #fff;
  color: #000000;
  font-weight: 500;
}

.job-table td a {
  color: #0073e6;
  text-decoration: none;
}

.job-table td a:hover {
  text-decoration: underline;
}

.sidebar {
  width: 240px;
  background: #f9f9f9;
  padding: 20px;
  border-left: 1px solid #ccc;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.sidebar.collapsed {
  width: 0;
  padding: 0;
  overflow: hidden;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003366;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 12px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #003366;
  font-size: 15px;
  display: block;
  transition: 0.2s ease;
}

.sidebar ul li a:hover {
  color: #0073e6;
  font-weight: 600;
  text-decoration: underline;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
}

.top-nav .nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav .hamburger {
  font-size: 26px;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: block;
  margin-left: 40px;
  padding: 8px;
  transition: background 0.2s ease;
}

.top-nav .hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  gap: 8px; /* space between icon and text */
}

.nav-logo .lucide-icon {
  width: 22px;
  height: 22px;
  stroke: #000000; /* white icon color */
  stroke-width: 2;
}


.top-nav .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
 
  margin-right: 20px;
  padding: 0;
}

.top-nav .nav-links li a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.top-nav .nav-links li a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.mobile-sidebar {
  position: fixed;
  top: 0px;
  left: -240px;
  width: 220px;
  height: 100%;
  background-color: #ffffff;
  border-right: 1px solid #ddd;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.06);
  transition: left 0.3s ease-in-out;
  z-index: 9999;
  padding: 20px 16px;
  margin-top: 80px;
  font-family: 'Segoe UI', sans-serif;
}

.mobile-sidebar.open {
  left: 0;
}

/* Close Button (← instead of ×) */
.mobile-sidebar .close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: #555;
  float: right;
  cursor: pointer;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.mobile-sidebar .close-btn:hover {
  color: #000;
}

.mobile-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-sidebar ul li {
  margin-bottom: 14px;
}

.mobile-sidebar ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 17px;
  font-weight: 700;
  margin-top: 15px;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}

.mobile-sidebar ul li a:hover {
  background-color: #f0f0f0;
}


@media screen and (max-width: 768px) {
  .page-wrapper {
    flex-direction: column;
  }

  .sidebar {
    position: static;
    width: 100%;
    border-left: none;
    border-top: 1px solid #ccc;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  .top-nav .nav-links {
    display: none;
  }

  .job-container {
    padding: 20px;
  }

  .job-title-line {
    font-size: 20px;
    text-align: center;
  }
}
.posted-date {
    font-size: 16px;
    color: #010101;
    margin-top: 6px;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 0px 20px;
}
.job-description-box {
  background-color: #fdfdfd;
 
  padding: 17px 20px;
 
   font-family: Arial, sans-serif;
  font-size: 18px !important; /* ← font size correctly set */
  font-weight: 500 !important;
  line-height: 1.6;
  color: #000000;
 ;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.job-description-box strong {
  color: #0864c1;
  font-weight: 600;
}
.job-info-row {
  display: flex;
  flex-wrap: wrap;
  
  margin-bottom: 30px;
}

.job-info-col {
  flex: 1 1 48%;
  min-width: 300px;
}

.job-info-col h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003366;
}
.section-heading {
  display: flex;
  align-items: center;
  font-size: 22px !important;
  color: #0f9008 !important ;
  font-weight: 700;

  margin: 30px 0 10px;

  padding-left: 10px;
  gap: 8px;
}

.section-heading-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  stroke: #000000;
}
.table-heading th {
  text-align: center;
  font-size: 30px;
  padding: 12px 10px;
  background-color: #ffffff;
  color: #12730d;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid #ccc;
  font-weight: 700;
}
/* .table-heading-fees th {
  text-align: center;
  font-size: 23px;
  padding: 12px 10px;
  background-color: #ffffff;
  color: #1d8b17;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid #ccc;
  font-weight: 800;
} */


.table-icon {
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  stroke: #003366;
  stroke-width: 2;
}
.job-title-box {
  border: 1px solid silver;
  border-radius: 0px;
  padding: 16px 20px;
  background-color: #ffffff;
 
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.job-title-box h1,
.job-title-box h2,
.job-title-box h3 {
  margin: 8px 0;
  line-height: 1.4;
}

.job-title-org {
  font-size: 22px;
  font-weight: 700;
  color: #003366;
}

.job-title-exam {
  font-size: 20px;
  font-weight: 600;
  color: #0055aa;
}

.job-title-sub {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}
.job-title-org.title-level-1 {
  font-size: 30px;
  font-weight: 700;
  color: #ff21ff;
  margin-bottom: 8px;
}

.job-title-exam.title-level-2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f8715;
  margin-bottom: 8px;
}

.job-title-sub.title-level-3 {
font-size: 28px;
  font-weight: 700;
  color: #ff21ff;
  margin-bottom: 8px;
}
.equal-height-tables {
  display: flex;

}

.equal-height-tables .job-info-col {
  flex: 1;
  display: flex;
}

.equal-height-tables .job-table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
.job-info-row.equal-height-tables {
  display: flex;
  flex-wrap: wrap;
  
  align-items: stretch;
}

.job-info-row.equal-height-tables .job-info-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.job-info-row.equal-height-tables .job-table {
  height: 100%;
  width: 100%;
  border-collapse: collapse;
}
.fee-payment-note td {
    padding-top: 10px;
    font-style: italic !important;
    color: #333;
    line-height: 1.5;
}
 .important-dates th {
     
        white-space: nowrap;
        font-weight: bold;
    }

    /* new table data sylign */
.job-timeline-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    vertical-align: top;  /* ensures it aligns top inside the cell */
}


.job-timeline-list li {
    margin-bottom: 5px;
}

.job-timeline-list li strong {
    color: #1b1b1b;
    font-weight: 400; /* lighter label */
}

/* Dynamic/fetched data styling */
.job-timeline-list li span {
    color: #000;
    font-weight: 600; /* bold fetched value */
}

/* Link button for application begin */
.job-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
}

.job-heading-container {
    margin-bottom: 20px;
}

.job-main-heading {
    font-size: 30px;
    font-weight: 700;
    text-align: center;

    color: #222;
}


.job-main-title {
    color: #0a80e7;
    
}

.job-notify-badge {
    color: #ef2a23;
    font-weight: 600;
    margin-left: 6px;
}

.job-publish-year {
    color: #28a745;
    margin-left: 6px;
}

.job-date-separator {
    color: #666;
    margin: 0 4px;
}

.job-publish-date {
    color: #8428ab;
}
.job-section-title {
    text-align: center !important;
    font-size: 30px !important;
    padding: 12px 10px !important;
    background-color: #ffffff !important;
    color: #12730d !important;
    border-bottom: 2px solid #ccc !important;
    border-top: 2px solid #ccc !important;
    font-weight: 700 !important;
}
.job-section-title2 {
    text-align: center;
    font-size: 30px;
    padding: 12px 10px;
    background-color: #ffffff;
    color: #0d2f73;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    font-weight: 700;
}
.job-notice-box {
   text-align: center;
  font-size: 30px;
  padding: 12px 10px;
  background-color: #ffffff;
  color: #ff21ff;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid #ccc;
  font-weight: 700;
}
/* Entire Table Styling */
.job-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-top: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Table Heading Row */

/* Table Body Rows */
.job-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.job-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Table Left Column (Label) */
.job-table tbody th {
 font-size: 28px;
  font-weight: 700;
  color: #ff21ff;
  margin-bottom: 8px;
}

/* Table Right Column (Link) */
.job-table tbody td {
    font-size: 28px;
  font-weight: 700;
  
  margin-bottom: 8px;
}

/* Anchor Link Styling */
.job-table tbody td a {
    font-size: 28px;
  font-weight: 700;
  color: #1613db;
  margin-bottom: 8px;

}

.job-table tbody td a:hover {
    color: #083766;
    text-decoration: none;
}



/* how to apply */

.job-apply-instructions {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-family: 'Segoe UI', sans-serif;
}

.job-apply-instructions strong {
    color: #0d2f73;
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}

.job-apply-instructions ul.apply-steps {
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
    color: #333;
    line-height: 1.7;
    font-size: 16.5px;
}

.apply-steps ul.document-list {
    list-style-type: circle;
    margin-top: 6px;
    padding-left: 20px;
    font-size: 16px;
}
.join-btn-wrapper {
    text-align: center;
    margin: 20px 0;
}

.join-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0c8739;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    gap: 10px;
}
/* Container */
.quick-links-section {
    background-color: #f9f9f9;
  
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-family: 'Segoe UI', sans-serif;
    max-width: 300px;
}
/* Sidebar Container */
.sidebar {
    background-color: #f8f9fa;
  
    border-radius: 8px;
    max-width: 280px;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Sidebar Title */
.sidebar h2 {
    font-size: 30px;
    color: #12730d;
    margin-bottom: 16px;
    font-weight: 700;
}

/* Sidebar List */
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Sidebar List Items */
.sidebar ul li {
    margin-bottom: 12px;
}

/* Sidebar Links */
.sidebar ul li a {
    color: #0b5394;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover Effect */
.sidebar ul li a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.saved-jobs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0d6efd;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.saved-jobs-btn:hover {
    background-color: #084bb8;
    text-decoration: none;
    color: #ffffff;
}

.saved-jobs-btn .lucide-icon {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}
.floating-eligibility-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #198754;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.floating-eligibility-btn:hover {
    background-color: #146c43;
}

.floating-eligibility-btn .lucide-icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
}
/* Title Styling */
.sidebar-title.recent-title {
    font-size: 22px;
    color: rgb(195, 16, 153);
    font-weight: 500;
    margin: 8px 0px;
}

/* Horizontal Line After Job List */
.recent-post-divider {
    margin-top: 12px;
    border: none;
    border-top: 1px solid #ccc;
}
/* Section Title */
.sidebar-title.admit-title {
    font-size: 25px;
    font-weight: 700;
    color: #0d2f73;
    margin-bottom: 14px;
}

/* Admit Card List */
.latest-admit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.latest-admit-list li {
    margin-bottom: 12px;
}

.latest-admit-list a {
    text-decoration: none;
    color: #1a3e72;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.latest-admit-list a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.admit-date {
    font-size: 13px;
    color: #666;
    margin-left: 4px;
}

/* Divider */
.sidebar-divider {
    margin-top: 12px;
    border: none;
    border-top: 1px solid #ccc;
}
.sidebar-title.result-title {
    font-size: 25px;
    font-weight: 700;
    color: #0d2f73;
    margin-bottom: 14px;
}.floating-save-job-form,
.floating-save-job-btn {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Actual button styling */
.floating-save-job-btn {
    background-color: #fd0d0d;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-family: 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.floating-save-job-btn:hover {
    background-color: #b60202;
}

/* Lucide icon styling */
.floating-save-job-btn i {
    width: 20px;
    height: 20px;
}

/* Mobile positioning */
@media (max-width: 768px) {
    .floating-save-job-form,
    .floating-save-job-btn {
        left: auto;
        right: 20px;
        transform: none;
    }
}
.save-popup {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 2px solid #0d2f73;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideFadeIn 0.4s ease-out;
}

.save-popup.hidden {
    display: none;
}

.save-popup-content p {
    font-size: 18px;
    color: #0d2f73;
    margin: 0 0 10px;
}

.view-saved-jobs-btn {
    background-color: #0d2f73;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
.faq-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-title {
    font-size: 24px;
    color: #0d2f73;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    font-size: 18px;
    color: #333;
    margin-bottom: 4px;
}

.faq-answer {
    font-size: 16px;
    color: #555;
}
.faq-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #0d2f73;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-title .lucide-icon {
    width: 22px;
    height: 22px;
    stroke: #0d2f73;
}
/* Hide sidebar on mobile (width < 768px) */
@media (max-width: 767px) {
  .sidebar {
    display: none !important;
  }
}

/* Show sidebar on desktop (width ≥ 768px) */
@media (min-width: 768px) {
  .sidebar {
    display: block !important;
  }
}
@media (max-width: 768px) {
.hamburger {
  display: block;
  margin-left: -8px !important;
  font-size: 21px !important; /* Decrease size (default is around 24px or 28px) */
  line-height: 1;
}


  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #004080;
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ffffff33;
  }
  .top-nav {
  height: 60px;
}

.nav-logo {
  margin-left: -5px;
  font-size: 20px;
}
.nav-logo .lucide-icon {
  height: 22px;
  width: 22px;
  margin-right: 6px;
  margin-right: -2px;
  vertical-align: middle;
}

}@media (max-width: 768px) {
  .job-title-line {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
    padding: 50px 10px;
    text-align: left;
  }

  .job-header {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .job-container {
    padding: 0 !important;
    margin:  10px 5px !important;
  }
}
@media (max-width: 768px) {
  .posted-date {
    font-size: 14px !important;
    padding: 5px 10px;
    display: flex;
    margin-top: -50px;
    align-items: center;
    flex-wrap: wrap;
  }

  .posted-date .lucide-icon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 4px !important;
  }
}
@media (max-width: 768px) {
  .job-description-box {
    font-size: 14px !important;
    line-height: 1.6;
    padding: 10px 12px;
    word-break: break-word;
  }

  .job-description-box a {
    font-size: 14px;
    word-wrap: break-word;
  }
}
@media (max-width: 768px) {
  body {
    font-family: Arial, sans-serif !important;
    padding: 5px;
    background: white;
  }
}
@media (max-width: 768px) {
  .job-title-box {
    padding: 10px 12px;
    text-align: center;
  }

  .job-title-box h1,
  .job-title-box h2,
  .job-title-box h3 {
    font-size: 18px !important;
    line-height: 1.4;
    margin-bottom: 8px;
    word-break: break-word;
  }

  .job-title-box h1 {
    font-size: 17px;
  }

  .job-title-box h2 {
    font-size: 17px;
  }

  .job-title-box h3 {
    font-size: 16px;
    color: #444;
  }
}
.job-info-row.equal-height-tables {
    display: flex;
    
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap; /* Optional for mobile responsiveness */
   
}

.job-info-col {
    flex: 1;
    min-width: 300px;
}
@media (max-width: 768px) {
  .job-info-row.equal-height-tables {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

.job-info-col {
  flex: 0 0 48% !important;
  max-width: 48% !important;
  width: 48% !important;
  min-width: 48% !important;
  box-sizing: border-box;
  scroll-snap-align: start;
  margin-right: 0%; /* Adjusted margin to fit 2 cols within 100% */
  overflow: hidden;
}


  .job-info-col table {
    table-layout: fixed;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .job-info-row::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .table-heading th {
    font-size: 18px !important;
    padding: 8px;
    word-break: break-word;
    white-space: normal;
  }
}@media (max-width: 768px) {
  .job-timeline-list {
    font-size: 17px !important;
    line-height: 1.5;
  }

  .job-timeline-list li {
    padding: 6px 0;
    word-break: break-word;
  }

  .job-timeline-list a {
    font-size: 14px;
    color: #007bff;
    text-decoration: underline;
  }

  .job-timeline-list strong {
    font-weight: 600;
  }
}/* Desktop */
.li-application-begin a {
  font-size: 17px !important;
}@media (max-width: 768px) {
  th[colspan="2"][style*="font-size: 30px"] {
    font-size: 25px !important;
    padding: 10px 10px !important;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .job-timeline-list {
    font-size: 14px !important;
    padding-left: 5px;
  }

  .job-timeline-list li {
    margin-bottom: 10px;
    line-height: 1.2 !important;
    word-wrap: break-word;
  }
}
@media (max-width: 768px) {
  .job-notice-box {
    font-size: 20px;
    padding: 10px 14px;
    margin: 16px 0;
  }
  .table-heading th {
  font-size: 19px !important;
}
}@media (max-width: 768px) {
  .job-info-col.job-links-col {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin-right: 0 !important;
  }

  .job-links-col .job-table {
    width: 100% !important;
    box-sizing: border-box;
  }

  .job-links-col .job-table th,
  .job-links-col .job-table td {
    font-size: 24px !important;
  }

  .job-links-col .job-table a {
    font-size: 24px !important;
    font-weight: 600;
    color: #0e0ead !important; /* Optional: give it a nicer blue */
    text-decoration: underline; /* Optional: keep it visibly a link */
  }
}
.light-footer {
  background-color: #f9f9f9;
  color: #333;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 2px solid #ddd;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-section h2 {
  font-size: 22px;
  color: #0b3d91;
  margin-bottom: 15px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0b3d91;
}

.footer-section p,
.footer-section ul li {
  font-size: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0b3d91;
}

.footer-section a {
  color: #0b3d91;
  text-decoration: none;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #0b3d91;
  transition: transform 0.2s;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin: 20px 0;
  }

  .footer-social {
    margin-top: 10px;
  }
}
.site-footer {
  background: #0e1a33;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.site-footer h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffc107;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
  margin: 10px 20px;
}

.footer-about p,
.footer-contact p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

.footer-social a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ffc107;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    margin: 20px 0;
  }

  .footer-social {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .light-footer {
    padding: 30px 15px 15px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
    margin: 15px 0;
  }

  .footer-section h2,
  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 14px;
  }

  .footer-social {
    margin-top: 12px;
  }

  .footer-social a {
    margin: 0 6px;
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 12px;
  }
}
@media (max-width: 768px) {
  .mobile-sidebar {
    margin-top: 60px !important;
  }
}
@media (max-width: 768px) {
  .floating-save-job-btn {
    bottom: 15px;
    right: 15px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .save-popup {
    bottom: 70px;
    right: 15px;
    width: 85%;
    max-width: 300px;
    font-size: 14px;
  }

  .view-saved-jobs-btn {
    font-size: 13px;
    padding: 6px 10px;
  }
}
@media screen and (max-width: 768px) {
    .job-info-col.job-links-col table.job-table,
    .job-info-col.job-links-col table.job-table th,
    .job-info-col.job-links-col table.job-table td,
    .job-info-col.job-links-col table.job-table a {
        font-size: 18px !important;
    }
}


