/* ======== ІМПОРТИ ШРИФТІВ ======== */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

/* ======== ВЛАСНИЙ ШРИФТ ======== */
@font-face {
  font-family: 'Anurati';
  src: url('../fonts/Anurati-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ======== КЛАСИ ШРИФТУ UBUNTU ======== */
.ubuntu-light { font-family: "Ubuntu", sans-serif; font-weight: 300; font-style: normal; }
.ubuntu-regular { font-family: "Ubuntu", sans-serif; font-weight: 400; font-style: normal; }
.ubuntu-medium { font-family: "Ubuntu", sans-serif; font-weight: 500; font-style: normal; }
.ubuntu-bold { font-family: "Ubuntu", sans-serif; font-weight: 700; font-style: normal; }

.ubuntu-light-italic { font-family: "Ubuntu", sans-serif; font-weight: 300; font-style: italic; }
.ubuntu-regular-italic { font-family: "Ubuntu", sans-serif; font-weight: 400; font-style: italic; }
.ubuntu-medium-italic { font-family: "Ubuntu", sans-serif; font-weight: 500; font-style: italic; }
.ubuntu-bold-italic { font-family: "Ubuntu", sans-serif; font-weight: 700; font-style: italic; }

/* ======== CSS ЗМІННІ ======== */
:root {
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-dark: #282828;
    --bs-dark-rgb: 40, 40, 40;
}

/* ======== ЗАГАЛЬНА РОЗМІТКА І БАЗА ======== */
html, body {
    height: 100%;
}

body {
    background: #ebebeb;
    display: flex;
    flex-direction: column;
    font-family: "Ubuntu", sans-serif; /* Основний шрифт */
    font-weight: 400;
    font-style: normal;
}

#app {
    flex: 1 0 auto;
}

/* ======== ССИЛКИ ======== */
a {
    text-decoration: none;
    color: #1a8ad5;
}

a:hover {
    color: #64b5ef;
}

/* ======== ЗАГОЛОВКИ ======== */
/*h1:not(.title-no-bg),
.h1:not(.title-no-bg) {
    color: #fff;
    background: #282828;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}*/

.page-title-h1 {
    color: #fff;
    background: #282828f0 !important;
    padding: 0.5rem !important;
    text-transform: uppercase;
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* ======== ОСНОВНИЙ КОНТЕНТ ======== */
.content {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.container {
    max-width: 100% !important;
}

/* ======== КАРТКИ ======== */
.card {
    box-shadow: 0 0.3rem 0.75rem rgba(0, 0, 0, 0.15);
    height: 100%;
}

.card-body {
    padding: 1.5rem;
}

.card-footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.news-card {
    height: max-content !important;
}

/* ======== НАВІГАЦІЯ ======== */
.navbar {
    font-weight: 700;
    font-size: 1rem;
    font-family: "Ubuntu", sans-serif;
    font-style: normal;
}

.navbar-brand img {
    max-height: 75px;
    max-width: 150px;
}

.navbar-brand::first-letter {
    font-family: 'Anurati', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar-brand {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.06);
}

.navbar .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
}

.trans {
    text-transform: none !important;
}

/* ======== СТИЛІ ВНУТРІШНІХ СЕКЦІЙ ======== */

.home-background {
  position: relative;
  overflow: hidden;
  background: url('https://bastion16.co.ua/assets/img/background.png');
  background-position: center;
  z-index: 1;
  overflow: hidden;   
  background-size: cover;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.home-background::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://bastion16.co.ua/assets/img/background.png');
  background-position: center;
  filter: blur(2px);
  z-index: -1;
}

.text-bg-dark a {
    color: var(--bs-gray-200);
}

/* ======== ВИПАДАЮЧІ МЕНЮ (ПРОФІЛЬ, ЛОГАУТ...) ======== */
.dropdown-menu-custom {
    min-width: 270px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    padding: 0;
}

.dropdown-item-profile {
    color: #0d6efd;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1rem 0.3rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item-profile:hover {
    background-color: #cce5ff;
    color: #004085;
}

.links-block {
    padding: 0.25rem 0;
}

.dropdown-item-custom {
    padding: 0.5rem 1rem;
    transition: background-color 0.25s ease, color 0.25s ease;
    color: #212529;
    display: block;
}

.dropdown-item-custom:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.no-border {
    border-bottom: none !important;
    box-shadow: none !important;
    padding-bottom: 0.5rem;
}

.dropdown-header-admin {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1rem 0.3rem;
    text-transform: uppercase;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item-logout {
    color: #dc3545;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border-top: 1px solid #dee2e6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item-logout:hover {
    background-color: #f5c6cb;
    color: #721c24;
}

/* ======== ВІДЖЕТ СЕРВЕРА ======== */
.server-icon {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.375rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.status-pill,
.copy-btn {
    background-color: #282828;
    border-radius: 0;
    padding: 0.25rem 0.75rem;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #3a3a3a;
    cursor: pointer;
}

.copy-btn span {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.copy-btn .copy-default { opacity: 1; }
.copy-btn:hover .copy-default { opacity: 0; }
.copy-btn:hover .copy-hover { opacity: 1; }
.copy-btn.copied .copy-hover,
.copy-btn.copied .copy-default { opacity: 0; }
.copy-btn.copied .copy-success { opacity: 1; }

.status-indicator {
    width: 14px;
    height: 14px;
    animation: blink 1s infinite;
    margin-left: 10px;
}

.server-progress {
    height: 28px;
    background-color: #343a40;
    border-radius: 0;
    overflow: hidden;
}

.progress-bar {
    background-color: #4caf50;
}

.progress-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 0.875rem;
    color: white;
}

/* ======== СПИСОК ГРАВЦІВ ======== */
.list-group-item {
    background-color: transparent;
    border: none;
    color: #212529;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-right: 8px;
}

.afk-badge {
    background-color: #ffc107;
    color: #000;
    border-radius: 4px;
    padding: 0 6px;
    font-size: 0.7rem;
    margin-left: 8px;
}

.player-list-wrapper {
    max-height: 170px;
    overflow-y: auto;
}

.list-group-item.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ======== COOKIE-BANNER ======== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 340px;
    background: #fff;
    color: #333;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
}

.cookie-banner h3 {
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.cookie-buttons button,
.btn-settings {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
}

.btn-settings {
    background-color: #a9a8a8;
    color: white;
}

.btn-settings:hover {
    background-color: #7d7d7d;
    color: white;
}

/* ======== DISCLAIMER & LANG SWITCHER ======== */
.disclaimer {
    position: absolute;
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer-container {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px;
}

.lang-switcher {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.lang-btn {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 30px;
    height: 22px;
    transition: transform 0.3s ease;
}

.lang-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lang-btn:hover {
    transform: scale(1.2);
}

.lang-btn.active svg {
    outline: 2px solid #007bff;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ======== АДАПТИВ ======== */
@media (max-width: 1399px) {
    .server-widget-wrapper {
        margin-top: 1.5rem;
    }
}

@media (max-width: 1550px) {
    .status-pill, .copy-btn {
        padding: 0 !important;
    }
}

@media (min-width: 1400px) {
    .col-lg-4-custom {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-8-custom {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (max-width: 767px) {
    .mt-5-custom { margin-top: 0 !important; }
    .py-5-custom { padding-top: 0 !important; }
	.my-flex { flex-direction: column !important; }
}

@media (max-width: 1482px) {
    .btn-post {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
    }
}

@media (max-width: 550px),
       (min-width: 991px) and (max-width: 1470px) {
    .d-custom {
        display: grid !important;
    }

    .my-btn {
        order: -1;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/**========================Price List======================**//
    /* Чіткіше виділення хедера таблиці DataTables */
    div.dataTables_wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.25rem 1rem;
        margin-bottom: 1rem;
    }
    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter {
        margin: 0;
        padding: 0;
    }

    div.dataTables_wrapper div.dataTables_length {
        order: 1;
        flex: 1 1 auto;
        text-align: left;
    }

    div.dataTables_wrapper div.dataTables_info {
        order: 0;
        flex: 1 1 auto;
        text-align: left;
        color: #6c757d;
        font-size: 0.9rem;
        padding-left: 0.25rem;
    }

    div.dataTables_wrapper div.dataTables_filter {
        order: 2;
        flex: 1 1 auto;
        text-align: right;
    }

    div.dataTables_wrapper .dataTables_paginate {
        order: 3;
        flex: 1 1 auto;
        text-align: right;
    }

    /* Заборонити горизонтальний скрол на ПК */
    @media (min-width: 768px) {
        .table-responsive {
            overflow-x: visible !important;
            -webkit-overflow-scrolling: auto !important;
        }
    }

    /* Для мобільних — щоб таблиці були горизонтально прокручувані */
    @media (max-width: 767.98px) {
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
    }

    /* Картинки в таблиці */
    .item-img {
        width: 32px;
        height: 32px;
        image-rendering: pixelated;
    }

    /* Адаптивність форми додавання — зменшення відступів і ширини колонок на мобільних */
    @media (max-width: 767.98px) {
        .form-row-add > div {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-bottom: 0.75rem;
        }
        .form-row-add {
            gap: 0.75rem;
        }
    }

    /* Стиль для картинки в селекті Select2 */
    .select2-container--default .select2-results__option .option-with-img {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .select2-container--default .select2-results__option .option-with-img img {
        width: 24px;
        height: 24px;
        image-rendering: pixelated;
        flex-shrink: 0;
    }
    .select2-container--default .select2-selection__rendered .option-with-img {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .select2-container--default .select2-selection__rendered .option-with-img img {
        width: 24px;
        height: 24px;
        image-rendering: pixelated;
        flex-shrink: 0;
    }

.dataTables_length select {
    height: 35px !important;
    padding: 4px 4px !important;
    border: 1px solid !important;
    width: 3.5rem !important;
    border-radius: 0 !important;
}
/* Прибираємо лейбли у фільтрі та length */
.dataTables_filter label {
  align-items: center;
  font-weight: normal;
  font-size: 0;
  width: 100%;
  gap: 8px;
}
.dataTables_length label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Стиль інпуту пошуку */
.dataTables_filter input {
  height: 35px;
  padding: 4px 8px;
  border: 1px solid #ccc;
}

/* Стиль селектора кількості записів */
.dataTables_length select {
  height: 35px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Стиль пагінації */
.dataTables_paginate .paginate_button {
  height: 35px;
  line-height: 25px;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0 2px;
}

.dataTables_paginate .paginate_button.current {
  background-color: #007bff;
  color: #fff !important;
  border: none;
}
.myrow {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-content: center;
    justify-content: start;
    align-items: center;
}
.dataTables_paginate .paginate_button {
    height: 30px;
    line-height: unset !important;
    padding: 0.25rem;
    border-radius: 0 !important;
    margin: 0 !important;
}
.max-content {
  width: max-content !important;
}
/* Форми однакової висоти і без скруглень */
.form-control-no-radius {
    height: calc(1.5em + 0.75rem + 2px);
    border-radius: 0 !important;
}
.btn-trash:hover {
	color: red !important;
}
.item-img {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    vertical-align: middle;
}
/* Стилі для select2 з картинками */
.select2-results__option img,
.select2-selection__rendered img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    image-rendering: pixelated;
}
.select2-container--bootstrap5 .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    border-radius: 0 !important;
}
.select2-container--bootstrap5 .select2-selection__rendered {
    line-height: 1.5;
}
/* Сортування DataTables - стиль */
table.dataTable thead th {
    position: relative;
    padding-right: 24px !important; /* додано для місця під іконки сортування */
}
table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -6px;
    border-style: solid;
    opacity: 0.5;
    pointer-events: none;
}
table.dataTable thead th.sorting:after {
    border-width: 8px 6px 0 6px;
    border-color: #fff transparent transparent transparent;
}
table.dataTable thead th.sorting_asc:after {
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #0dcaf0 transparent;
    margin-top: -2px;
}
table.dataTable thead th.sorting_desc:after {
    border-width: 8px 6px 0 6px;
    border-color: #0dcaf0 transparent transparent transparent;
    margin-top: -6px;
}
/* Центруємо іконки предметів у таблиці */
.mc-item img.item-img {
    display: inline-block;
    vertical-align: middle;
}
.select-span {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    height: 35px !important;
    border-radius: 0 !important;
}
/* Стиль кнопки видалення */
.btn-delete {
    padding: 0.25rem 0.35rem;
    font-size: 1.2rem;
    line-height: 1;
}

/* --- Адаптивність форми додавання --- */
.form-row-add {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: flex-end;
}

.form-row-add > div {
    flex: 1 1 auto;
}

.form-row-add > div.p-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Кнопка в кінці не росте в ширину більше ніж потрібно, але займає всю ширину в мобілках */
.form-row-add > div.d-flex {
    flex: 0 0 auto;
    width: auto;
}

/* Вертикальний стік на мобільних */
@media (max-width: 767.98px) {
    .form-row-add {
        flex-direction: column;
        align-items: stretch;
    }
    .form-row-add > div {
        width: 100% !important;
    }
    .form-row-add > div.d-flex {
        width: 100% !important;
    }
}

	
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 35px; /* змінено з 28px */
    user-select: none;
    -webkit-user-select: none;
    position: relative; /* щоб елементи всередині вирівнювались коректно */
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 35px; /* вертикальне центрування тексту */
    text-align: center; /* горизонтальне центрування */
}

.select2-container .select2-selection--single .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 5px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 18px;
    vertical-align: bottom;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

/* Дропдаун: прибране скруглення + анімація */
.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;

    /* анімація при відкритті */
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

/* елементи опцій - по центру */
.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
    text-align: center; /* центрування опцій */
}

.select2-results__option--selectable {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0;

    /* коли відкритий — показуємо з анімацією */
    opacity: 1;
    transform: translateY(0);
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

/* Default theme: прибране скруглення і вирівнювання */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 35px; /* було 28px */
    text-align: center;
}

/* clear: підлаштування висоти під 35px, щоб був по центру */
.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 35px; /* було 26px */
    margin-right: 20px;
    padding-right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

/* стрілка: підлаштування висоти щоб була по центру */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 35px; /* було 26px */
    position: absolute;
    top: 0; /* було 1px */
    right: 1px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

/* Multiple selection: прибране скруглення (як просив) */
.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 25px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    font-weight: bold;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    position: absolute;
    right: 0;
    padding: 1px
}

/* вибірки (чіпси) — прибране скруглення */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

/* remove-button у чіпсі — прибране скруглення */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 0; /* було 4px */
    border-bottom-left-radius: 0; /* було 4px */
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #f1f1f1;
    color: #333;
    outline: none
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

/* rtl: прибране радіуси у відповідних місцях */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0; /* було 4px */
    border-bottom-right-radius: 0; /* було 4px */
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.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--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--group {
    padding: 0
}

.select2-container--default .select2-results__option--disabled {
    color: #999
}

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

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

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

/* Classic theme — теж прибране скруглення і підлаштування під 35px */
.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
    outline: 0;
    background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 35px; /* було 28px */
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 35px; /* було 26px */
    margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

/* Classic arrow — без скруглень, висота під 35px */
.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 0; /* було 4px */
    border-bottom-right-radius: 0; /* було 4px */
    height: 35px; /* було 26px */
    position: absolute;
    top: 0; /* було 1px */
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left
}

/* Classic rtl arrow corners -> прибрані */
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 0; /* було 4px */
    border-bottom-left-radius: 0; /* було 4px */
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

/* класичні чіпси — без скруглення */
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 0; /* було 4px */
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px
}

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

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

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0; /* було 4px */
    border-bottom-right-radius: 0; /* було 4px */
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

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

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

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
    padding: 0
}

.select2-container--classic .select2-results__option--disabled {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}
