.destination-header-title{
    color: #ffffff
}
.destination-header-title .section-text p{
    color: #ffffff
}

.destination-header-title .section-text p{
    color: #ffffff
}

.destination-header-title .section-subtitle {
    color: #ffffff
}

.imglink{
    max-height: 263px;
}
.splide__pagination.splide__pagination--ltr{
    z-index: 9;
}

/* General Select2 Container Styling */
.select2-container {
    width: 100% !important;
    margin-bottom: 1rem; /* Add spacing between dropdowns */
}

.select2-container .select2-selection--single {
    height: 2.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    color: var(--secondary-color);
    padding: 0.3125rem 0.625rem;
    background-color: #f9f9f9; /* Subtle background for better visibility */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.select2-container .select2-selection--single:hover {
    border-color: var(--primary-color); /* Highlight on hover */
    border-color: var(--secondary-color);
    box-shadow: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    font-size: 14px;
    color: #333;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 30px;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Multi-select Styling */
.select2-container .select2-selection--multiple {
    min-height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.select2-container .select2-selection--multiple:hover {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    margin: 2px 5px 2px 0;
    padding: 5px 10px;
    cursor: default;
    transition: background-color 0.3s ease;
}

.select2-container .select2-selection--multiple .select2-selection__choice:hover {
    background-color: #0056b3;
}

/* Dropdown Styling */
.select2-container .select2-dropdown {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.select2-container .select2-results__option {
    padding: 10px;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
}

.select2-container .select2-results__option:hover {
    background-color: #f0f8ff; /* Subtle highlight on hover */
    color: #007bff;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background-color: #007bff;
    color: white;
}

/* Placeholder Styling */
.select2-container .select2-selection__placeholder {
    font-style: italic;
    color: #999;
}

/* Scrollbar for long dropdowns */
.select2-container .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}
/* tooltip */
.tools {
  position: relative; 
}
.tools:after, .tools:before {
    opacity: 0;
    pointer-events: none;
    bottom: 100%;
    left: 50%;
    position: absolute;
    z-index: 10;
    transform: translate(-50%, 10px);
    transform-origin: top;
    transition: all 0.18s ease-out 0.18s; 
}
.tools:after {
  background-color: #103457;
  color: #f5f5f5;
  font-size: 15px;
  text-align: left;
  box-shadow: 0 0 3px #ddd;
  content: attr(data-tooltip);
  margin-right: 50px;
  padding: 10px;
  white-space: nowrap;
  margin-bottom: 11px; }

.tools:before {
  width: 0;
  height: 0;
  content: "";
  margin-bottom: 6px; }

.tools:hover:before,
.tools:hover:after {
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0); 
}

@media (min-width: 2000px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1800px;
  }
}

.text-display {
    border: none;           /* Removes the border */
    background: transparent;/* Makes the background transparent */
    padding: 0;             /* Removes padding */
    font-size: inherit;     /* Inherits the parent's font size */
    font-family: inherit;   /* Inherits the parent's font family */
    color: inherit;         /* Matches the parent's text color */
    text-align: center;     /* Centers the text */
    appearance: none;       /* Removes default styling for inputs */
    pointer-events: none;   /* Prevents interaction (readonly should suffice, but for safety) */
}

.catalog .pagination {
    justify-content: end;
}

/* Pagination Button Styles */
.pagination-button {
    display: inline-block;
    padding: 6px 16px;
    margin: 5px;
    border: 1px solid var(--primary-color);
    background-color: white;
    color: #48C1C2;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.pagination-button:hover {
    background-color: #48C1C2;
    color: white;
}

.pagination-button:focus {
    outline: none;
}

/* Active Pagination Button */
.pagination-button.active {
    background-color: #48C1C2;
    color: white;
    pointer-events: none; /* Disables click on active button */
}

.pagination-button.disabled {
    background-color: #e0e0e0;
    color: #b0b0b0;
    border-color: #d3d3d3;
    pointer-events: none; /* Disables click on disabled button */
}

.pagination-button.disabled:hover {
    background-color: #e0e0e0;
    color: #b0b0b0;
    border-color: #d3d3d3;
}

