* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #88c04f;
  border-bottom: 1px solid #518120;
  border-top: 1px solid #518120;
  color: white;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header h1 {
  flex: 1;
  margin: 0;
  font-size: 1.5rem;
}

.header-icon {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

.header-icon:hover {
  opacity: 0.8;
}

.header-back {
  order: -1;
}

.container {
  display: flex;
  flex: 1;
  width: 100%;
  height: calc(100% - 60px);
}

.left-panel {
  width: 300px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  /* border-right: 1px solid #ccc; */
  flex-shrink: 0;
  /* border-right: 1px solid #518120 */
}

.sub-panel {
  flex: 1;
  padding: 10px;
  /* border-bottom: 1px solid #518120; */
  background-color: #fff;
  overflow-y: auto;
}

.sub-panel:last-child {
  border-bottom: none;
}

.right-panel {
  flex: 1;
  width: calc(100% - 300px);
  background-color: #fff;
  overflow-y: auto;
  padding: 10px;
}

.content {
  padding: 20px;
}

.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.drawer-overlay.active {
  display: block;
}


.small-map-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-shadow: 2px 3px 7px #0000005e;
  border-radius: 10px;
  background-color: #fff;
}
.big-map-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-shadow: 2px 3px 7px #0000005e;
  border-radius: 10px;
  background-color: #f5f5f5;
}

.small-card-header {
  height: 40px;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 10px 10px 0 0;
}

.small-card-map {
  height: calc(100% - 85px);
  flex: 1;
  overflow: hidden;
  background-color: #f5f5f5;
}

.small-card-footer {
  height: 85px;
  flex-shrink: 0;
  background-color: #fff;
  color: black;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
}

.feh-title-reg{
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}
.feh-title-other{
    font-size: 11px;
    font-weight: normal;
    text-align: center;
    margin-top: 10px;
}

.listLabel1{
    font-size: 12px;
    font-weight: bold;

}
.listLabel2{
    font-size: 11px;
    color: black
}
.right-list-panel {
  position: fixed;
  width: 300px;
  height: calc(100% - 60px);
  top: 60px;
  right: -300px;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  overflow-y: auto;
  box-shadow: -2px 0 7px #0000005e;
}

.right-list-panel.active {
  right: 0;
}

.list-content {
  padding: 20px;
}

.list-content h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.list-content ul {
  list-style: none;
}

.list-content li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  /* cursor: pointer; */
}

.list-content li:hover {
  background-color: #f5f5f5;
  /* padding: 12px 0px; */
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 10px;
  }

  .header h1 {
    font-size: 1.2rem;
  }

  .container {
    flex-direction: column;
    position: relative;
  }

  .left-panel {
    position: fixed;
    width: 300px;
    height: calc(100% - 60px);
    top: 60px;
    right: -300px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    flex-direction: column;
  }

  .left-panel.active {
    right: 0;
  }

  .right-panel {
    width: 100%;
    height: 100%;
    padding: 0px;
  }

  .big-map-card {
    box-shadow: none;
    border-radius: 0px;
    background-color: #f5f5f5;
    }
}
