.dropdown {
    position: absolute;
    right: 0;
    /* align to right margin */
    top: 32px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: right;
    /* right-justify text */
    z-index: 1000;
    color: black;
}

.dropdown-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.dropdown-label div:hover {
    background: #746767;
}

