/** Shopify CDN: Minification failed

Line 142:57 Expected identifier but found "*"
Line 174:2 Unexpected "/"

**/
/* /* Base Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

/* Section Styling */
.section {
  padding: 20px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
}

/* Title Styling */
.section_title .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #051c36;
  text-align: center;
  font-family:Roboto;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
}

.table-cities {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  
}

.table-cities thead th {
  background-color: #d4af37;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 16px;

}

.table-cities tbody tr:nth-child(even) {
  background-color: #fff;
}

.table-cities th,
.table-cities td {
  padding: 12px 15px;
  border: 1px solid ##ddd;
  font-size: 14px;
  text-align: center;
}

.table-cities td a {
  color: #007bff;
  text-decoration: none;
  
}
  .inactiveLink{
   pointer-events: none;
    padding: 20px;
}

.table-cities td a:hover {
  text-decoration: underline;
}

/* Highlighted Text */
.txt_blue {
  color: #0056b3;
  font-weight: bold;
}

.txt_green {
  color: #28a745;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section {
    padding: 15px;
  }

  .section_title .title {
    font-size: 20px;
  }

  .table-cities thead th,
  .table-cities th,
  .table-cities td {
    font-size: 13px;
    padding: 8px;
  }
}
.cities-name{
  background-color:#333;
}
@media (max-width: 480px) {
  .table-cities {
    display: block;
  }

  .table-cities thead {
    display: table-cities-header-group; /* Ensure header remains visible */
    background-color: #007bff; /* Match header color */
    position: sticky; /* Keep the header visible on scroll */
    top: 0;
    z-index: 1;
  }

  .table-cities thead th {
    font-size: 14px;
    padding: 10px;
    text-align: left;
    color: #fff;
    width: 200px;
    
  }

  .table-cities tbody {
    /* display: block; */
  }

  .table-cities tbody tr {
    /* display: flex; */
    /* flex-direction: row; /* Maintain row structure */ */
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
  }

  .table-cities tbody tr td {
    flex: 1;
    padding: 10px;
    font-size: 10px;
    border: none;
    text-align: center;
    background-color: #fff;
  }

  .table-cities tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
  }

  .table-cities tbody tr td a {
    font-size: 14px;
    color: #0056b3;
        

  }
  .inactiveLink{
   pointer-events: none;
    /* padding: 20px; */
}
}

 */