.dropdown-categorie-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.dropdown-arrow-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-categorie-select {
    font-size: 20px;
    padding: 10px 40px 10px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: linear-gradient(135deg, rgb(6,147,227) 0%, rgb(174,0,0) 100%);
    color: white!important;

    /* QUI dentro */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    cursor: pointer;
}


.dropdown-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    color: #fff; /* colore della frecia */
}

.dropdown-categorie-select option {
    background: #e6e6e6;
color: dimgray; /* colore deil testo del menu categorie */
    font-size: 18px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.25);
}

.dropdown-categorie-select option:hover {
    background: #cccccc;
    color: #000;
}





