: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;
}

.rounded-md {
  border-radius: calc(0.375rem - 2px) !important;
}

.rounded-lg {
  border-radius: 0.375rem !important;
}

.bg-border {
  background-color: #e2e6e9;
}

.bg-foreground\/20 {
  background-color: hsl(var(--foreground) / 0.2);
}

.border-border\/50 {
  border-color: hsl(var(--border) / 0.5);
}

body.menu-open {
  overflow: hidden;
}

/* a[aria-current="page"] {
  background-color: #2c54a5;
  color: #fff;
  font-weight: 600;
}

a[aria-current="page"]:hover {
  background-color: #2c54a5e6;
  color: #fff;
} */

a[data-active="page"] {
  background-color: #2c54a5;
  color: #fff;
  font-weight: 600;
}

a[data-active="page"]:hover {
  background-color: #2c54a5e6;
  color: #fff;
}


select,
::picker(select) {
  appearance: base-select;
  font-size: 14px;
}

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;
}

::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, 0.12);
  max-width: 250px !important;
}

::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;
}

option {
  background: #fff;
  color: #374151;
  padding: 6px 16px;
  border-radius: 2px;
  margin: 2px 0;
  font-weight: normal !important;
  white-space: normal;
}

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


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

@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;
  }
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: #2c54a5 !important;
}

.hover\:border-primary\/40:hover {
  border-color: hsl(var(--primary) / 0.4);
}

.filter-btn.active {
  background: #3157b7;
  color: #fff;
  border-color: #3157b7;
}

.max-w-3xl {
  max-width: 48rem !important;
}

.to-accent\/10 {
  --tw-gradient-to: hsl(var(--accent) / 0.1) var(--tw-gradient-to-position);
}

.via-background {
  /* --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position); */
  --tw-gradient-stops:
    var(--tw-gradient-from),
    hsl(var(--background)) var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}

.from-primary\/5 {
  --tw-gradient-from: hsl(var(--primary) / 0.05)
    var(--tw-gradient-from-position);
  /* --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position); */
  /* --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); */
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}

.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}

.rounded-full {
  border-radius: 9999px;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}


.bg-accent\/25 {
  background-color: hsl(var(--accent) / 0.25);
}

.blur-2xl {
  --tw-blur: blur(40px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}

.bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.1);
}

.max-w-6xl {
  max-width: 72rem;
}

