body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 2em;
  background: #f8f9fa;
  color: #222;
}
h1 {
  margin-bottom: 0.5em;
  color: #2a4d69;
}
#filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em 2em;
  align-items: flex-end;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1em 1.5em 0.5em 1.5em;
  margin-bottom: 1.5em;
}
#filters label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1em;
  color: #2a4d69;
  margin-bottom: 0.5em;
}
#filters select {
  margin-top: 0.3em;
  padding: 0.3em 0.7em;
  border-radius: 5px;
  border: 1px solid #b0b8c1;
  background: #f5f7fa;
  font-size: 1em;
  min-width: 120px;
  max-width: 220px;
  transition: border 0.2s;
}
#filters select:focus {
  border: 1.5px solid #2a4d69;
  outline: none;
  background: #fff;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
th, td {
  border: 1px solid #e0e4ea;
  padding: 10px 8px;
  text-align: left;
  font-size: 1em;
}
th {
  background: #e9f1fa;
  color: #2a4d69;
  font-weight: 600;
  letter-spacing: 0.02em;
}
tr:nth-child(even) {
  background: #f6fafd;
}
tr.crossed td {
  text-decoration: line-through;
  color: #888;
  background: #fbeaea !important;
}
tr.grayout td {
  color: #aaa;
  background: #f2f2f2 !important;
}
@media (max-width: 900px) {
  #filters {
    flex-direction: column;
    gap: 0.5em 0;
    padding: 1em 0.5em 0.5em 0.5em;
  }
  #filters label {
    min-width: 0;
  }
  table, th, td {
    font-size: 0.95em;
  }
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}
#map {
  width: 100vw;
  height: 100vh;
  margin-top: 54px;
}
@import "node_modules/ol/ol.css";

html, body {
  margin: 0;
  height: 100%;
}
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
