:root {
  --background: 0 0% 100%;
  --foreground: 210 11% 15%;
  --card: 0 0% 100%;
  --card-foreground: 210 11% 15%;
  --popover: 0 0% 100%;
  --popover-foreground: 210 11% 15%;    /* Sunnybrook Blue #2c55a6 → hsl(220, 58%, 41%) */
  --primary: 220 58% 41%;
  --primary-foreground: 0 0% 100%;  /* Dark Navy for header bar */
  --metro-dark: 220 58% 20%;  /* Sunnybrook Navy */
  --metro-navy: 220 58% 41%;  /* Sunnybrook Green Accent #7ab842 → hsl(93, 48%, 49%) */
  --accent: 93 48% 49%;
  --accent-foreground: 0 0% 100%;
  --secondary: 200 20% 96%;
  --secondary-foreground: 210 11% 15%;
  --muted: 200 15% 95%;
  --muted-foreground: 210 8% 46%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 210 15% 90%;
  --input: 210 15% 90%;
  --ring: 220 58% 41%;
  --radius: 0.375rem;
  --sidebar-background: 222 47% 14%;
  --sidebar-foreground: 0 0% 100%;
  --sidebar-primary: 0 0% 100%;
  --sidebar-primary-foreground: 220 58% 41%;
  --sidebar-accent: 220 60% 30%;
  --sidebar-accent-foreground: 0 0% 100%;
  --sidebar-border: 222 40% 20%;
  --sidebar-ring: 0 0% 100%;
  --dashboard-management: 226 23% 40%;
  --dashboard-management-hover: 226 39% 72%;
  --dashboard-system: 217 51% 30%;
  --dashboard-system-hover: 217 51% 45%;
  --dashboard-membership: 217 51% 30%;
  --dashboard-communications: 202 69% 33%;
  --dashboard-communications-hover: 198 76% 51%;
  --sidebar-width: 18rem;
  --sidebar-width-icon: 3rem;
}
.dark { --background: 220 20% 8%; --foreground: 210 20% 95%; --card: 220 20% 12%; --card-foreground: 210 20% 95%; --popover: 220 20% 12%; --popover-foreground: 210 20% 95%; --primary: 220 58% 41%; --primary-foreground: 0 0% 100%; --accent: 93 48% 49%; --accent-foreground: 0 0% 100%; --secondary: 220 20% 17%; --secondary-foreground: 210 20% 95%; --muted: 220 20% 17%; --muted-foreground: 210 10% 65%; --destructive: 0 63% 31%; --destructive-foreground: 210 20% 95%; --border: 220 20% 20%; --input: 220 20% 20%; --ring: 220 58% 41%; --sidebar-background: 220 40% 12%; --sidebar-foreground: 210 20% 95%; --sidebar-primary: 220 58% 41%; --sidebar-primary-foreground: 0 0% 100%; --sidebar-accent: 220 40% 18%; --sidebar-accent-foreground: 210 20% 95%; --sidebar-border: 220 40% 20%; --sidebar-ring: 220 58% 41%; }
* { box-sizing: border-box; border-width: 0; border-style: solid; }
body { background-color: #ffffff; font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; color: #22262a; }
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
    max-width: 1400px !important; 
}
#root { max-width: 1280px; margin: 0 auto; padding: 2rem; text-align: center; }
.logo { height: 6em; padding: 1.5em; will-change: filter; transition: filter 300ms; }
.logo:hover { filter: drop-shadow(0 0 2em #646cffaa); }
.logo.react:hover { filter: drop-shadow(0 0 2em #61dafbaa); }
@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion:no-preference) {
  a:nth-of-type(2) .logo { animation: logo-spin infinite 20s linear; }
}
.card { padding: 2em; }
.read-the-docs { color: #888; }

/* Textured backgrounds */
.bg-texture-dots { background-image: radial-gradient(circle, hsl(var(--foreground) / 0.04) 1px, transparent 1px); background-size: 20px 20px; }
.bg-texture-grid { background-image: linear-gradient(hsl(var(--foreground) / 0.03) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--foreground) / 0.03) 1px, transparent 1px); background-size: 40px 40px; }
.bg-texture-diagonal { background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, hsl(var(--foreground) / 0.02) 10px, hsl(var(--foreground) / 0.02) 11px); }
.bg-texture-cross { background-image: radial-gradient(circle, hsl(var(--primary) / 0.06) 1px, transparent 1px), radial-gradient(circle, hsl(var(--primary) / 0.04) 1px, transparent 1px); background-size: 30px 30px, 15px 15px; background-position: 0 0, 15px 15px; }

/* Gradient overlay for image cards */
.gradi-overlay { position: relative; overflow: hidden; }
.gradi-overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--foreground) / 0.85) 0%, hsl(var(--foreground) / 0.3) 40%, transparent 70%); transition: all 0.4s ease; }
.gradi-overlay:hover::after { background: linear-gradient(to top, hsl(var(--primary) / 0.9) 0%, hsl(var(--primary) / 0.5) 50%, hsl(var(--primary) / 0.3) 100%); }

