* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --primary-color: #65b621;
  --primary-dark: #065800;
  --secondary-color: #25a3dd;
  --secondary-dark: #1d86b3;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --gray-color: #4a5568;
  --gray-light-color: #848891;
  --border-color: #e9ecef;
  --error-color: #dc3545;
  --success-color: #28a745;
}

a {
  text-decoration: none;
  color: inherit;
}

#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-color);
  color: #fff;
  padding: 15px 20px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: none;
  gap: 10px;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

#cookieConsent button,
#cookieConsent a {
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

#cookieConsent button {
  background-color: #4caf50;
  border: none;
  color: white;
  cursor: pointer;
}

#cookieConsent button:hover {
  background-color: #45a049;
}

#cookieConsent a {
  color: #ccc;
  text-decoration: underline;
}

#cookieConsent a:hover {
  color: white;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding-bottom: 80px;
  background-color: #f5f5f5;
  user-select: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  /* this adds space on the left and right */
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.1s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--dark-color);
}

.btn-outline {
  background-color: var(--primary-color);
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-reset {
  background-color: transparent;
  border: none;
  color: var(--dark-color);
}

.btn-reset:hover {
  color: var(--secondary-color);
}

/* Header Styles */
.header {
  background-color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* On larger screens, keep nav close to logo */
@media (min-width: 1025px) {
  .header .container {
    justify-content: flex-start; /* Keep everything close to the left */
  }

  .main-nav {
    margin-left: 20px; /* Add some space between logo and nav */
  }
}

/* On smaller screens, push toggle to far right */
@media (max-width: 1024px) {
  .header .container {
    justify-content: space-between; /* Push toggle to far right */
  }

  .logo-container {
    flex: 1;
  }

  .nav-toggle {
    margin-left: auto;
  }
}

.catalog-highlights {
  background: rgb(228, 228, 228);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
  justify-content: center;
  text-align: center;
}

/* ==========================
   HEADINGS & DESCRIPTION
========================== */

.heading {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a4365;
  text-align: center;
  margin: 5px 0 12px 0;
  line-height: 1.3;
}

.heading + p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: #4a5568;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.5;
  padding: 0 10px;
}

/* Align the logo image and text */
.logo-container {
  display: flex;
  align-items: center; /* Vertically align the image and text */
  gap: 10px; /* Add spacing between the image and text */
}

.logo-link {
  display: flex;
  align-items: center; /* Vertically align image & text */
  gap: 10px; /* Space between image and text */
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep text color */
}

.logo-img {
  max-width: 40px; /* Adjust the size of the logo image */
  max-height: 50px; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure the image fits within the dimensions */
}

.logo h1 {
  font-size: 20px;
  margin: 0; /* Remove default margin */
  line-height: 1.2;
  color: var(--dark-color); /* Adjust line height for better spacing */
}

.logo h1:hover {
  color: var(--primary-color);
}

.logo p {
  font-size: 12px;
  margin: 0; /* Remove default margin */
  color: var(--dark-color); /* Optional: Use a lighter color for the tagline */
}

/* Navigation styles */
.main-nav {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 14px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

/* ==========================
   SUBSCRIBE WRAPPER
========================== */

.subscribe-wrapper {
  display: flex;
  min-width: 130px;
  max-width: 220px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
  margin-left: 1rem; /* Adjust spacing as needed */
}

.subscribe-wrapper input {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 12px;
  flex: 1;
  min-width: 0;
}

.subscribe-wrapper input:focus {
  outline: none;
}

.subscribe-wrapper button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 0.5rem;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-wrapper button:hover {
  background-color: var(
    --dark-color
  ); /* Or any darker shade of your primary color */
}

/* job Grid & Card */
.job-grid {
  display: grid;
  max-width: 80%;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px auto; /* auto makes it center horizontally */
  justify-items: center; /* centers the items inside each grid cell */
}

.job-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-meta {
  font-size: 12px;
}

.card-title {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.card-title a:hover {
  color: var(--secondary-color);
}

.card-description {
  color: var(--gray-color);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  user-select: text;
}

.card-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--gray-light-color);
  font-size: 13px;
  margin-bottom: 12px;
}

.card-meta i {
  margin-right: 6px;
  color: var(--primary-color);
}

.card-view-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--gray-light-color);
  font-size: 13px;
  margin-bottom: 22px;
}

