body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f5f5f5;
}

h1 {
  color: #333;
  text-align: center;
}

p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#map {
  width: 60%;
  height: 600px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#stylePanel {
  width: 40%;
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-height: 600px;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="file"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="color"] {
  width: 50px;
  height: 30px;
  vertical-align: middle;
}

input[type="range"] {
  width: 70%;
  vertical-align: middle;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
}

button:hover {
  background-color: #45a049;
}

.button-container {
  margin-top: 20px;
  text-align: center;
}

.style-section {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  border-left: 4px solid #4CAF50;
}

.style-type-header {
  font-weight: bold;
  font-size: 18px;
  margin: 20px 0 10px 0;
  padding-bottom: 5px;
  border-bottom: 2px solid #ddd;
}

.no-styles {
  color: #888;
  font-style: italic;
  text-align: center;
  margin: 30px 0;
}

h3 {
  margin-top: 0;
  color: #333;
  font-size: 16px;
}

.style-id-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.style-id-input {
  flex: 1;
  margin-right: 10px;
}

.update-id-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4
}

.button-container {
  margin: 15px 0;
  text-align: center;
}

#simplifyStylesBtn {
  background-color: #673AB7;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#simplifyStylesBtn:hover {
  background-color: #5E35B1;
}

#simplifyStylesBtn:active {
  background-color: #512DA8;
}

