.split-button {
  height: 46px;
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: visible;
  font-family: sans-serif;

  a, button {
    border: none;
    background: #1976d2;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
  }
  a:hover, button:hover {
    background: #1565c0;
  }
  .dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-left: 1px solid rgba(255,255,255,0.3);
  }
  .dropdown {
    display: none;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 220px;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
    z-index: 1000;

    a, button {
      display: flex;
      align-items: center;
      width: 100%;
      background: white;
      color: #333;
      padding: 8px 12px;
      font-size: 14px;

      .material-symbols-outlined {
        margin-right: 8px;
        font-size: 18px;
      }
    }
    a:hover, button:hover {
      background: #f0f0f0;
    }
  }
}

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