/* Line animation for carousel cards (inspired by thewebmax) */
.carousel-line-anim { position: relative; }
.carousel-line-anim::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: hsl(var(--accent)); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s ease; }
.group:hover .carousel-line-anim::before { transform: scaleY(1); }

/* Hide scrollbar for news scroller */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.bg-metro-dark {
    background-color: hsl(var(--metro-dark));
}
.bg-foreground\/50 {
    background-color: hsl(var(--foreground) / 0.5);
}
.text-primary-foreground\/70 {
    color: hsl(var(--primary-foreground) / 0.7);
}
.hover\:text-primary-foreground:hover {
    color: hsl(var(--primary-foreground));
}
.text-foreground\/70 {
    color: hsl(var(--foreground) / 0.7);
}
.hover\:text-primary:hover {
    color: hsl(var(--primary));
}
.hover\:bg-primary\/5:hover {
    background-color: hsl(var(--primary) / 0.05);
}
.hover\:text-primary\/70:hover {
    color: hsl(var(--primary) / 0.7);
}
.bg-primary {
    background-color: hsl(var(--primary));
}
.text-primary-foreground {
    color: hsl(var(--primary-foreground));
}
.hover\:text-primary-foreground:hover {
    color: hsl(var(--primary-foreground));
}
.bg-accent {
    background-color: hsl(var(--accent));
}
.hover\:bg-primary\/90:hover {
    background-color: hsl(var(--primary) / 0.9);
}
.hover\:bg-accent\/90:hover {
    background-color: hsl(var(--accent) / 0.9);
}
.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.text-primary {
    color: hsl(var(--primary));
}
.text-accent-foreground {
    color: hsl(var(--accent-foreground));
}
.text-primary-foreground\/80 {
    color: hsl(var(--primary-foreground) / 0.8);
}
.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}
.text-accent {
    color: hsl(var(--accent));
} 
.text-foreground {
    color: hsl(var(--foreground));
}
.bg-background {
    background-color: hsl(var(--background));
}
.bg-muted\/30 {
    background-color: hsl(var(--muted) / 0.3);
}
.border-muted-foreground\/30 {
    border-color: hsl(var(--muted-foreground) / 0.3);
}
.bg-background\/90 {
    background-color: hsl(var(--background) / 0.9);
}
.hover\:bg-primary:hover {
    background-color: hsl(var(--primary));
}
.text-accent\/20 {
    color: hsl(var(--accent) / 0.2);
}
.text-foreground\/80 {
    color: hsl(var(--foreground) / 0.8);
}
.hover\:bg-accent:hover {
    background-color: hsl(var(--accent));
}
.hover\:text-accent-foreground:hover {
    color: hsl(var(--accent-foreground));
}
.bg-primary\/85 {
    background-color: hsl(var(--primary) / 0.85);
}
.text-primary-foreground\/60 {
    color: hsl(var(--primary-foreground) / 0.6);
}
.bg-metro-navy {
    background-color: hsl(var(--metro-navy));
}
.text-primary-foreground\/75 {
    color: hsl(var(--primary-foreground) / 0.75);
}
.text-primary-foreground\/50 {
    color: hsl(var(--primary-foreground) / 0.5);
}
.hover\:text-primary-foreground\/80:hover {
    color: hsl(var(--primary-foreground) / 0.8);
}
.text-primary-foreground\/40 {
    color: hsl(var(--primary-foreground) / 0.4);
}
.rounded-md {
    border-radius: calc(var(--radius) - 2px);
}
.max-w-4xl{
    max-width: 56rem !important;
}
.bg-muted\/40{
    background-color: hsl(var(--muted) / 0.4);
}
.bg-primary\/10{
    background-color: hsl(var(--primary) / 0.1);
}
.bg-accent\/10{
    background-color: hsl(var(--accent) / 0.1);
}
.max-w-xl{
    max-width: 36rem !important;
}
.max-w-7xl{
    max-width: 80rem !important;
}
.max-w-5xl{
    max-width: 64rem !important;
}
.bg-secondary{
    background-color: hsl(var(--secondary));
}
.border-primary{
    border-color: hsl(var(--primary));
}
.min-h-screen{
    min-height: 100vh;
}
.to-primary\/30{
    --tw-gradient-to: hsl(var(--primary) / 0.3) var(--tw-gradient-to-position);
}
.via-primary\/60{
    --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.6) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.from-primary\/95{
    --tw-gradient-from: hsl(var(--primary) / 0.95) var(--tw-gradient-from-position); 
}
.bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.focus-visible\:ring-offset-2:focus-visible{
    --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-ring:focus-visible{
    --tw-ring-color: hsl(var(--ring));
}
.focus-visible\:ring-2:focus-visible{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:outline-none:focus-visible{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.ring-offset-background{
    --tw-ring-offset-color: hsl(var(--background));
}
.text-sidebar-foreground{
    color: hsl(var(--sidebar-foreground));
}
.group[data-side="left"] .group-data-\[side\=left\]\:border-r{
    border-right-width: 1px;
}
.bg-sidebar{
    background-color: hsl(var(--sidebar-background));
}
.text-sidebar-foreground\/40{
    color: hsl(var(--sidebar-foreground) / 0.4);
}
.bg-sidebar-border{
    background-color: hsl(var(--sidebar-border));
}
.text-sidebar-foreground\/70{
    color: hsl(var(--sidebar-foreground) / 0.7);
}
.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"] {
    color: hsl(var(--sidebar-accent-foreground));
}
.data-\[active\=true\]\:font-medium[data-active="true"] {
    font-weight: 500;
}
.data-\[active\=true\]\:bg-sidebar-accent[data-active="true"] {
    background-color: hsl(var(--sidebar-accent));
}
.transition-\[width\2c height\2c padding\] {
    transition-property: width, height, padding;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:bg-sidebar-accent:hover {
    background-color: hsl(var(--sidebar-accent));
}
.text-sidebar-foreground\/50 {
    color: hsl(var(--sidebar-foreground) / 0.5);
}
.w-\[--sidebar-width\]{
    width: var(--sidebar-width);
}
.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"] {
    color: hsl(var(--sidebar-accent-foreground));
}
.data-\[active\=true\]\:font-medium[data-active="true"] {
    font-weight: 500;
}
.data-\[active\=true\]\:bg-sidebar-accent[data-active="true"] {
    background-color: hsl(var(--sidebar-accent));
}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.text-dashboard-management {
    color: hsl(var(--dashboard-management));
}
.bg-dashboard-management {
    background-color: hsl(var(--dashboard-management));
}
.after\:bg-sidebar-primary\/80::after {
    content: var(--tw-content);
    background-color: hsl(var(--sidebar-primary) / 0.8);
}
.after\:w-1\.5::after {
    width: 0.375rem;
}
.after\:top-3::after {
    top: 0.75rem;
}
.after\:right-0::after {
    right: 0px;
}
.after\:bottom-3::after {
    bottom: 0.75rem;
}
.after\:absolute::after {
    position: absolute;
}
.after\:rounded-l-full::after {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}
.active\:text-sidebar-accent-foreground:active {
    color: hsl(var(--sidebar-accent-foreground));
}
.active\:bg-sidebar-accent:active {
    background-color: hsl(var(--sidebar-accent));
}
.transition-\[width\2c height\2c padding\] {
    transition-property: width, height, padding;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.hover\:bg-dashboard-management\/90:hover {
    background-color: hsl(var(--dashboard-management) / 0.9);
}
.hover\:bg-muted\/50:hover{
    background-color: hsl(var(--muted) / 0.5) !important;
}
.border-b{
border-bottom-width: 1px;
}
.\[\&_tr\:last-child\]\:border-0 tr:last-child{
    border-width: 0px;
}
.dt-container .dark\:even\:bg-gray-900\/50:nth-child(even){
    --tw-bg-opacity: 1;
    background-color: transparent;
}

.dt-container .dark\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.dt-container .dark\:bg-gray-700\/25{
    background-color: transparent;
}
.dt-container  .dark\:text-gray-50{
  color: hsl(var(--muted-foreground));
}
.dt-container .dark\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.dt-container .dark\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.dt-container .dark\:bg-gray-700\/75{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.dt-container .dark\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.dt-container .dark\:hover\:text-gray-200:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.dt-container .dark\:hover\:border-gray-600:hover{
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.dark\:border-gray-700\/50{
    border-color: hsl(var(--border)) !important;
}
#faq-management thead th,
#faq-management tfoot th{
    font-weight: 500;
}
#faq-management .faq-table-date{
    text-align: center;
}
#faq-management .faq-table-actions{
    text-align: right;
}
#faq-management thead > tr > th {
   border-bottom: unset;
}
#faq-management tbody tr:last-child > *{
    border-bottom: unset;
}
#faq-management tbody tr td{
    padding: 16px;
}