.card-view-meta i {
  margin-right: 6px;
  color: var(--primary-color);
}

.card-description {
  white-space: pre-line;
}

.btn.read-more {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
}

.btn.read-more:hover {
  background-color: var(--dark-color);
}

/* Responsive styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark-color);
}

.nav-toggle :hover {
  color: var(--primary-color);
}
.nav-toggle:focus {
  outline: none;
}

.btn-text {
  white-space: nowrap;
}

.hero {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: transparent;
  padding: 1rem;
  align-items: center;
}

/* ==========================
   FILTERS & SEARCH
========================== */

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: transparent;
  padding: 0.1rem;
  margin: 5px 0;
}

.filters select,
.filters input {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: #fff;
  font-size: 14px;
  min-width: 150px;
}

.filters select:focus,
.filters input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.filters-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-color);
  border-radius: 6px;
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 14px;
  cursor: pointer;
  color: var(--dark-color);
  transition: background 0.2s, color 0.2s;
}

.filters-toggle:hover {
  background: var(--dark-color);
  color: #fff;
}

.search-wrapper {
  display: none;
  min-width: 150px;
  max-width: 300px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
}

.search-wrapper input {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 14px;
  flex: 1;
  min-width: 0;
}

.search-wrapper input:focus {
  outline: none;
}

.search-wrapper button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-wrapper button:hover {
  background-color: var(
    --dark-color
  ); /* or use a darker shade of your primary */
}

/* Admin Panel */
.admin-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background-color: #f9f9f9;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  width: 600px;
  z-index: 999;
}

.adminProduct-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background-color: #f9f9f9;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  width: 600px;
  z-index: 999;
}

.admin-panel h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  text-align: center;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
}

.admin-form textarea {
  min-height: 100px;
  resize: vertical;
}

.admin-form button {
  margin-top: 10px;
}

#toggleAdmin {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 60%;
  cursor: pointer;
  font-size: larger;
  font-weight: bold;
  transition: background-color 0.1s ease;
}

#toggleAdmin:hover {
  background-color: var(--dark-color);
}

/* Footer Styles */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-color);
  color: white;
  padding: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 0.1s ease;
}
.footer-bottom a:hover {
  color: var(--primary-color);
}

.footer-divider {
  border: none;
  border-top: 1px solid #ccc; /* light grey line */
  margin: 10px auto;
  width: 80%; /* adjust width as needed */
}

.social-link {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-right: 10px;
  transition: color 0.2s;
}

.social-link:last-child {
  margin-right: 0;
}

.social-link:hover {
  color: var(--primary-color);
}

/* Compliance container styles */
.container-Compliance {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px 24px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  border: 1px solid var(--border-color);
}

.compliance-section {
  text-align: center;
}

