body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8fbfd;
  color: #333;
}

.locator-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 40px 20px;
}

.locator-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.locator-header h1 {
  font-size: 2.2rem;
  color: #0072bc;
  margin: 0;
}

.locator-header p {
  font-size: 1.1rem;
  color: #136cc0;
  margin-top: 5px;
  font-weight: 700;
}

.locator-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}

.filter-group {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.filter-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.filter-group select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.locator-results table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.locator-results th,
.locator-results td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}

.locator-results thead {
  background-color: #0072bc;
  color: #fff;
}

.locator-results tr:nth-child(even) {
  background-color: #f3f6f9;
}

.locator-results tr:hover {
	background-color: #c9103a;
}




@media (max-width: 768px) {
  .locator-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .locator-results table,
  .locator-results thead,
  .locator-results tbody,
  .locator-results th,
  .locator-results td,
  .locator-results tr {
    display: block;
  }

  .locator-results tr {
    margin-bottom: 15px;
  }

  .locator-results td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .locator-results td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    text-align: left;
  }
}





/* Ensure responsive behavior */
.locator-results {
  overflow-x: auto;
  margin-top: 30px;
}

/* Style the table container */
.locator-results table {
  width: 100%;
  min-width: 1200px; /* Ensure enough space for all columns */
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Table header */
.locator-results thead {
  background-color: #0072bc;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

/* Table cells */
.locator-results th,
.locator-results td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

/* Zebra rows */
.locator-results tbody tr:nth-child(even) {
  background-color: #f4f7fa;
}

/* Hover effect */
.locator-results tbody tr:hover {
  background-color: #cce9fe;
  transition: background 0.2s ease-in-out;
}

/* Mobile override for smooth scroll */
@media (max-width: 768px) {
  .locator-results {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .locator-results table {
    min-width: 1000px;
  }
}