.text-destructive {
    color: hsl(var(--destructive));
}

.dt-container .grid:first-child {
    display: flex;
    padding:30px 0 0;
    gap: 0;
}

.data-\[state\=checked\]\:bg-primary[data-state="checked"] {
    background-color: hsl(var(--primary));
}
.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"] {
    background-color: hsl(var(--input));
}




/* -------------- 15 / 06 / 2026 ---------------------- */

.bg-dashboard-system{
    background-color: hsl(var(--dashboard-system));
}
.hover\:bg-dashboard-system\/90:hover{
    background-color: hsl(var(--dashboard-system) / 0.9);
}
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td,div.dt-container.dt-empty-footer tbody>tr:last-child>*{
    border-bottom: unset !important;
}
div.dt-container div.dt-layout-row{
    margin: 0 !important;
}

.question_datatable_custom_table td.question-custom-action-btn{
    padding-top: 9px !important;
}
.subscribeType_table td.dt-type-numeric,
.membership-types-table td.dt-type-numeric,
.subscribeType_table th.dt-type-numeric,
.membership-types-table th.dt-type-numeric


{
    text-align: center !important;
}
table.dataTable>thead>tr>th:last-child{
    text-align: right !important;
}
table.dataTable>tbody>tr>td{
    padding: 16px !important;
}
table.dataTable thead th{
    font-weight: 500 !important;
}
.text-dashboard-system{
    color: hsl(var(--dashboard-system));
}
/*option:checked {
  background: #84cc16;
  color: white;
}*/
table.dataTable .dt-type-date {
    text-align: left !important;
}
.dt-info,
.dt-length {
    display: inline-block;
    vertical-align: middle;
}
.dt-length {
    margin-left: 20px;
}
.dt-length label {
    font-size: 0;
}
.dt-length select {
    width: 100px;
    /* appearance: none; */
    /* -webkit-appearance: none; */
    -moz-appearance: none;
    /* padding-right: 40px; */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); */
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    min-width: unset;
    align-items: center;
}
.dt-length select:focus{
     border-color: rgb(44 84 165) !important;
    box-shadow: none !important;
    --tw-ring-shadow: 0 0 rgb(44 84 165) !important;
    --tw-ring-offset-shadow: 0 0 rgb(44 84 165) !important;
    outline: 1.8px solid !important;
}
.dt-paging .pagination a:first-child, .dt-paging .pagination a:last-child{
    display: none;
}
.dt-paging .pagination{
    display: flex;
    gap: 10px;
    align-items: center;
}
.dt-paging .pagination a{
    border-radius: 4px !important;
    font-size: 16px;
}
a[aria-label="Previous"] {
    font-size: 0 !important;
}
a[aria-label="Previous"]::before {
    content: "Previous";
    font-size: 16px;
    color: black;
    font-weight: 500;
    opacity: 0.5;
}
a[aria-label="Next"] {
    font-size: 0 !important;
}
a[aria-label="Next"]::before {
    content: "Next";
    font-size: 16px;
    color: black;
    font-weight: 500;
    opacity: 0.5;
}
.pagination a[aria-current="page"] {
    background-color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary)) !important;
    color: #fff !important;
}
.text-dashboard-communications {
    color: hsl(var(--dashboard-communications));
}
.border-dashboard-communications {
    border-color: hsl(var(--dashboard-communications));
}