.compliance-section h1 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.compliance-section h2 {
  font-size: 1.5rem;
  color: var(--gray-color);
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.compliance-section p {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 18px;
}

.compliance-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-section li {
  font-size: 1rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.compliance-section strong {
  color: var(--primary-dark);
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .container-Compliance {
    padding: 16px 8px;
    margin: 20px 4px;
  }
  .compliance-section h1 {
    font-size: 1.3rem;
  }
  .compliance-section p,
  .compliance-section li {
    font-size: 0.95rem;
  }
}

/* Responsive Design */

@media (max-width: 1024px) {
  .container {
    max-width: 90%;
  }

  .btn {
    font-weight: 400;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 12px;
  }

  #cookieConsent {
    padding: 13px 18px;
    gap: 9px;
    font-size: 0.8rem;
  }

  #cookieConsent button,
  #cookieConsent a {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .heading {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .heading + p {
    font-size: 1rem;
  }

  /* Header Styles */
  .header {
    padding: 20px 0;
  }

  .header .container {
    padding: 0 20px;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo p {
    font-size: 12px;
  }

  .btn-outline {
    font-size: 14px;
    padding: 6px 12px;
  }

  .subscribe-wrapper {
    min-width: 110px;
    max-width: 600px;
  }

  .subscribe-wrapper input,
  .subscribe-wrapper button {
    font-size: 14px;
    padding: 0.4rem 0.8rem;
  }

  .job-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-description {
    font-size: 13px;
  }

  /* Align the logo image and text */

  .logo-img {
    max-width: 30px; /* Adjust the size of the logo image */
    max-height: 40px; /* Maintain aspect ratio */
  }

  .logo h1 {
    font-size: 18px;
    margin: 0; /* Remove default margin */
    line-height: 1; /* Adjust line height for better spacing */
  }

  .logo p {
    font-size: 10px;
  }

  /* Filters */
  .filters select,
  .filters input {
    width: 100%;
    max-width: 130px;
    font-size: 12px;
    min-width: 80px;
  }

  .filters option {
    font-size: 12px;
    padding-top: 1px;
    padding-bottom: 1px;
    height: 20px;
    min-height: 0;
    line-height: 0.9;
  }

  .search-wrapper input {
    font-size: 14px;
  }

  /* Admin Panel */
  .admin-panel {
    width: 80%;
    bottom: 70px;
    right: 10px;
    padding: 10px;
    font-size: 14px;
  }

  .adminProduct-panel {
    width: 80%;
    bottom: 70px;
    right: 10px;
    padding: 10px;
    font-size: 14px;
  }

  .admin-form input,
  .admin-form select,
  .admin-form textarea {
    font-size: 14px;
    width: 100%;
  }

  .admin-form textarea {
    width: 100%;
  }

  /* Footer Styles */
  .footer {
    padding: 20px 0;
  }

  .footer-bottom {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 90%;
  }

  .btn {
    font-weight: 400;
    border: 1px solid transparent;
  }

  #cookieConsent {
    padding: 8px 2px;
    gap: 5px;
    font-size: 0.49rem;
  }

  #cookieConsent button,
  #cookieConsent a {
    font-size: 0.4rem;
    padding: 4px 4px;
  }

  .heading {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .heading + p {
    font-size: 0.8rem;
  }

  /* Header Styles */
  .header {
    padding: 10px 0;
  }

  .header .container {
    padding: 0 15px;
  }

  .btn-outline {
    font-size: 13px;
    padding: 3px 3px;
  }

  .subscribe-wrapper {
    min-width: 90px;
    max-width: 200px;
  }

  .subscribe-wrapper input,
  .subscribe-wrapper button {
    font-size: 10px;
    padding: 0.3rem 0.6rem;
  }

  /* Align the logo image and text */

  .logo-img {
    max-width: 20px; /* Adjust the size of the logo image */
    max-height: 30px; /* Maintain aspect ratio */
  }

  .logo h1 {
    font-size: 12px;
  }

  .logo p {
    font-size: 8px;
  }

  .filters {
    align-items: center;
  }

  .filters.open {
    display: flex;
    font-size: 8px;
  }

  .filters select,
  .filters input {
    width: 100%;
    max-width: 90px;
    min-width: 60px;
    font-size: 8px;
  }

  .filters option {
    font-size: 8px;
    padding-top: 1px;
    padding-bottom: 1px;
    height: 15px;
    min-height: 0;
    line-height: 0.5;
  }

  .search-wrapper input {
    font-size: 8px;
  }

  /* Admin Panel */
  .admin-panel {
    width: 80%;
    bottom: 70px;
    right: 10px;
    padding: 10px;
    font-size: 8px;
  }

  .adminProduct-panel {
    width: 80%;
    bottom: 70px;
    right: 10px;
    padding: 10px;
    font-size: 8px;
  }

  .admin-form input,
  .admin-form select,
  .admin-form textarea {
    font-size: 8px;
    width: 100%;
  }

  .admin-form textarea {
    width: 100%;
  }

  /* Footer Styles */
  .footer {
    padding: 5px 0;
  }

  .footer-bottom {
    font-size: 8px;
  }
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  color: white;
  font-weight: 500;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease, fadeOut 0.5s ease 3s forwards;
}

