@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: 'oswald';
    src: url('../assets/font/Oswald-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
}

@layer base {
    html {
        font-family: 'oswald', sans-serif;
        color: #363633;
    }
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

.blur {
    filter: blur(5px);
    pointer-events: none;
}

.swal2-popup {
    border-radius: 20px;
}

/* !SELECT2 */
.select2-container {
    font-family: 'oswald' !important;
    text-align: left !important;
    @apply border border-gray-300 rounded-lg;
}

.select2-selection {
    @apply bg-gray-50 w-full border border-gray-300 text-gray-900 text-sm rounded-lg focus:outline-none focus:ring-[1px] focus:ring-primary block p-2.5;
    outline-offset: -1px;
    border: 1px solid #d1d5db;
}

.select2-selection--multiple:focus,
.select2-selection:focus {
    @apply outline-2;
    outline-offset: -2px;
    outline-color: #2e3092 !important;
}

.select2-search__field:focus-visible {
    outline-color: #2e3092 !important;
}

.select2-search__field {
    /* border-radius: 0.5rem !important; */
}

.select2-dropdown {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1d5db;
}

.select2-results__option {
    padding: 0.375rem 1rem;
    font-size: 1rem;
    color: #374151;
}

.select2-results__option--highlighted {
    background-color: #2e3092 !important;
    color: white;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 2.625rem !important;
    border-radius: 0.5rem !important;
    background-color: oklch(0.985 0.002 247.839) !important;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden !important;
}

.select2-selection__arrow {
    align-self: anchor-center !important;
    margin-right: 0.5rem !important;
    top: -0.1rem !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
    color: oklch(0.21 0.034 264.665) !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: none !important;
    border-radius: 4px;
    display: flex !important;
    align-items: center !important;
    outline: none !important;
}

.select2-selection__clear {
    color: gray !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: #282bb830 !important;
    color: gray !important;
}
