#menu-hamburger-usa {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  overflow: hidden;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ff0099;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  font-size: 14px;
  color: white;
}

.hamburger {
  font-size: 24px;
  line-height: 1;
  margin-top: 2px;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: -340px;
  width: 300px;
  height: 100vh;
  background: #000;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  padding: 20px;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  color: white;
}

.menu-panel.open {
  left: 0;
}

.menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

.menu-header-text h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.menu-header-text p {
  font-size: 13px;
  margin-bottom: 15px;
  color: #ccc;
}

.state-item {
  margin-bottom: 10px;
}

.state-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.state-header:hover {
  background: #222;
}

.state-header.selected {
  background: #ff0099;
  color: white;
}

.city-list {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
}

.state-item.open .city-list {
  display: block;
}

.city-list li a {
  font-size: 14px;
  color: #ffb6d9;
  display: block;
  padding: 3px 0;
  font-weight: bold;
}

.city-list li a:hover {
  text-decoration: underline;
}

.arrow {
  font-size: 12px;
  margin-right: 6px;
  transition: transform 0.2s ease-in-out;
}

.state-item.open .arrow {
  transform: rotate(90deg);
}