/* style.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

#view-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#details {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 350px;
  max-height: 50%;
  background: rgba(0,0,0,0.7);
  padding: 10px;
  border-radius: 8px;
  overflow-y: auto;
}

#legend-control {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
  border: none;
  background: #444;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.toggle-controls {
  margin-bottom: 10px;
}

.toggle-controls label {
  display: block;
  margin-bottom: 5px;
}

#list-select {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.quake-item {
  padding: 6px;
  margin-bottom: 8px;
  border-bottom: 1px solid #555;
  cursor: pointer;
}

.quake-item:hover {
  background: rgba(255,255,255,0.1);
}

/* Mobile */
@media (max-width: 600px) {
  #details {
    width: 95%;
    left: 2.5%;
    bottom: 5%;
    max-height: 60%;
  }
}