/* Wrapper to ensure it fits mobile/desktop */
.wcc-currency-wrapper {
    display: inline-block;
    margin: 10px 0;
    min-width: 150px;
    max-width: 100%;
}

.wcc-currency-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .wcc-currency-wrapper {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .wcc-currency-form select {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}