html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

 /*Select2 CSS*/

.select2-container--default .select2-selection--multiple {
    background-color: #1f1f2e !important; /* match card background */
    border: 1px solid #444;
    color: #fff;
}

    /* Tags inside selected input */
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #2a2a3d !important;
        color: #ffffff !important;
        border: 1px solid #444;
    }

    /* Remove icon (X) inside tag */
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: #ccc !important;
    }

    /* Search text field inside the input */
    .select2-container--default .select2-selection--multiple .select2-search__field {
        background-color: #1f1f2e !important;
        color: #fff !important;
    }

/* Dropdown background */
.select2-dropdown {
    background-color: #1f1f2e !important;
    color: #fff;
    border: 1px solid #333;
}

/* All options */
.select2-results__option {
    background-color: #1f1f2e !important;
    color: #fff !important;
}

    /* Selected options (inside dropdown, grayed out) */
    .select2-results__option[aria-selected="true"] {
        background-color: #2a2a3d !important;
        color: #bbb !important;
    }

/* Hover (highlighted option) */
.select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #333647 !important; /* dark gray */
    color: #fff !important;
}

/* Prevent selected ones turning white on hover */
.select2-results__option--highlighted[aria-selected="true"] {
    background-color: #333647 !important;
    color: #fff !important;
}

/* Optional: Scrollbar styling */
.select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #444;
}