.hover\:bg-dashboard-communications:hover {
    background-color: hsl(var(--dashboard-communications));
}
.focus\:ring-ring:focus {
    --tw-ring-color: hsl(var(--ring));
}
#example_wrapper > div:nth-child(3) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}


.dt-empty{
    text-align: center !important;
    font-size: 16px !important;
    padding-top: 30px !important;
}
.select-wrapper {
    position: relative;
    padding-bottom: 0;
}
.border-dashboard-management\/40 {
    border-color: hsl(var(--dashboard-management) / .4);
}
.select-wrapper .error-msg {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 4px;
    color: red;
    font-size: 14px;
}
.bg-muted{
    background-color: hsl(var(--muted));
}
.dt-info{
    position: relative;
}
/* .dt-length{
    position: absolute;
    bottom: 20px;
    left: 220px;
} */
.bg-dashboard-communications{
    background-color: hsl(var(--dashboard-communications));
}
.hover\:bg-dashboard-communications\/90:hover {
    background-color: hsl(var(--dashboard-communications) / 0.9);
}
@media (max-width: 640px) {
   .dt-length {
    margin-left: 4px;
    margin-top: 20px;
}
}


/*------------------- Select 2 CSS ----------------------*/


/*.select2-results ul.select2-results__options li{
    padding-left: 30px !important;
    font-size: 14px !important;
    line-height: 22px !important;
}


.select2-container--open .select2-results__option--highlighted {
    background-color: #7BC043 !important;
    color: #fff !important;
}

.select2-results__option {
    position: relative;
    padding: 10px 12px;
}

.select2-results__option--selected {
    background-color: #7BC043 !important;
    color: #000 !important;
    padding-left: 35px !important;
}


.select2-results__option--selected::before {
    content: "\2713";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.select2-results__option--highlighted::before,
.select2-results__option--selected.select2-results__option--highlighted::before {
    color: #fff !important;
}

.select2-results__option--selected::after,
.select2-results__option[aria-selected="true"]::after {
    display: none !important;
    content: none !important;
}


.select2-results__option--selected.select2-results__option--highlighted {
    background-color: #7BC043 !important;
    color: #fff !important;
}


.select2-results__option {
    transition: background-color 0.2s ease;
}
.select2-container--tailwindcss-4.select2-container--open .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 10px;
}

.select2-dropdown {
    overflow: hidden;
}

.select2-container--tailwindcss-4 .select2-search--dropdown .select2-search__field {
    border: 1px solid #d1d5db !important;
    box-shadow: none !important;
}
.select2-container--tailwindcss-4 .select2-search--dropdown .select2-search__field:focus {
    border-color: #2c54a5 !important;
    box-shadow: none !important;
    --tw-ring-shadow: 0 0 #0000 !important;
    --tw-ring-offset-shadow: 0 0 #0000 !important;
    outline: none !important;
    border-width: 2px !important;

}
.select2-container--open .select2-selection,
.select2-container--focus .select2-selection {
    border-color: #2c54a5 !important;
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(123, 192, 67, 0.2) !important;
}
.select2-container--tailwindcss-4.select2-container--focus .select2-selection,
.select2-container--tailwindcss-4.select2-container--open .select2-selection {
    border-color: #2c54a5 !important;
    box-shadow: none !important;
}

.select2-hidden-accessible.border-red-500 + .select2-container .select2-selection--single {
    border-color: #ef4444 !important;
    border-width: 1px !important;
}

.select2-container--open .select2-selection__arrow {
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.2s ease;
}
.select2-container--tailwindcss-4 .select2-results__option--selected{
    font-weight: unset !important;
}*/
/* Force dropdown always below */

