.custom-flavor-dropdown {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #003D34;
            width: 100%; /* שינינו לרוחב מלא */
            height: 52px;
            background-color: #f4fdfd;
            padding: 0 10px;
            font-family: 'Rubik', sans-serif;
            font-weight: 400;
            position: relative;
        }

        .custom-flavor-dropdown select {
            border: none;
            background: none;
            font-size: 20px;
            color: #003D34;
            flex-grow: 1;
            outline: none;
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .custom-flavor-dropdown select option {
            color:#003D34;
        }

        .custom-flavor-dropdown .dropdown-icon {
            font-size: 18px;
            color: #003D34;
            margin-left: 10px;
            margin-right: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            border-right: 1px solid #075754;
            padding-left: 0px;
            padding-right: 18px;
        }


#flavor_error_select {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none; /* מוסתר כברירת מחדל */
}