/* TailwindCSS покрывает стили фронтенда. Файл оставлен пустым намеренно. */

.toast-container {
    z-index: 100!important;
}

/* Custom Select2 styles to match Tailwind design */
.select2-container--default .select2-selection--single {
    border: 1px solid rgb(226 232 240);
    border-radius: 1rem;
    height: 48px;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: rgb(239 68 68);
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: rgb(30 41 59);
    line-height: 24px;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.select2-dropdown {
    border: 1px solid rgb(226 232 240);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid rgb(226 232 240);
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
}

.select2-results__option {
    padding: 0.75rem 1rem;
    transition: background-color 0.15s;
}

.select2-results__option--highlighted {
    background-color: rgb(239 68 68) !important;
    color: white !important;
}

.select2-container--default .select2-results__option--disabled {
    opacity: 0.5;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgb(100 116 139);
}

button {
    cursor: pointer;
}