.select2-hidden-accessible {
    display: none !important;
}

.select2-container {
    display: block;
    width: 100%;
}

.select2-container .select2-selection--single {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 2.5rem;
    cursor: pointer;
    border-radius: 0.375rem;
    border: 1px solid var(--tw-gray-300);
    background-color: var(--tw-light-active);
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: all 200ms ease-in-out;
}

.select2-container .select2-selection--single:hover {
    border-color: rgb(156 163 175);
}

.select2-container .select2-selection--single:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(59 130 246 / 0.5);
    border-color: rgb(59 130 246);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(107 114 128);
    font-weight: normal;
    font-size: 0.875rem;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: rgb(156 163 175);
    font-style: normal;
    font-size: 0.875rem;
}

/* Strzałka w select2 */
.select2-container .select2-selection--single .select2-selection__arrow {
    position: absolute;
    margin-right: 0.5rem;
    top: 50%;
    right: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    pointer-events: none;
    border: solid rgb(107 114 128);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-50%);
}

/* Rozwijane menu */
.select2-dropdown {
    position: absolute;
    z-index: 1050;
    width: 100%;
    background-color: var(--tw-light-active);
    border: 1px solid var(--tw-gray-300);
    border-radius: 0.375rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.25rem;
    padding: 0.5rem 0;
}

.select2-results {
    display: block;
}

.select2-results__options {
    max-height: 15rem;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.select2-results__option {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5rem;
    color: rgb(75 85 99);
}

.select2-results__option:hover {
    background-color: rgb(229 231 235);
}

.select2-results__option--highlighted {
    background-color: rgb(79 70 229);
    color: white;
}

.select2-search--dropdown {
    padding-top: 0.5rem;
}

.select2-container .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: normal;
    font-size: 0.875rem;
    height: 26px;
    margin-right: 20px;
  }


.select2-search--dropdown .select2-search__field {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid var(--tw-gray-300);
    background-color: var(--tw-light-active);
    font-size: 1rem;
    line-height: 1.5rem;
    outline: none;
    transition: border-color 200ms ease-in-out;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: rgb(79 70 229);
    box-shadow: 0 0 0 1px rgb(79 70 229);
}

/* Obsługa wielu wyborów */
.select2-container .select2-selection--multiple {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 2.5rem;
    border-radius: 0.375rem;
    border: 1px solid var(--tw-gray-300);
    background-color: var(--tw-light-active);
    padding: 0.5rem;
    gap: 0.25rem;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    display: inline-flex;
    align-items: center;
    background-color: rgb(229 231 235); 
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    margin-right: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(55 65 81);
}

.select2-container .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
}

.select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
    outline: none;
}


.select2-container .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(55 65 81);
}


.select2-container .select2-container--focus .select2-selection--multiple {
    border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgb(79 70 229 / 0.5);
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Obsługa trybu "clearable" */
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 1rem;
}



.select2-container--default .select2-search--inline .select2-search__field {
    background-color: var(--tw-light-active);
    outline: 0;
    box-shadow: none
  }

  .select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 0.875rem;
    padding: 0;
    max-width: 100%;
    resize: none;
    vertical-align: bottom;
    overflow: hidden;
    word-break: keep-all;
    font-weight: normal;
  }

  .select2-container .select2-results__option--selected {
    background-color: #ddd
  }

  .select2-container .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: white
  }