/* Government Style - Clean, Minimal */
body {
  font-family: "Roboto", "Noto Sans Devanagari", sans-serif;
  background-color: #f5f7fa;
  color: #212529;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: none;
  background-color: white;
}

.card-header {
  background-color: #0b3d91;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 8px 8px 0 0 !important;
  padding: 0.75rem 1.25rem;
}

.btn-primary {
  background-color: #0b3d91;
  border-color: #0b3d91;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
  background-color: #0a2f6f;
  border-color: #0a2f6f;
}

.btn-outline-primary {
  color: #0b3d91;
  border-color: #0b3d91;
}

.btn-outline-primary:hover {
  background-color: #0b3d91;
  color: white;
}

.accent-text {
  color: #ff9933;
}

.bg-accent {
  background-color: #ff9933;
}

/* Dropdown styling */
.form-select,
.form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-family: "Roboto", "Noto Sans Devanagari", sans-serif;
}

.form-select:focus,
.form-control:focus {
  border-color: #0b3d91;
  box-shadow: 0 0 0 0.2rem rgba(11, 61, 145, 0.25);
}

/* Map container */
.map-container {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}

.map-container img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Worker sections */
.worker-type {
  margin-bottom: 2rem;
}

.worker-type h4 {
  background-color: #e9ecef;
  padding: 0.5rem;
  border-left: 4px solid #ff9933;
  margin-bottom: 1rem;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
