/* Completely solid dropdown with no transparency */
.solid-dropdown {
    position: relative;
    display: inline-block;
}

.solid-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background-color: #000000;
    border: 2px solid #333333;
    width: 250px;
    border-radius: 12px;
    z-index: 9999;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    display: none;
}

.solid-dropdown-menu.show {
    display: block;
}

.solid-dropdown-menu-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: background-color 0.2s;
}

.solid-dropdown-menu-item:hover {
    background-color: #333333;
    color: white;
    text-decoration: none;
}

.solid-dropdown-arrow {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #000000;
}

.solid-dropdown-divider {
    border-top: 2px solid #333333;
    margin: 8px 0;
}

.solid-dropdown-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}