.wcc-currency-switcher-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

#wcc-currency-switcher {
    width: 100%;
    max-width: 200px;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.wcc-currency-switcher-wrap button {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.wcc-currency-switcher-wrap button:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    #wcc-currency-switcher {
        max-width: 150px;
        font-size: 14px;
    }

    .wcc-currency-switcher-wrap button {
        padding: 6px 10px;
        font-size: 12px;
    }
}