.pkr-currency-switcher {
    margin-bottom: 10px;
}
.pkr-currency-switcher {
    position: fixed;
    top: 50px;       /* distance from top */
    right: 20px;     /* distance from right */
    z-index: 9999;   /* always on top */
    margin: 0 !important;
}



.currency-dropdown {
    padding: 10px 15px;
    background: #000; /* deep purple */
    color: #fff;
    border: 1px solid #000; /* lighter purple border */
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    outline: none;
    width: 150px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    appearance: auto; /* default arrow restored */
}

/* Hover */
.currency-dropdown:hover {
    background: #560238;
    border-color: #560238;
}

/* Focus */
.currency-dropdown:focus {
    border-color: #b066ff;
    box-shadow: 0 0 4px rgba(176, 102, 255, 0.6);
}