.blur-2xl {
  --tw-blur: blur(40px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}


.bg-primary\/30 {
  background-color: hsl(var(--primary) / 0.3);
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}

.from-primary {
  --tw-gradient-from: hsl(var(--primary)) var(--tw-gradient-from-position);
  /* --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position); */
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-primary\/70 {
  --tw-gradient-to: hsl(var(--primary) / 0.7) var(--tw-gradient-to-position);
}

.blur-lg {
  --tw-blur: blur(16px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}

.to-accent\/30 {
  --tw-gradient-to: hsl(var(--accent) / 0.3) var(--tw-gradient-to-position);
}

.from-primary\/30 {
  --tw-gradient-from: hsl(var(--primary) / 0.3) var(--tw-gradient-from-position);
  /* --tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position); */
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2) !important;
}

.drugsTable .dt-search input {
  padding: 8px 12px 8px 36px !important;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  height: 34px;
  border: 1px solid rgb(229 231 235) !important;
  border-radius: 6px !important;
  outline: none !important;
  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%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
  box-sizing: border-box;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  /* margin-top:4px ;
    margin-right: 4px; */
  margin-left: 0;
}

.drugsTable .dt-search input:focus,
.drugsTable .dt-search input:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #2c54a5 !important;
}

.drugsTable .dt-length select {
  min-width: 70px !important;
  font-size: 12px;
  line-height: 20px !important;
  display: inline-flex;
  align-items: center;
  height: 32px;
  border: 1px solid rgb(229 231 235) !important;
  border-radius: 6px !important;
  outline: none;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.drugsTable .dt-length select:focus,
.drugsTable .dt-length select:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #2c54a5 !important;
}

.drugsTable .dt-length {
  color: #6c757f !important;
  font-size: 14px;
  margin-top: 4px;
}

.drugsTable .dt-length select::picker-icon {
  opacity: 0.5 !important;
}

.drugsTable .dt-length label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drugsTable table.dataTable > thead > tr > th {
  background-color: hsl(var(--primary));
  color: #fff;
}

.drugsTable table.dataTable {
  border: 1px solid #e2e6e9;
  border-radius: 6px !important;
}

.drugsTable table.dataTable > tbody > tr > th,
.drugsTable table.dataTable > tbody > tr > td {
  padding: 12px 16px !important;
}

.drugsTable .dt-paging .pagination a:first-child,
.drugsTable .dt-paging .pagination a:last-child {
  display: none;
}

.drugsTable .dt-paging .pagination {
  display: flex;
  gap: 4px;
}

.drugsTable .dt-paging .pagination a {
  border-radius: 4px !important;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  width: 42px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drugsTable .dt-info {
  color: #6c757f !important ;
  font-size: 14px;
}

.drugsTable .dt-column-header {
  text-align: center;
}

.drugsTable .dt-column-order {
  width: 20px !important;
}

.drugsTable .dt-column-order::before,
.drugsTable .dt-column-order::after {
  top: 0 !important;
  bottom: auto !important;
  content: "" !important;
  width: 8px !important;
  height: 20px;
  background-size: 16px;
  background-position: center;
  opacity: 0.5 !important;
  background-repeat: no-repeat !important;
}

.drugsTable .dt-column-order::before {
  left: 2 !important;
  background-image: url(/frontend/assets/image/short-arrow-up.png) !important;
}

.drugsTable .dt-column-order::after {
  left: 8px !important;
  background-image: url(/frontend/assets/image/short-arrow-down.png) !important;
}

table.dataTable thead > tr > th.dt-ordering-asc .dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-desc .dt-column-order:after {
  opacity: 1 !important;
}

table .dt-column-header svg {
  display: none !important;
}

.drugsTable .dt-scroll-headInner {
  padding-right: 0px !important;
  width: 100% !important;
}

.drugsTable .dt-empty {
  text-align: center;
}


/*
.sort-arrow {
    display: none;
} */

.sort-btn.active .sort-arrow {
  display: block;
}

.bg-muted\/20 {
  background-color: hsl(var(--muted) / 0.2);
}



/* ------  Client Home Page CSS ----- */

.bg-foreground\/55 {
  background-color: hsl(var(--foreground) / 0.55);
}


.hover\:text-accent\/80:hover {
  color: hsl(var(--accent) / 0.8);
}

.group:hover .group-hover\:text-primary {
  color: hsl(var(--primary));
}

.hover\:bg-foreground\/40:hover {
  background-color: hsl(var(--foreground) / 0.4);
}

.group:hover .group-hover\:text-white\/80 {
  color: #fffc;
}

.bg-background\/95 {
  background-color: hsl(var(--background) / 0.95);
}


/* ------  Client Contact Page CSS ----- */

.max-w-2xl {
  max-width: 42rem !important;
}

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

.bg-muted {
  background-color: hsl(var(--muted));
}

/* .dropdown-parent > a[aria-current="page"]::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
} */

.dropdown-parent > a[data-active="page"]::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
}


/* Start Home page section change 08-07-2026*/

.welcome-page-main-section .leading-relaxed p{
    padding-bottom:16px;
}

.who-we-are-main-section .leading-relaxed{
    margin-bottom:8px;
}

.who-we-are-main-section .leading-relaxed p{
    padding-bottom:24px;
}

.testimonials-main-section .testimonial-slide>div{
    /*min-height:300px;*/
    justify-content:center;
}

.testimonials-main-section .testimonial-slide>div>div{
    margin-top:auto;
}

.our-resources-page-main-section .our-resources-icon-card-main .our-resources-icon-card-wrap svg{
    width:28px;
    height:28px;
}

.testimonials-main-section .testimonial-slide>div p{
    word-break:break-word;
}



/* a tag youtube link css*/

.custom-alink a,
.custom-ckeditor-content a,
a[href*="youtu.be"] {
    color: #2c54a5 !important;
    text-decoration: underline !important;
}
/*.custom-ckeditor-content a{
   text-decoration: underline !important;
   text-underline-offset: 2px;
}*/
.custom-ckeditor-content a:hover{
   color: #2c54a5 !important;
}

/* end Home page section change 08-07-2026*/

.testimonials-main-section .testimonial-slide > div{
  justify-content: start;
}
;
.testimonial-slide-last-div{
    margin-top:auto !important;
}



.subscription-ckeditor p {
  margin-bottom: 6px;
}
.subscription-ckeditor ul li:not(first-child) {
  margin-top: 8px;
}
.subscription-ckeditor ul li {
  display: inline-flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 20px;
  gap: 8px;
  width: 100%;
}
.subscription-ckeditor ul li::before {
  content: url("/frontend/assets/image/svg-right-tick.png");
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  transform: scale(0.7);
  width: 16px;
  margin-top: -4px;
}
.page-inactive {
  background-color: rgba(239, 68, 68, 0.1) !important;
  color: rgb(220, 38, 38) !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
}
/* About us custom css */

.about-mission p,
.about-info p {
  line-height: 1.625;
}
.about-service p {
  font-size: 14px;
  line-height: 1.625;
  color: #6c757f;
}
.about-why-choose p {
  color: #4b5563;
  text-align: center;
  line-height: 1.75rem;
}
.contact-hero-sec p:last-child {
  margin-top: 20px;
}

.contact-hero-sec p:last-child{
    margin-top: 20px;
}
.custom-ckeditor-content{
      max-height: 95px;
      overflow-y: auto;
    }
.custom-ckeditor-content::-webkit-scrollbar {
    width: 8px;
}

.custom-ckeditor-content::-webkit-scrollbar-track {
    background: #e5e7eb; /* Track background */
    border-radius: 10px;
}

.custom-ckeditor-content::-webkit-scrollbar-thumb {
    background: grey; /* Thumb color */
    border-radius: 10px;
}


.search-field::-webkit-search-cancel-button {
    cursor: pointer;
}
.overlay-search .mmb-container {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 100000;
    /*background-color: hsl(var(--metro-dark));*/
}
@media (max-width: 1023px) {
.about-why-choose p{
  text-align: left;
}
  #mainNav .absolute {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
  }
.welcome-page-main-section .leading-relaxed p{
    padding-bottom:16px;
}
.who-we-are-main-section .leading-relaxed{
    margin-bottom:8px;
}
.who-we-are-main-section .leading-relaxed p{
    padding-bottom:24px;
}
/*.testimonials-main-section .testimonial-slide>div{
    min-height:380px;
    justify-content:flex-start;
}
.testimonials-main-section .testimonial-slide>div>div{
    margin-top:auto;
}*/
.our-resources-page-main-section .our-resources-icon-card-main .our-resources-icon-card-wrap svg{
    width:28px;
    height:28px;
}
.testimonials-main-section .testimonial-slide>div p{
    word-break:break-word;
}

/* a tag youtube link css*/

a[href*="youtu.be"] {
    color: #2c54a5 !important;
    text-decoration: underline !important;
}

  /* ---- (merged from a duplicate @media (max-width: 1023px) block) ---- */

    #mainNav .absolute{
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: 0 !important;
    }
     .about-why-choose p {
    text-align: left;
  }


  /* ---- (merged from a duplicate @media (max-width: 1023px) block) ---- */




