.main {
  background: var(--bg-color);
  padding-bottom: 80px;
}

.heroSection {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.heroSection h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.heroSection p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.mapSection {
  padding: 40px 0;
  margin-top: -30px;
}

.searchContainer {
  display: flex;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 30px;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.searchBar {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  background: var(--bg-color);
}

.searchBar:focus {
  outline: none;
}

.searchBtn {
  padding: 12px 24px;
}

.mapContainer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.tableContainer {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tableContainer h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 22px;
}

.tableResponsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.table th {
  background: var(--bg-color);
  color: var(--secondary-color);
  font-weight: 600;
}

.table tr:hover {
  background: #fdfdfd;
}

.linkBukti {
  color: var(--primary-color);
  font-weight: 500;
}

.linkBukti:hover {
  text-decoration: underline;
}

.emptyState {
  text-align: center;
  padding: 40px !important;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .searchContainer {
    flex-direction: column;
  }
}
