.eightam-b2b-list-dropdown {
    position: relative;
    display: inline-block;
}

.eightam-b2b-list-dropdown-button {
    background-color: #8e3200;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
}

.eightam-b2b-list-dropdown-button:hover {
    background-color: #a03800;
}

.eightam-b2b-list-dropdown-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eightam-b2b-list-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.eightam-b2b-list-dropdown-content.show {
    display: block;
}

.eightam-b2b-list-dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.eightam-b2b-list-dropdown-item:last-child {
    border-bottom: none;
}

.eightam-b2b-list-dropdown-item:hover {
    background-color: #f1f1f1;
}

.eightam-b2b-list-dropdown-item .checkmark {
    display: none;
    color: #8e3200;
}

.eightam-b2b-list-dropdown-item.selected .checkmark {
    display: inline-block;
}

/* Hamburger with plus icon */
.eightam-b2b-list-hamburger-plus {
    position: relative;
    width: 16px;
    height: 16px;
}

.eightam-b2b-list-hamburger-plus .line {
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: white;
    left: 0;
}

.eightam-b2b-list-hamburger-plus .line:nth-child(1) {
    top: 3px;
}

.eightam-b2b-list-hamburger-plus .line:nth-child(2) {
    top: 7px;
}

.eightam-b2b-list-hamburger-plus .line:nth-child(3) {
    top: 11px;
}

.eightam-b2b-list-hamburger-plus .plus {
    position: absolute;
    width: 8px;
    height: 8px;
    right: -2px;
    bottom: -2px;
    background-color: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eightam-b2b-list-hamburger-plus .plus::before,
.eightam-b2b-list-hamburger-plus .plus::after {
    content: '';
    position: absolute;
    background-color: white;
}

.eightam-b2b-list-hamburger-plus .plus::before {
    width: 4px;
    height: 1px;
}

.eightam-b2b-list-hamburger-plus .plus::after {
    width: 1px;
    height: 4px;
}
