<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.labor-hero-section {
  background: url('/static/images/labor_camps/hero-bg.webp') no-repeat center center/cover;
  padding-top: 200px;
  padding-bottom: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.labor-overlay-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  padding: 30px 20px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.labor-overlay-bar h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: #003a7a;
  margin-bottom: 10px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}

.labor-overlay-bar p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #1a2a4a;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.labor-search-box {
  margin-top: 200px;
  background: white;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}

.tabs.top-left {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}

.tabs .tab {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  border-radius: 6px 6px 0 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tabs .tab.active {
  background-color: #003a7a;
  color: white;
  border-color: #003a7a;
}

.hero-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.search-wrapper {
  position: relative;
  flex: 1 1 250px;
  max-width: 100%;
}

#hero-location-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 2px solid #0c8a43;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
}

#hero-location-input:focus {
  outline: none;
  border-color: #0c8a43;
  box-shadow: 0 0 0 3px rgba(12, 138, 67, 0.15);
}

#hero-location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

#hero-location-suggestions li {
  padding: 12px 16px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

#hero-location-suggestions li:hover {
  background-color: #f1fdf5;
  color: #0c8a43;
}

.search-btn {
  background: #d11124;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-btn:hover {
  background: #b00e1f;
  box-shadow: 0 4px 12px rgba(209, 17, 36, 0.3);
}

.location-error-message {
  background-color: #d11124;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 6px;
  margin-top: 10px;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.location-error-message.fade-out {
  opacity: 0;
}

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

@media (max-width: 768px) {
  .labor-search-box {
    padding: 20px;
  }

  .tabs .tab {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
  }

  .hero-search-bar {
    flex-direction: column;
    gap: 12px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }
}
</pre></body></html>