.custom-dropdown-container {
    position: relative;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: yellow;
    color: black;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 10px 0;
}

.custom-dropdown-header {
    padding: 5px 15px;
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.custom-dropdown-divider {
    margin: 5px 0;
    border: 0;
    border-top: 1px solid rgb(197, 197, 0);
}

.custom-dropdown-item {
    display: block;
    padding: 8px 15px;
    color: black;
    text-decoration: none;
    transition: background 0.2s;
}

.custom-dropdown-item:hover {
    background: rgb(197, 197, 0);
}