#publish_date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
/* table.dataTable thead .dt-column-order::before,
table.dataTable thead .dt-column-order::after {
   color: #374151 !important;
    opacity: 0.3 !important;
} */

table.dataTable thead th:hover .dt-column-order::before,
table.dataTable thead th:hover .dt-column-order::after {
    color: #000 !important; /* Green on hover */
}

/*.select2-container--default .select2-selection--single {
    height: 40px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
    padding-left: 12px !important;
    font-size: 14px !important;
    color: #111827 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 20px !important;
    height: 20px !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center no-repeat;
    background-size: 16px;
}

.select2-container--open .select2-selection__arrow {
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.2s ease;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #77b941 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option--selected {
    background: #77b941 !important;
    color: #fff !important;
    font-weight: 600;
    position: relative;
    padding-left: 30px !important;
}

.select2-container--default .select2-results__option--selected::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.select2-results ul.select2-results__options li{
    padding-left: 30px !important;
}
*/


select,
::picker(select) {
    appearance: base-select;

    font-size: 14px;
}

/* Select field */
select {
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #374151;
     min-width: 140px;
      text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 1;
    line-height: 180% !important;
}

/* Dropdown container */
::picker(select) {
    margin-top: 4px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* Hide default arrow */
::picker-icon {
    content: "";
    width: 16px;
    height: 16px; 
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
        center/contain no-repeat;
    margin-top: 3px;
    min-width: 16px;
}

/* Options */
option {
    background: #fff;
    color: #374151;
    padding: 6px 16px;
    border-radius: 4px;
    margin: 2px 0;
    font-weight: normal !important;
    display: flex;
    align-items: start;
}

/* Hover */
option:hover,
option:focus {
    background: #77b941;
    color: #fff;
}

/* Selected */
option:checked { 
    background: #77b941;
    color: #fff;
    font-weight: 600;
}

/* Tick on selected option */

/* First and last spacing */
option:first-child {
    border-radius: 6px 6px 0 0;
}

option:last-child {
    border-radius: 0 0 6px 6px;
}
@supports not (appearance: base-select) {
  body::before {
    content: "Your browser does not support `appearance: base-select`.";
    color: black;
    background-color: wheat;
    position: fixed;
    left: 0;
    right: 0;
    top: 40%;
    text-align: center;
    padding: 1rem 0;
    z-index: 1;
  }
}
.question_datatable_custom_table th:nth-child(4),
.question_datatable_custom_table td:nth-child(4) {
    min-width: 500px;
    max-width: 500px;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-word;
}
