.responsive-toggle-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.rtm-items {
  display: flex;
  flex-flow: nowrap;
  gap: 6px;
  overflow: hidden;
  padding: 6px;
  background: #f1f5f9;
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.rtm-items > div {
  text-align: center;
  padding: 12px 16px;
  min-width: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rtm-items > div:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #334155;
}

.rtm-items > div.rtm-active {
  color: #1e293b;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.rtm-overflow-hidden {
  display: none !important;
}

/* "..." button */
.rtm-more-btn {
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  color: #64748b;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 2px;
  line-height: 1;
}

.rtm-more-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #334155;
}

/* Dropdown */
.rtm-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  z-index: 200;
  min-width: 180px;
  padding: 6px 0;
}

.rtm-dropdown.rtm-open {
  display: block;
}

.rtm-dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #475569;
  white-space: nowrap;
  text-align: left;
}

.rtm-dropdown-item:hover {
  background: #f1f5f9;
  color: #1e293b;
}
