html, body {
  min-height: 100%;
  margin-left: 100px;
  margin-right: 100px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  flex: 1;
  font-family: Arial, sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

#lists-container {
  flex: 1;
}

.logo {
  display: block;
  margin: 30px auto;
  width: 200px;
}

.search-wrapper {
  position: relative;
  display: inline-block;
  justify-content: center;
  margin: 20px auto;
  width: calc(100% - 60px);
  max-width: 400px;
}

.filter-input {
  width: 100%;
  padding: 6px 20px 6px 6px;
  font-size: 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background: rgba(0, 0, 0, 0.72);
  color: #cfcbba;
}

#clear-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  display: none;
}


.filter-input::placeholder {
  color: #cfcbba;
}

.list-section {
  margin: 16px 0;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 3px;
}

.list-header {
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.72);
  padding: 10px;
  color: #fdf8e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding: 0 20px 20px;
  color: #fdf8e3;
}

.columns {
  display: flex;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.column a {
  display: block;
  margin: 10px 0;
  border-radius: 4px;
  padding: 4px;
  text-decoration: none;
  color: #fdf8e3;
  transition: background-color 0.3s;
}

.column a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px;
}

.id {
  font-size: 1em;
  font-weight: bold;
}

.address {
  font-size: 0.7em;
}

.footer {
  text-align: center;
  padding: 10px;
  color: #cfcbba;
  font-size: 0.5em;
  background: rgba(0, 0, 0, 0.6);
  margin-top: auto;
}

.list-counter {
  padding-left: 10px;
  font-size: 0.7em;
  color: #cfcbba;
}

.error-box {
  max-width: 600px;
  margin: 100px auto;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 3px;
  text-align: center;
}

.error-box .error-header {
  font-weight: bold;
  background: rgba(0, 0, 0, 0.72);
  padding: 10px;
  color: #fdf8e3;
  font-size: 2em;
}

.error-box .error-content {
  padding: 20px;
  color: #fdf8e3;
  font-size: 1.3em;
}

.error-box .error-link {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fdf8e3;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 0.8em;
}

.error-box .error-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.leaflet-control-custom {
  background-color: white;
  border: 1px solid #ccc;
  font-weight: bold;
  text-align: center;
  line-height: 26px;
  width: 30px;
  height: 30px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.65);
}


.leaflet-control label {
  cursor: pointer;
  user-select: none;
}
