/* Button styling (red text, black bg, red border) */
.dropdown-button {
  position: relative; /* Needed for absolute positioning of dropdown */
  background: black;
  color: red;
  border: 2px solid red;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
}

/* Dropdown content - hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Appears below button */
  left: 0;
  background: white;
  border: 2px solid red;
  min-width: 200px;
  z-index: 1001;
  margin-top: 5px;
}

/* Show dropdown when active */
.dropdown-button:focus-within .dropdown-content,
.dropdown-content.show {
  display: block;
}

/* Menu items */
.vertical-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical-links li a {
  color: black;
  padding: 8px 16px;
  display: block;
  text-decoration: none;
}

.vertical-links li a:hover {
  background-color: #f0f0f0;
}