.select2-container {
    width: 100% !important;
    min-width: 100% !important;
    display: flex !important;
    flex-direction: column;
}

.selection {
    display: flex;
    align-items: center;
    height: 100% !important;
}


.select2-selection {
    min-width: 0;
    max-width: 100%;

    display: flex !important;
    justify-content: flex-start;
    align-items: center !important;
    flex-grow: 1;
    box-shadow: 4px 4px var(--shadow);
    border-top: 1px solid var(--highlight-3);
    border-left: 1px solid var(--highlight-3);
    border-radius: 0 !important;
    font-size: 1rem;
    padding: 1rem;
    background: var(--bg-input) !important;
    color: var(--text-dark) !important;
    height: 100% !important; /* For venue field */

}

/* Where the user input is shown */
.select2-search__field {
    margin: 0 !important;
    color: var(--text-dark) !important;
    width: 100% !important;
}

/* Entered values */
.select2-selection__choice {
    margin-right: 0.5rem !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    margin-right: 0.5rem;
}

/* The delete button on the right */
.select2-selection__clear {
    margin: 0 0.5rem !important;
}

.select2-selection__clear:hover {
    text-decoration: underline;
}

/* The dropdown menu */
.select2-results__option {
    background: var(--bg-input-light);
    color: var(--text-dark)
}

.select2-results__option--highlighted {
    background: var(--blue) !important;

}