.notification.success {
  background-color: var(--success-color);
}

.notification.error {
  background-color: var(--error-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Search highlighting */
.search-highlight {
  background-color: #ffeb3b;
}

/* Navigation toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark-color);
}

.nav-toggle:hover {
  color: var(--primary-color);
}

.nav-toggle:focus {
  outline: none;
}

/* Mobile navigation styles */
@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    z-index: 100;
  }

  /* Shadow only on left + bottom */
  .main-nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none; /* ensure it doesn't block clicks */
    clip-path: inset(0 0 auto 0); /* prevents shadow on top */
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .main-nav li {
    margin: 0;
    padding: 8px;
    width: 100%;
    text-align: right;
    cursor: pointer;
  }

  .main-nav a {
    font-size: 14px;
  }
}

/* Header layout for mobile */
@media (max-width: 1024px) {
  .header .container {
    justify-content: space-between;
  }

  .logo-container {
    flex: 1;
  }

  .nav-toggle {
    margin-left: auto;
  }
}

/* Google Sign-in Button Styles */
.google-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #757575;
  border: 1px solid #dadce0;
  border-radius: 20px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  height: 35px;
  padding: 0 10px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.google-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.google-icon {
  width: 18px;
  height: 18px;
}

.btn-text {
  white-space: nowrap;
}

/* User profile when signed in */
.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-profile span {
  font-size: 14px;
  color: var(--dark-color);
}

/* Responsive positioning */
@media (min-width: 1025px) {
  /* On larger screens: show after main nav */
  .header .container {
    justify-content: flex-start;
  }

  .main-nav {
    margin-left: 20px;
  }

  #whenSignedOut,
  #whenSignedIn {
    margin-left: 10px;
  }
}

@media (max-width: 1024px) {
  /* On smaller screens: show between logo and nav toggle */
  .header .container {
    justify-content: space-between;
    align-items: center;
  }

  .logo-container {
    flex: 1;
  }

  #whenSignedOut,
  #whenSignedIn {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    order: 2;
  }

  .nav-toggle {
    order: 3;
    margin-left: auto;
  }
}

/* Mobile responsive styles for Google button and user details */
@media (max-width: 1024px) {
  .google-btn {
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .google-icon {
    width: 14px;
    height: 14px;
  }

  .google-icon-wrapper {
    margin-right: 6px;
  }

  .user-profile span {
    font-size: 12px;
  }

  .user-profile .google-btn {
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .google-btn {
    height: 28px;
    padding: 0 6px;
    font-size: 10px;
  }

  .google-icon {
    width: 12px;
    height: 12px;
  }

  .google-icon-wrapper {
    margin-right: 4px;
  }

  .user-profile span {
    font-size: 11px;
  }

  .user-profile .google-btn {
    height: 28px;
    padding: 0 6px;
    font-size: 10px;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  border: none;
  background: none;
  color: var(--dark-color);
  cursor: pointer;
  font-size: 15px;
  transition: all 0.1s ease;
}

.pagination-btn:hover {
  color: var(--secondary-color);
}

.pagination-btn.active {
  color: var(--secondary-color);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-ellipsis {
  padding: 8px 4px;
  color: var(--gray-color);
  font-weight: bold;
}

/* No jobs message */
.no-jobs-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-color);
}

.no-jobs-message p {
  font-size: 16px;
  margin: 0;
}

/* Mobile pagination */
@media (max-width: 600px) {
  .pagination {
    gap: 4px;
    margin: 20px 0;
  }

  .pagination-btn {
    padding: 6px 8px;
    font-size: 12px;
  }

  .pagination-btn span {
    display: none; /* Hide text on mobile, show only icons */
  }
}
