*, *::before, *::after {
  box-sizing: border-box;
}

.nlm-bayi-map-section {
  width: 100%;
  padding: 70px 20px;
  background: #f7f8f8;
  font-family: Arial, sans-serif;
}

.nlm-bayi-title {
  text-align: center;
  margin-bottom: 35px;
}

.nlm-bayi-title h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

.nlm-bayi-title p {
  margin: 12px auto 0;
  max-width: 620px;
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

.nlm-bayi-map-wrap {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.nlm-bayi-map-wrap iframe {
  display: block;
  width: 100%;
}

.nlm-bayi-filter {
  width: 100%;
  max-width: 650px;
  margin: 28px auto 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.nlm-bayi-filter select {
  width: 100%;
  height: 45px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  background: #fff;
  color: #555;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.nlm-bayi-filter select:hover:not(:disabled) {
  border-color: #b0b0b0;
}

.nlm-bayi-filter select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nlm-bayi-table-wrap {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.nlm-bayi-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.nlm-bayi-table th {
  background: #eeeeee;
  color: #555;
  padding: 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.nlm-bayi-table td {
  border-bottom: 1px solid #eee;
  color: #666;
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.nlm-bayi-table tbody tr:hover td {
  background: #fafafa;
}

.nlm-bayi-table .bos-satir td {
  text-align: center;
  padding: 32px 12px;
  color: #aaa;
  font-style: italic;
}

@media (max-width: 768px) {
  .nlm-bayi-map-section {
    padding: 45px 14px;
  }
  .nlm-bayi-title h1 {
    font-size: 28px;
  }
  .nlm-bayi-filter {
    flex-direction: column;
    gap: 10px;
  }
  .nlm-bayi-table-wrap {
    padding: 10px;
  }
}