#currency-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

#currency-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px 5px 10px; /* espace à droite pour la flèche */
    font-size: 13px;
    height: 30px;
    width: 60px;
    box-sizing: border-box;
    cursor: pointer;
}

/* Flèche personnalisée */
#currency-switcher::after {
    content: "▼";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
    
}