 .dropdown {
    width: 100%;
    max-width: 700px;
  }
  .menu-row {
    display: flex;
    gap: 10px;
  }
  .dropdown-item {
  flex: 1;
  padding: 7px;
  text-align: center;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

  .dropdown-item:hover {
    background: #ddd;
    color: #e70404;
  }
  .dropdown-item.active {
    background: #bbb;
    color: #000000;
  }
  .dropdown-paragraph {
    margin-top: 15px;
    padding: 15px;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: none;
  }