.subscription-ckeditor p{

  margin-bottom: 6px;

}

 
.subscription-ckeditor ul li:not(first-child){

  margin-top: 8px;

}
 
.subscription-ckeditor ul li {

    display: inline-flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 20px;
    gap: 8px;
    width: 100%;
  }
  .drugsTable .dt-paging .pagination a {
    width: 34px;
  }

  /* ---- (merged from a duplicate @media (max-width: 1023px) block) ---- */


    .dropdown-parent > a{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 52px;
    }
    .dropdown-parent > a::before{
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        width: 30px;
        height: 30px;
        transform: translateY(-50%);
       /* background: #51a4ce;
        border: 1px solid #53a5cc;*/
        border-radius: 6px;
        transition: all .35s ease;
    }
    .dropdown-parent > a::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 23px;
        width: 8px;
        height: 8px;
        border-right: 2px solid grey;
        border-bottom: 2px solid grey;
        transform: translateY(-70%) rotate(45deg);
        transition: all .35s ease;
        z-index: 2;
    }
    /*.dropdown-parent.active > a::before{
        background:#0f766e;
        border-color:#0f766e;
    }*/
    .dropdown-parent.active > a::after{
        border-color:#grey;
        transform:translateY(-30%) rotate(-135deg);
    }
    .dropdown-menu{
        position: static !important;
        width:100%;
        max-height:0;
        overflow:hidden;
        opacity:0;
        visibility:hidden;
        transform:translateY(-8px);
        transition:
            max-height .4s ease,
            opacity .3s ease,
            transform .3s ease;
        border:0 !important;
        box-shadow:none !important;
        background:transparent !important;
        padding-left:16px;
        padding: 0;
        margin-top: 5px;
    }
    .dropdown-parent.active .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }
     .about-why-choose p {
    text-align: left;
  }

}

