.oh-add-event {
  position: relative;
  width: 100%;
  max-width: none;
}

.oh-add-event__trigger {
  appearance: none;
  background: #f2f3f8;
  border: 1.2px solid #050022;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Aptos", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #050022;
}

.oh-add-event__trigger:disabled,
.oh-add-event__trigger:disabled:hover {
  cursor: not-allowed;
  opacity: 0.6;
}

.oh-add-event__trigger:focus-visible {
  outline: 2px solid #0CC2C3;
  outline-offset: 4px;
}

.oh-add-event__trigger[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.oh-add-event__chevron {
  display: inline-flex;
  width: 13px;
  height: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.oh-add-event__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.oh-add-event__trigger[aria-expanded="true"] .oh-add-event__chevron {
  transform: rotate(180deg);
}

.oh-add-event__menu {
  width: 100%;
  padding: 12px 20px 12px;
  border: 1.2px solid #050022;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  background: #f2f3f8;
  box-shadow: none;
  display: grid;
  gap: 10px;
}

.oh-add-event__menu[hidden] {
  display: none;
}

.oh-add-event__menuitem {
  display: block;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  color: #050022;
  font-weight: 600;
}

.oh-add-event__menuitem:hover {
  text-decoration: underline;
  background: transparent;
}

.oh-add-event__menuitem:focus-visible {
  outline: 2px solid #0CC2C3;
  outline-offset: 3px;
}
