@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;600&family=Montserrat:wght@400;500;600&family=Poppins:wght@400;600&family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');

@import url('https://cdn.jsdelivr.net/npm/quill@2.0.3/dist/quill.snow.css');

@import url('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/css/select2.min.css');
        
@import url("https://code.jquery.com/ui/1.14.1/themes/base/jquery-ui.css");

body{
    font-family: 'Poppins', sans-serif !important;
    
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.text-deco-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}.text-deco-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}.text-deco-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-thumb{
    background: #eee; background-repeat: no-repeat; background-size: cover; background-position: center;
    border-radius: 10px;
}

#bottom-nav{
    box-shadow: 1px 1px 10px rgba(0,0,0,0.25);
    position: fixed; bottom: 0; left: 0;
    z-index: 99999999999;
    background: #fff;
    padding: 10px 0px;
}

.nav-btn{
    padding: 5px 0px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    font-size: 14px;
    color: #666;
    background: #fff;
}.nav-btn.active{
    font-weight: 600;
    color: #000;
    background: #eee;
}

.smooth-loader {
     height: 20px;
     border-radius: 3px;
     opacity: 0.7;
     animation: skeleton-loading 1s linear infinite alternate;
}
@keyframes skeleton-loading {
     0% {
         background-color: hsl(200, 20%, 75%);
    }
     100% {
         background-color: hsl(200, 20%, 95%);
    }
}

a{
    color: #000000;
    text-decoration: none;
}

.loading-area{
    height: 100%;
    width: 100%;
    display: none; align-items: center; justify-content: center;
    position: fixed; left: 0; top: 0;
    z-index: 999999999999999;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}.loading-box{
    background: #ffffff; border-radius: 10px; box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
}

/* Table base */
table {
  border-collapse: separate !important;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  font-size: 14px !important;
}

/* Cells */
th, td {
  border: 1px solid #dddddd;
  padding: 8px;
  white-space: nowrap;
  background: #fff;
}

/* Sticky first column */
th:first-child,
td:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #ffffff;

  /* Shadow that stays visible */
  box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.25);
}

/* Restore left border (never disappears) */
th:first-child,
td:first-child {
  border-left: 1px solid #dddddd;
}

/* Header above body */
thead th {
  z-index: 4;
}

thead th:first-child {
  z-index: 5;
}

.footer a:hover{
    color: #666;
}

#search_select_pc{
    display: none;
}#search_select_mobile{
    display: block;
}

@media (min-width: 992px){
    #search_select_pc{
        display: block;
    }#search_select_mobile{
        display: none;
    }
}

/* Make Select2 look modern */
.select2-container .select2-selection--single {
  height: 45px;
  border-radius: 10px;
  border: 2px solid #000;
  display: flex;
  align-items: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #333;
  font-weight: 500;
  padding-left: 12px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 8px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #000;
  color: white;
}

/* --- Dropdown Container --- */
.select2-dropdown {
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 6px;
  background: #ffffff;
}

/* --- Search Box Inside Dropdown --- */
.select2-search--dropdown {
  padding: 8px 10px;
}

.select2-search__field {
  border-radius: 10px !important;
  border: 2px solid #e2e8f0 !important; /* gray-200 */
  padding: 10px 12px !important;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.select2-search__field:focus {
  border-color: #000 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* --- Search Results --- */
.select2-results__options {
  padding: 4px;
}

.select2-results__option {
  padding: 10px 14px;
  border-radius: 8px;
  margin: 3px 6px;
  transition: all 0.2s ease;
}

.select2-results__option--highlighted[aria-selected] {
  background-color: #000 !important;
  color: #fff !important;
}

.select2-results__option[aria-selected="true"] {
  background-color: #eff6ff !important;
  color: #000 !important;
  font-weight: 600;
}

/* ---- Airport Location Icon Wrapper ---- */
.icon-select {
  position: relative;
  display: flex;
  align-items: center;
}

.icon-select i {
  position: absolute;
  left: 12px;
  color: #000;
  font-size: 18px;
  z-index: 2;
}

.icon-select img {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  z-index: 2;
}

/* Adjust Select2 inside the wrapper */
.icon-select .select2-container--default .select2-selection--single {
  padding-left: 32px !important;
}

/* Fix overlap for normal selects before Select2 loads */
.icon-select select {
  padding-left: 35px;
}

/* ---- Search Icon Inside Select2 Search Box ---- */
.select2-search--dropdown {
  position: relative;
}

.select2-search--dropdown::before {
  content: "\f52a"; /* Bootstrap icons search symbol */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 19px; /* was 14px — now 5px more space */
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 16px;
  pointer-events: none;
}

.select2-search__field {
  padding-left: 40px !important; /* was 35px */
}

.counter-group .btn {
  width: 35px;
  color: #000;
  border-color: #000;
  border-radius: 50px;
}

.counter-group .btn:hover {
  background-color: #000;
  color: #fff;
}

.counter-group input {
  border: 2px solid #eee;
  font-weight: 600;
  font-size: 15px;
}

.counter-group input:focus {
  border-color: #000;
  box-shadow: none;
}

.counter-group .form-control:read-only {
  background: #eee !important;
}
