.split-button {
  height: 40px;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 10px;
  overflow: visible;
  font-family: var(--font-sans);

  a, button {
    border: none;
    background: #0d9488;
    color: white;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease;
  }
  a:hover, button:hover {
    background: #0f766e;
  }
  .dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }
  .dropdown {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    overflow: hidden;

    a, button {
      display: flex;
      align-items: center;
      width: 100%;
      background: white;
      color: #1c1917;
      padding: 9px 14px;
      font-size: 13px;
      font-weight: 400;
      border-radius: 0;
      transition: background 0.1s ease;
    }
    a:hover, button:hover {
      background: var(--accent-light);
      color: var(--accent);
    }
  }
}

.split-button.open .dropdown {
  display: block;
}
