.rnDropdown {
    position: relative;
    display: inline-block;
}

.rnDropdownButton {
    cursor: pointer;
    display: inline-block;
}

.rnDropdownMenu {
    display: block;    
    padding: 0.5rem 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    z-index: 999999999;
}

.rnDropdownItem {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
}

.rnDropdownItem:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

/* Split button styles */
.rnButtonContainer {
    display: inline-flex;
    position: relative;
}

.rnMainPart {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: 0;
}

.rnTogglePart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.rnToggleIcon {
    margin-left: 5px;
    display: inline-flex;
    cursor: pointer;
}

.rnDropdown button:focus{
    box-shadow: none !important;
}