.edition-switcher {
    font-family: tenon, Adjusted Arial Fallback, sans-serif;
    margin-top: 50px;
}

#edition-select {
    font-family: tenon, Adjusted Arial Fallback, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 32px 8px 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.2s ease;
    position: relative;
    z-index: 1;
}

#edition-select:hover {
    border-color: #999;
}

#edition-select:focus {
    outline: none;
    border-color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .edition-switcher {
        margin-top: 15px;
        margin-bottom: 15px;
        position: relative;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    #edition-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 8px 28px 8px 10px;
        background-position: right 8px center;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}
