/* WC Multicurrency Switcher – frontend styles */
.wc-mcs-switcher {
    display: inline-flex;
    align-items: center;
    position: relative;
    
}

.wc-mcs-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size:14px;
    padding: 6px 34px 6px 12px;
    transition: border-color 0.2s;
}
.wc-mcs-select option {
    background-color: #fff;
    color: #000;
}
.wc-mcs-select:hover,
.wc-mcs-select:focus {
    border-color: #96588a;
    outline: none;
}

.wc-mcs-loading .wc-mcs-select {
    opacity: 0.6;
    cursor: wait;
}

/* Admin thank-you page notice */
.wc-mcs-currency-notice {
    background: #f0f6fc;
    border-left: 4px solid #96588a;
    padding: 8px 14px;
    margin: 1em 0;
    font-size: 0.9em;
    color: #555;
}
