﻿.simple-dropdown-marcom {
    width: 270px;
    min-height: 48px;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 1px solid #D9D9D9;
    border-radius: 4px; /* remove rounded corners */

    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: #333333;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    overflow-wrap: break-word;
    white-space: normal;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Custom arrow */
.simple-dropdown-marcom {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23727171' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 40px;
}

    /* Options */
    .simple-dropdown-marcom option {
        max-width: 270px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        color: #333333;
    }

    /* Hover state */
    .simple-dropdown-marcom:hover {
        background-color: #F0FBFF;
        border-color: #D9D9D9;
    }
