/* Print Specific styles */
@media print {

    /* removes the border */
    #result {
        border: none !important;
    }

    /* removes the border */
    #result_new {
        border: none !important;
    }

    /* removes padding and other styling when printing */
    .print-clean {
        background-color: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Hide elements you don't want to print */
    .navbar,
    .footer,
    .no-print {
        display: none;
    }
}

/* Style the main container of Select2 */
.select2-container {
    box-sizing: border-box;
}

/* Style the select2 input box itself */
.select2-container .select2-selection--multiple {
    background-color: transparent;
    border: none;
    border-bottom: 2px dashed #2c5282;
    /* change solid to dotted */
    border-radius: 0;
    height: 32px;
    /* Fixed height */
    line-height: 20px;
}

/* Style the individual selected choices */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: transparent;
    border: none;
    padding: 5px 10px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

/* Remove the border from the dropdown */
.select2-container--open .select2-dropdown {
    border: none;
}

/* Style the select2 dropdown */
.select2-dropdown {
    border: 2px solid #2c5282;
    border-top: none;
}

/* Rest of your styles... */

/* This will target the dropdown list of Select2 */
.select2-container .select2-results {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

/* If you want to target the placeholder text of Select2 */
.select2-container .select2-selection__placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

/* To target the search input inside the Select2 dropdown */
.select2-container .select2-search__field {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}