body, html {
  margin: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

#map {
  height: 100%;
  width: 100%;
}

#toggleSidebar {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1200;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  background: #2c7be5;
  color: white;
  font-size: 15px;
  cursor: pointer;
}

#sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 100%;
  background: #f8f9fa;
  padding: 15px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: transform 0.3s ease;
}

#sidebar.hidden {
  transform: translateX(-100%);
}

.table-container {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 10px;
  border: 1px solid #ddd;
}

#reportsTable {
  width: 100%;
  border-collapse: collapse;
}

#reportsTable th, #reportsTable td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: center;
}

#reportsTable th {
  background: #eee;
}

#recenterBtn {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  background: #2c7be5;
  color: white;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

#reportFormContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1500;
  width: 350px;
  font-size: 16px;
}

#reportFormContainer.hidden {
  display: none;
}

#reportForm select, #reportForm button {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

#reportForm button[type="submit"] {
  background: #2c7be5;
  color: #fff;
  border: none;
  cursor: pointer;
}

#reportForm button#cancelBtn {
  background: #ccc;
  color: #000;
  border: none;
  cursor: pointer;
}
