/* 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;
}

/* * Screen Reader Only Class 
 * Hides the label visually but keeps it available for screen readers/PageSpeed 
 */
.wcc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 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 */
    }
}