/**
 * @file
 * CSS fix to ensure dropdown buttons look identical to dropdown links for SEO compliance.
 */

/* Make dropdown buttons look identical to dropdown links for SEO crawlability */
.dropdown-item[type="button"] {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item[type="button"]:hover,
.dropdown-item[type="button"]:focus {
  background-color: var(--bs-dropdown-link-hover-bg);
  color: var(--bs-dropdown-link-hover-color);
}