/* MacedoniaDenes-friendly design (clean news card, accent-ready)
   You can override colors via CSS variables:
   --rvo-edis-accent, --rvo-edis-bg, --rvo-edis-text, --rvo-edis-muted, --rvo-edis-border
*/
.rvo-edis-wrap{
  --rvo-edis-accent: #c40001;
  --rvo-edis-bg: #ffffff;
  --rvo-edis-text: #111827;
  --rvo-edis-muted: #6b7280;
  --rvo-edis-border: rgba(17,24,39,.12);
  --rvo-edis-soft: rgba(196,0,1,.08);

  border:1px solid var(--rvo-edis-border);
  border-radius:16px;
  padding:16px;
  margin: 14px 0;
  background: var(--rvo-edis-bg);
  color: var(--rvo-edis-text);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.rvo-edis-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-bottom:10px;
  border-bottom: 1px solid var(--rvo-edis-border);
  margin-bottom: 12px;
}

.rvo-edis-title{
  margin:0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.2px;
  display:flex;
  align-items:center;
  gap:10px;
}
.rvo-edis-title:before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--rvo-edis-accent);
  display:inline-block;
}

.rvo-edis-source{
  font-size: 13px;
  text-decoration: none;
  color: var(--rvo-edis-muted);
}
.rvo-edis-source:hover{ color: var(--rvo-edis-accent); }

.rvo-edis-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:end;
  margin: 10px 0 14px;
}
.rvo-edis-filters label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size: 12px;
  color: var(--rvo-edis-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.rvo-edis-filter-type,
.rvo-edis-filter-q{
  border:1px solid var(--rvo-edis-border);
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
  min-width: 220px;
  background: #fff;
  color: var(--rvo-edis-text);
  outline: none;
}
.rvo-edis-filter-type:focus,
.rvo-edis-filter-q:focus{
  border-color: rgba(196,0,1,.35);
  box-shadow: 0 0 0 4px rgba(196,0,1,.12);
}

.rvo-edis-table-wrap{ overflow:auto; border-radius: 12px; border:1px solid var(--rvo-edis-border); }
.rvo-edis-table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.rvo-edis-table thead th{
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fafafa;
  color: var(--rvo-edis-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .35px;
  font-weight: 800;
  padding: 12px 12px;
  border-bottom: 1px solid var(--rvo-edis-border);
  white-space: nowrap;
}
.rvo-edis-table tbody td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--rvo-edis-border);
  vertical-align: top;
}
.rvo-edis-table tbody tr:nth-child(even) td{ background: rgba(0,0,0,.015); }
.rvo-edis-table tbody tr:hover td{ background: var(--rvo-edis-soft); }

.rvo-edis-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  border: 1px solid var(--rvo-edis-border);
  background:#fff;
}
.rvo-edis-badge:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  display:inline-block;
  background: #9ca3af;
}
.rvo-edis-badge-planned{
  border-color: rgba(196,0,1,.22);
  background: rgba(196,0,1,.06);
}
.rvo-edis-badge-planned:before{ background: var(--rvo-edis-accent); }

.rvo-edis-badge-unplanned{
  border-color: rgba(245,158,11,.28);
  background: rgba(245,158,11,.10);
}
.rvo-edis-badge-unplanned:before{ background: #f59e0b; }

.rvo-edis-dt{ white-space: nowrap; font-variant-numeric: tabular-nums; }
.rvo-edis-voltage{ white-space: nowrap; color: var(--rvo-edis-muted); font-weight: 700; }

.rvo-edis-empty{
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.03);
  font-size: 14px;
  color: var(--rvo-edis-text);
}
.rvo-edis-hint{
  margin-top:8px;
  font-size: 12px;
  color: var(--rvo-edis-muted);
}

/* Mobile: turn table into cards */
@media (max-width: 720px){
  .rvo-edis-filter-type, .rvo-edis-filter-q{ min-width: 100%; }
  .rvo-edis-table-wrap{ border:none; }
  .rvo-edis-table thead{ display:none; }
  .rvo-edis-table, .rvo-edis-table tbody, .rvo-edis-table tr, .rvo-edis-table td{
    display:block;
    width:100%;
  }
  .rvo-edis-table tr{
    border:1px solid var(--rvo-edis-border);
    border-radius:14px;
    overflow:hidden;
    margin-bottom: 10px;
    background:#fff;
  }
  .rvo-edis-table tbody td{
    border-bottom: 1px solid var(--rvo-edis-border);
    padding: 10px 12px;
    background:#fff !important;
  }
  .rvo-edis-table tbody td:last-child{ border-bottom:none; }
  .rvo-edis-table tbody td[data-label]{
    display:flex;
    justify-content:space-between;
    gap:12px;
  }
  .rvo-edis-table tbody td[data-label]:before{
    content: attr(data-label);
    font-size: 12px;
    color: var(--rvo-edis-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .35px;
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark){
  .rvo-edis-wrap{
    --rvo-edis-bg: rgba(17,24,39,.85);
    --rvo-edis-text: #f9fafb;
    --rvo-edis-muted: rgba(249,250,251,.70);
    --rvo-edis-border: rgba(249,250,251,.14);
    --rvo-edis-soft: rgba(196,0,1,.18);
    box-shadow: 0 10px 26px rgba(0,0,0,.35);
  }
  .rvo-edis-filter-type, .rvo-edis-filter-q{ background: rgba(17,24,39,.85); }
  .rvo-edis-table thead th{ background: rgba(249,250,251,.06); }
  .rvo-edis-table tbody tr:nth-child(even) td{ background: rgba(249,250,251,.03); }
  .rvo-edis-empty{ background: rgba(249,250,251,.06); }
}
