.currency-switcher {
    position: fixed;
    z-index: 9999;
    margin: 1em;
    padding: 1em;

    background-color: #f1f2f6;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
}

.currency-switcher.position-center-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.currency-switcher.position-bottom-left {
    bottom: 0;
    left: 0;
}

.currency-switcher.position-middle-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.currency-switcher.position-bottom-right {
    bottom: 0;
    right: 0;
}

.currency-switcher.position-center-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.currency-switcher select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;

    color-scheme: light;
}

.currency-switcher select:hover {
    border-color: #999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.currency-switcher select:focus {
    outline: none;
    border-color: #3742fa;
    box-shadow: 0 0 0 1px #3742fa;
}

.currency-switcher.theme-dark {
    background-color: #2f3542;
    border-color: #141414;
}

.currency-switcher.theme-dark select {
    background-color: #2f3542;
    color: #ffffff;
    border-color: #141414;
    color-scheme: dark;
}

.currency-switcher.theme-dark select:hover {
    border-color: #666;
}

.currency-switcher.theme-dark select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.currency-switcher.theme-dark select option {
    background-color: #333;
    color: #fff;
}

/* Shortcode version styles */
.currency-switcher-shortcode {
    display: inline-block;
    margin: 10px 0;
    padding: 1em;
    background-color: #f1f2f6;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
}

.currency-switcher-shortcode select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
    color-scheme: light;
}

.currency-switcher-shortcode select:hover {
    border-color: #999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.currency-switcher-shortcode select:focus {
    outline: none;
    border-color: #3742fa;
    box-shadow: 0 0 0 1px #3742fa;
}

.currency-switcher-shortcode.theme-dark {
    background-color: #2f3542;
    border-color: #141414;
}

.currency-switcher-shortcode.theme-dark select {
    background-color: #2f3542;
    color: #ffffff;
    border-color: #141414;
    color-scheme: dark;
}

.currency-switcher-shortcode.theme-dark select:hover {
    border-color: #666;
}

.currency-switcher-shortcode.theme-dark select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.currency-switcher-shortcode.theme-dark select option {
    background-color: #333;
    color: #fff;
}
