.vnrw-overview {
  width: 100%;
  --gold: #A1844A;
  --white: #ffffff;
  --muted: rgba(255,255,255,.65);
  --field-bg: rgba(161, 132, 74, 0.05);
  --panel-bg: rgba(0,0,0,.88);
  --panel-soft: rgba(161, 132, 74, 0.08);
  --border-soft: rgba(161, 132, 74, .35);
  --border-light: rgba(161, 132, 74, .18);
}

.vnrw-overview .vnrw-filters {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
  background: var(--panel-soft);
}

.vnrw-overview .vnrw-filter-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1fr 1.5fr;
  gap: 12px;
}

@media (max-width: 1100px) {
  .vnrw-overview .vnrw-filter-row {
    grid-template-columns: 1fr 1fr;
  }
}

.vnrw-overview .vnrw-field label {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Inputs + Selects */
.vnrw-overview input,
.vnrw-overview select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid var(--gold);
  background: var(--field-bg);
  color: var(--white);
  box-shadow: none;
  outline: none;
}

/* Suchfeld exakt wie Selects: Hintergrund + weißer Text + keine Browser-Styles */
.vnrw-overview input[type="search"],
.vnrw-overview input[type="text"] {
  -webkit-appearance: none;
  appearance: none;
  background: var(--field-bg);
  color: var(--white);
  border: 1px solid var(--gold);
}

/* Placeholder */
.vnrw-overview input::placeholder {
  color: var(--muted);
  opacity: 1;
}

/* Focus */
.vnrw-overview input:focus,
.vnrw-overview select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  outline: none;
}

/* iOS / Safari Clear-Button entfernen (sonst wirkt's "anders" als Select) */
.vnrw-overview input[type="search"]::-webkit-search-cancel-button,
.vnrw-overview input[type="search"]::-webkit-search-decoration,
.vnrw-overview input[type="search"]::-webkit-search-results-button,
.vnrw-overview input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Select mit goldenem Pfeil */
.vnrw-overview select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-color: var(--field-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23A1844A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

.vnrw-overview select::-ms-expand {
  display: none;
}

.vnrw-overview select option {
  background: #111111;
  color: #ffffff;
}

.vnrw-overview .vnrw-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.vnrw-overview .vnrw-actions button {
  padding: 10px 14px;
  border-radius: 5px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  box-shadow: none;
  transition: all 0.2s ease;
}

.vnrw-overview .vnrw-actions button:hover,
.vnrw-overview .vnrw-actions button:focus {
  background: var(--gold);
  color: #111111;
  border-color: var(--gold);
  box-shadow: none;
  outline: none;
}

.vnrw-overview .vnrw-reset {
  color: var(--gold);
  opacity: .9;
  text-decoration: none;
}

.vnrw-overview .vnrw-reset:hover {
  text-decoration: underline;
}

.vnrw-overview .vnrw-table-wrap {
  overflow: auto;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(0,0,0,.5);
}

.vnrw-overview .vnrw-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.vnrw-overview .vnrw-table th,
.vnrw-overview .vnrw-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  color: var(--white);
}

.vnrw-overview .vnrw-table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--gold);
  background: rgba(161, 132, 74, 0.08);
}

.vnrw-overview .vnrw-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.vnrw-overview .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  vertical-align: text-bottom;
  color: var(--gold);
  opacity: .9;
}