@media (min-width: 768px) {
  .contact-hero-sec h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  /* First column (Title) */
    .drugsTable table colgroup col:first-child {
        width: 150px !important;
        min-width: 150px !important;
    }

    .drugsTable table thead th:first-child,
    .drugsTable table tbody td:first-child {
        width: 150px !important;
        min-width: 150px !important;
        max-width: 150px !important;
    }
    .drugsTable table tbody td:first-child div{
      font-size: 16px !important;
      line-height: 24px !important;
    }

  .drugsTable > div > div {
    /* display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column; */
  }
  .drugsTable .dt-top-section,
  .drugsTable .dt-bottom-section {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: column;
  }

    .drugsTable table.dataTable>tbody>tr>td span{
        white-space: break-spaces;
    }
    .drugsTable table.dataTable>thead>tr>th, .drugsTable table.dataTable>thead>tr>td{
        width: 100%;
    }
    .drugsTable .dt-paging .pagination a{
        width: 34px;   
    }
    .testimonial-text{
      display:-webkit-box;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:4;
      overflow:hidden;
  }



  /* ---- (merged from a duplicate @media (max-width: 767px) block) ---- */

  .about-why-choose p {
    text-align: left;
  }
  .drugsTable > div > div {
    /* display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column; */
  }
  .drugsTable .dt-top-section,
  .drugsTable .dt-bottom-section {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: column;
  }

    .drugsTable table.dataTable>tbody>tr>td span{
        white-space: break-spaces;
    }
    .drugsTable table.dataTable>thead>tr>th, .drugsTable table.dataTable>thead>tr>td{
        width: 100%;
    }
    .drugsTable .dt-paging .pagination a{
        width: 34px;   
    }

    .overlay-search .mmb-container {
        right: 0px;
    }
}

/* contatc us page */


.contact-hero-sec h6 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--accent));
}



.contact-hero-sec h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  display: inline-flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero-sec h2::after {
  content: "";
  width: 64px;
  height: 4px;
  background-color: hsl(var(--primary));
}

.contact-hero-sec p {
  line-height: 1.625;
  color: #22262a;
}




/* Mobile Header Start */

/* Mobile Header dropdown styles merged into the consolidated max-width:1023px block above */

/* Mobile Header End */




/*.testimonials-main-section .testimonial-slide > div {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
}
@media (max-width: 767px){
  .testimonials-main-section .testimonial-slide > div {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
}
}*/


/*
.testimonials-main-section .testimonial-slide > div{
  justify-content: start;
};
.testimonial-slide-last-div{
    margin-top:auto !important;
}*/

/* Global search */
.overlay.overlay-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;    
    display: grid;
    place-items: center;
    text-align: center;
    background-color: rgba(15, 17, 23, 0.3); 
    color: #ffffff;
    opacity: 70%;
    visibility: hidden;
    
}

.overlay-search.style-dark-bg {
    background-color: rgb(255 255 255 / 0.85); 
}
.overlay-search.style-dark {
    color: #ffffff;
}

.overlay.overlay-search.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.overlay-search .search-container {
    width: 100%;
    max-width: 650px; 
    padding: 0 20px;
    box-sizing: border-box;
}

.overlay-search .search-container-inner {
    position: relative;
    width: 100%;
    align-items: center;
}

.overlay-search .search-field {
    width: 100%;
    padding: .8em 0.8em .8em 1.5em;
    color: #22262a;
      flex: 1;
    outline: none;
}
.overlay-search .search-field::placeholder{
  color: grey !important;
}
.overlay-search .search-field:focus {
    border-bottom-color: #ffffff; 
}

.overlay-search .search-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}


.overlay-search .menu-close-search {
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay-search .menu-close-search .lines {
    width: 24px;
    height: 2px;
    background: transparent; /* Hide the middle block */
    position: relative;
    display: inline-block;
}

.overlay-search .menu-close-search .lines::before,
.overlay-search .menu-close-search .lines::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
   background-color: hsl(var(--metro-dark));
    transform: none;
    left: 0;
     transition: transform 0.3s ease;
}

.overlay-search .menu-close-search .lines::before {
    transform: rotate(45deg);
}

.overlay-search .menu-close-search .lines::after {
    transform: rotate(-45deg);
}

.overlay-search .menu-close-search:hover .lines::before {
    transform: rotate(135deg);
}

.overlay-search .menu-close-search:hover .lines::after {
    transform: rotate(45deg);
}
.overlay-search .submit-search-btn {
  /*  position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsl(var(--metro-dark));
    border: none;
    padding-inline: 40px;*/
    height: 56px;
    margin: 0;
    outline: none;
    cursor: pointer;
      white-space: nowrap;
    
    /* Force color to white */
    color: #ffffff; 
}

.overlay-search .submit-search-btn i {
    font-size: 20px;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.overlay-search .submit-search-btn:hover i {
    opacity: 0.8;
}
.our-resources-icon-card-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
  
  transition-property: color; 
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  color: var(--card-accent);
}

.our-resources-icon-card-wrap:hover svg {
  color: #ffffff;
}

