/* stylemaps.css */
#master-plan-container {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 5px;
  z-index: 1000;
  width: 80vw;
  max-height: 90vh;
  overflow: auto;
}
.master-plan-table {
  border-collapse: collapse;
  width: 100%;
}
.master-plan-table th,
.master-plan-table td {
  border: 1px solid #ccc;
  padding: 5px;
}
.master-plan-table th {
  background-color: #eee;
}
.master-plan-row {
  background-color: purple;
  color: white;
}
.monthly-plan-row {
  background-color: yellow;
  color: black;
}
.fact-plan-row {
  background-color: green;
  color: white;
}
.procentovka-row {
  background-color: #c1e1c1;
  color: black;
}
.gpr-row {
  background-color: blue;
  color: white;
}
#map {
  width: 100%;
  height: 100vh;
}
#chart-hamburger {
  background: #eee;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
}

