/* New POTA Parks – matches server status styling */

.new-pota-section {
  margin-top: 20px;
  padding: 20px;
  background-color: #444;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #333;
}

.new-pota-header h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.new-pota-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 12px;
}

.new-pota-controls label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.new-pota-controls select,
.new-pota-controls button {
  background-color: #333;
  border: 1px solid #555;
  color: #fff;
  border-radius: 4px;
  padding: 5px;
  font-size: 0.9rem;
}

.new-pota-controls button {
  cursor: pointer;
  font-weight: 600;
}

.new-pota-controls button:hover {
  background-color: #555;
}

.new-pota-results {
  max-height: 260px;
  overflow-y: auto;
  background-color: #333;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #222;
}

.new-pota-results ol {
  margin: 0;
  padding-left: 20px;
  font-size: 0.85rem;
}

.new-pota-results li {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #555;
}

.new-pota-results li:last-child {
  border-bottom: none;
}

.new-pota-results a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.new-pota-results a:hover {
  text-decoration: underline;
}

.new-pota-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 0.85rem;
}

.new-pota-pagination button {
  background-color: #333;
  border: 1px solid #555;
  color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
}

.new-pota-pagination button:hover:not(:disabled) {
  background-color: #555;
}

.new-pota-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
