@charset "UTF-8";
/* Pure white - surfaces, cards */
/* Very subtle surface highlight (equal RGB) */
/* Default background - headers, cards (neutral) */
/* Subtle borders, hover states (neutral light) */
/* Standard border color (neutral, professional) */
/* Muted text/icons, disabled states (neutral mid) */
/* Placeholder text, secondary icons (4.8:1 contrast) */
/* Secondary text (7.7:1 contrast - AAA) */
/* Primary body text (10.4:1 contrast - AAA) */
/* High-contrast titles (14.9:1 contrast - AAA) */
/* Maximum contrast (17.7:1 contrast - AAA), rare usage */
/* 10px - Tiny labels, badges */
/* 12px - Captions, timestamps, fine print */
/* 14px - Small text, buttons, form labels */
/* 15px - DEPRECATED: Use $fontSizeBase (16px) or $fontSizeSm (14px) instead */
/* 16px - Default body text (most common) ✅ USE THIS */
/* 18px - Subheadings, emphasized text */
/* 20px - Card headers, medium headings */
/* 24px - Section titles, h3 */
/* 30px - Page headers, h2 */
/* 36px - Large headings, h1 */
/* 48px - Display headers, hero text */
/* 60px - Extra large displays (optional) */
/* Decorative only */
/* Decorative only */
/* Subtle text, captions */
/* Body text (most common) */
/* Emphasized text, UI elements */
/* Subheadings, labels, buttons */
/* Headings, titles */
/* Large headings, hero text */
/* Maximum emphasis (rare) */
/* Standard body text */
/* Default headings */
/* Page titles */
/* Hero/display text */
/* Badges, icons, UI elements */
/* Large headings (h1, h2) */
/* Subheadings (h3, h4) */
/* Body text (most common) - WCAG compliant */
/* Paragraphs, readable content */
/* Long-form content, poetry */
/* Large display headings */
/* Headings (h1-h3) */
/* Body text (default) */
/* Uppercase labels, buttons */
/* Small caps, tracking */
/* Uppercase headings, extreme tracking */
/* Headings, maximum contrast */
/* Body text (most common) */
/* Supporting text, captions */
/* Disabled text, placeholders */
/* Text on dark backgrounds */
/* Informational text, links */
/* Success messages */
/* Warning messages */
/* Error messages */
/* Tight spacing, compact UI */
/* Small gaps, inline elements */
/* Medium spacing */
/* Standard gaps */
/* Comfortable spacing */
/* Large gaps, sections */
/* Extra large spacing */
/* Sharp corners, no rounding */
/* Tight UI - checkboxes, icons */
/* Small buttons, badges */
/* Cards, input fields (standard) */
/* Modals, containers, panels */
/* Large rounded panels */
/* Circular, pill-style buttons */
/* Buttons */
/* Cards, panels */
/* Modals, dialogs */
/* Badges, tags */
/* Pill buttons, chips */
/* Phone → Tablet transition */
/* Tablet → Desktop transition */
/* Standard transition (fast, snappy) */
/* Standard animation (normal) */
/* Smooth ease-out */
/* Neutral secondary actions, subtle backgrounds */
/* Informational messages, info badges */
/* Success states, positive feedback */
/* Error states, destructive actions */
/* Warning messages, caution states */
/* Error messages (alias of danger) */
/* Default icon color (primary blue) */
/* Standard icon size (16px, scales with text) */
/* Near-white page background */
/* Default border color */
/* Subtle border color */
/* Primary text color */
/* Secondary text color */
/* Divider lines */
/* Subtle dividers */
/* Footer background */
/* Footer border */
/* Default input padding to match theme scale */
/* Calendar/autocomplete trigger width */
/* Font family and base size moved to variables/_theme.scss and variables/_layout.scss for consistency */
:root {
  --text-primary: #18181b;
  --text-secondary: #3f3f46;
  --text-tertiary: #52525b;
  --text-quaternary: #71717a;
  --text-inverse: #ffffff;
  --text-info: #0288D1;
  --text-success: #059669;
  --text-warning: #d97706;
  --text-error: #dc2626;
  --shade-000: #ffffff;
  --shade-050: #fafafa;
  --shade-100: #f4f4f5;
  --shade-200: #e4e4e7;
  --shade-300: #d4d4d8;
  --shade-400: #a1a1aa;
  --shade-500: #71717a;
  --shade-600: #52525b;
  --shade-700: #3f3f46;
  --shade-800: #27272a;
  --shade-900: #18181b;
  --font-size-2xs: 0.625rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --font-weight-body: 400;
  --font-weight-heading: 600;
  --font-weight-title: 700;
  --font-weight-display: 800;
  --line-height-none: 1;
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  --letter-spacing-tighter: -0.05em;
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-widest: 0.1em;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 10px;
  --spacing-lg: 12px;
  --spacing-xl: 16px;
  --spacing-2xl: 20px;
  --spacing-3xl: 24px;
  --border-radius-none: 0;
  --border-radius-xs: 2px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 1.25rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 9999px;
  --border-radius-button: 6px;
  --border-radius-card: 8px;
  --border-radius-modal: 1.25rem;
  --border-radius-badge: 8px;
  --border-radius-pill: 9999px;
  --color-secondary: #e2e8f0;
  --color-info: #0288D1;
  --color-success: #8bc34a;
  --color-danger: #d32f2f;
  --color-warning: #ffca28;
  --color-error: #f44336;
  --transition-duration: 0.15s;
  --animation-duration: 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.25;
  color: #18181b;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.25rem; /* 36px - 2.25rem */
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.875rem; /* 30px - 1.875rem */
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.5rem; /* 24px - 1.5rem */
}

h4 {
  font-size: 1.25rem; /* 20px - 1.25rem */
}

h5 {
  font-size: 1.125rem; /* 18px - 1.125rem */
}

h6 {
  font-size: 1rem; /* 16px - 1rem */
  font-weight: 500; /* Lighter weight for smallest heading */
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
  color: #3f3f46;
}
p:last-child {
  margin-bottom: 0;
}

mark {
  background: rgb(255, 246.0023255814, 218.5);
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #a1a1aa;
  color: #52525b;
  font-style: italic;
}

hr {
  border-top: solid #d4d4d8;
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

.text-2xs {
  font-size: 0.625rem !important;
} /* 10px - Tiny labels */
.text-xs {
  font-size: 0.75rem !important;
} /* 12px - Captions */
.text-sm {
  font-size: 0.875rem !important;
} /* 14px - Small text */
.text-base {
  font-size: 1rem !important;
} /* 16px - Body text */
.text-lg {
  font-size: 1.125rem !important;
} /* 18px - Emphasized */
.text-xl {
  font-size: 1.25rem !important;
} /* 20px - Headings */
.text-2xl {
  font-size: 1.5rem !important;
} /* 24px - Titles */
.text-3xl {
  font-size: 1.875rem !important;
} /* 30px - Page headers */
.text-4xl {
  font-size: 2.25rem !important;
} /* 36px - Large headings */
.text-5xl {
  font-size: 3rem !important;
} /* 48px - Display */
.text-6xl {
  font-size: 3.75rem !important;
} /* 60px - Hero text */
.font-thin {
  font-weight: 100 !important;
} /* 100 */
.font-extralight {
  font-weight: 200 !important;
} /* 200 */
.font-light {
  font-weight: 300 !important;
} /* 300 */
.font-regular {
  font-weight: 400 !important;
} /* 400 */
.font-medium {
  font-weight: 500 !important;
} /* 500 */
.font-semibold {
  font-weight: 600 !important;
} /* 600 */
.font-bold {
  font-weight: 700 !important;
} /* 700 */
.font-extrabold {
  font-weight: 800 !important;
} /* 800 */
.font-black {
  font-weight: 900 !important;
} /* 900 */
.font-body {
  font-weight: 400 !important;
} /* 400 - Body text */
.font-heading {
  font-weight: 600 !important;
} /* 600 - Headings */
.font-title {
  font-weight: 700 !important;
} /* 700 - Titles */
.font-display {
  font-weight: 800 !important;
} /* 800 - Display */
.text-primary {
  color: #18181b !important;
} /* Headings, maximum contrast */
.text-secondary {
  color: #3f3f46 !important;
} /* Body text (most common) */
.text-tertiary {
  color: #52525b !important;
} /* Supporting text, captions */
.text-quaternary {
  color: #71717a !important;
} /* Disabled text, placeholders */
.text-inverse {
  color: #ffffff !important;
} /* Text on dark backgrounds */
.text-info {
  color: #0288D1 !important;
} /* Informational text */
.text-success {
  color: #059669 !important;
} /* Success messages */
.text-warning {
  color: #d97706 !important;
} /* Warning messages */
.text-error {
  color: #dc2626 !important;
} /* Error messages */
.text-shade000 {
  color: #ffffff !important;
}

.text-shade100 {
  color: #f4f4f5 !important;
}

.text-shade200 {
  color: #e4e4e7 !important;
}

.text-shade300 {
  color: #d4d4d8 !important;
}

.text-shade400 {
  color: #a1a1aa !important;
}

.text-shade500 {
  color: #71717a !important;
}

.text-shade600 {
  color: #52525b !important;
}

.text-shade700 {
  color: #3f3f46 !important;
}

.text-shade800 {
  color: #27272a !important;
}

.text-shade900 {
  color: #18181b !important;
}

.leading-none {
  line-height: 1 !important;
} /* 1 - Tight UI */
.leading-tight {
  line-height: 1.25 !important;
} /* 1.25 - Headings */
.leading-snug {
  line-height: 1.375 !important;
} /* 1.375 - Subheadings */
.leading-normal {
  line-height: 1.5 !important;
} /* 1.5 - Body text (WCAG) */
.leading-relaxed {
  line-height: 1.625 !important;
} /* 1.625 - Paragraphs */
.leading-loose {
  line-height: 2 !important;
} /* 2 - Long-form content */
.tracking-tighter {
  letter-spacing: -0.05em !important;
} /* -0.05em - Display */
.tracking-tight {
  letter-spacing: -0.025em !important;
} /* -0.025em - Headings */
.tracking-normal {
  letter-spacing: 0 !important;
} /* 0 - Default */
.tracking-wide {
  letter-spacing: 0.025em !important;
} /* 0.025em - Labels */
.tracking-wider {
  letter-spacing: 0.05em !important;
} /* 0.05em - Small caps */
.tracking-widest {
  letter-spacing: 0.1em !important;
} /* 0.1em - Uppercase */
.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.underline {
  text-decoration: underline !important;
}

.line-through {
  text-decoration: line-through !important;
}

.no-underline {
  text-decoration: none !important;
}

.whitespace-normal {
  white-space: normal !important;
}

.whitespace-nowrap {
  white-space: nowrap !important;
}

.whitespace-pre {
  white-space: pre !important;
}

.whitespace-pre-line {
  white-space: pre-line !important;
}

.whitespace-pre-wrap {
  white-space: pre-wrap !important;
}

.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeinmask {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

html {
  height: 100%;
  font-size: 1rem;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3f3f46;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #FCFBFC;
}

a {
  text-decoration: none;
  color: #1976D2;
}

.layout-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.layout-main .layout-content {
  flex: 1 1 auto;
}

.layout-ajax-loader-icon {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  font-size: 2rem;
  color: #52525b;
  z-index: 999;
}

.layout-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.05, 0.74, 0.2, 0.99);
  animation-fill-mode: forwards;
}

/* Pure white - surfaces, cards */
/* Very subtle surface highlight (equal RGB) */
/* Default background - headers, cards (neutral) */
/* Subtle borders, hover states (neutral light) */
/* Standard border color (neutral, professional) */
/* Muted text/icons, disabled states (neutral mid) */
/* Placeholder text, secondary icons (4.8:1 contrast) */
/* Secondary text (7.7:1 contrast - AAA) */
/* Primary body text (10.4:1 contrast - AAA) */
/* High-contrast titles (14.9:1 contrast - AAA) */
/* Maximum contrast (17.7:1 contrast - AAA), rare usage */
/* 10px - Tiny labels, badges */
/* 12px - Captions, timestamps, fine print */
/* 14px - Small text, buttons, form labels */
/* 15px - DEPRECATED: Use $fontSizeBase (16px) or $fontSizeSm (14px) instead */
/* 16px - Default body text (most common) ✅ USE THIS */
/* 18px - Subheadings, emphasized text */
/* 20px - Card headers, medium headings */
/* 24px - Section titles, h3 */
/* 30px - Page headers, h2 */
/* 36px - Large headings, h1 */
/* 48px - Display headers, hero text */
/* 60px - Extra large displays (optional) */
/* Decorative only */
/* Decorative only */
/* Subtle text, captions */
/* Body text (most common) */
/* Emphasized text, UI elements */
/* Subheadings, labels, buttons */
/* Headings, titles */
/* Large headings, hero text */
/* Maximum emphasis (rare) */
/* Standard body text */
/* Default headings */
/* Page titles */
/* Hero/display text */
/* Badges, icons, UI elements */
/* Large headings (h1, h2) */
/* Subheadings (h3, h4) */
/* Body text (most common) - WCAG compliant */
/* Paragraphs, readable content */
/* Long-form content, poetry */
/* Large display headings */
/* Headings (h1-h3) */
/* Body text (default) */
/* Uppercase labels, buttons */
/* Small caps, tracking */
/* Uppercase headings, extreme tracking */
/* Headings, maximum contrast */
/* Body text (most common) */
/* Supporting text, captions */
/* Disabled text, placeholders */
/* Text on dark backgrounds */
/* Informational text, links */
/* Success messages */
/* Warning messages */
/* Error messages */
/* Tight spacing, compact UI */
/* Small gaps, inline elements */
/* Medium spacing */
/* Standard gaps */
/* Comfortable spacing */
/* Large gaps, sections */
/* Extra large spacing */
/* Sharp corners, no rounding */
/* Tight UI - checkboxes, icons */
/* Small buttons, badges */
/* Cards, input fields (standard) */
/* Modals, containers, panels */
/* Large rounded panels */
/* Circular, pill-style buttons */
/* Buttons */
/* Cards, panels */
/* Modals, dialogs */
/* Badges, tags */
/* Pill buttons, chips */
/* Phone → Tablet transition */
/* Tablet → Desktop transition */
/* Standard transition (fast, snappy) */
/* Standard animation (normal) */
/* Smooth ease-out */
/* Neutral secondary actions, subtle backgrounds */
/* Informational messages, info badges */
/* Success states, positive feedback */
/* Error states, destructive actions */
/* Warning messages, caution states */
/* Error messages (alias of danger) */
/* Default icon color (primary blue) */
/* Standard icon size (16px, scales with text) */
/* Near-white page background */
/* Default border color */
/* Subtle border color */
/* Primary text color */
/* Secondary text color */
/* Divider lines */
/* Subtle dividers */
/* Footer background */
/* Footer border */
/* Default input padding to match theme scale */
/* Calendar/autocomplete trigger width */
/* Font family and base size moved to variables/_theme.scss and variables/_layout.scss for consistency */
.layout-wrapper .layout-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s ease;
}

.home-topbar-clean .layout-topbar-logo, .layout-wrapper .layout-topbar .layout-topbar-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.home-topbar-clean .layout-topbar-logo:hover, .layout-wrapper .layout-topbar .layout-topbar-logo:hover {
  opacity: 0.9;
}
.home-topbar-clean .layout-topbar-logo .logo-icon-wrapper, .layout-wrapper .layout-topbar .layout-topbar-logo .logo-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.home-topbar-clean .layout-topbar-logo .logo-icon-wrapper::before, .layout-wrapper .layout-topbar .layout-topbar-logo .logo-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 1.25rem 1.25rem 0 0;
}
.home-topbar-clean .layout-topbar-logo .logo-icon-wrapper i, .layout-wrapper .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  font-size: 1.75rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.home-topbar-clean .layout-topbar-logo .logo-text, .layout-wrapper .layout-topbar .layout-topbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.15;
}
.home-topbar-clean .layout-topbar-logo .logo-text .logo-title, .layout-wrapper .layout-topbar .layout-topbar-logo .logo-text .logo-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.home-topbar-clean .layout-topbar-logo .logo-text .logo-subtitle, .layout-wrapper .layout-topbar .layout-topbar-logo .logo-text .logo-subtitle {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.home-topbar-clean .topbar-icons, .layout-wrapper .layout-topbar .topbar-icons {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.home-topbar-clean .topbar-icon-item .layout-topbar-icon, .layout-wrapper .layout-topbar .topbar-icon-item .layout-topbar-icon,
.home-topbar-clean .topbar-icon-item .topbar-icon-link,
.layout-wrapper .layout-topbar .topbar-icon-item .topbar-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none;
}
.home-topbar-clean .topbar-icon-item .layout-topbar-icon i, .layout-wrapper .layout-topbar .topbar-icon-item .layout-topbar-icon i,
.home-topbar-clean .topbar-icon-item .topbar-icon-link i,
.layout-wrapper .layout-topbar .topbar-icon-item .topbar-icon-link i {
  font-size: 1.125rem;
}

.home-topbar-clean .topbar-user-profile .topbar-profile-link, .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link .profile-avatar, .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link .profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e4e4e7;
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link .layout-profile-userinfo, .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link .layout-profile-userinfo {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-name, .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-name {
  font-size: 0.875rem;
  font-weight: 500;
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-role, .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-role {
  font-size: 0.75rem;
  font-weight: 400;
}

.topbar-profile-right .topbar-profile-link {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}
.topbar-profile-right .layout-profile-userinfo {
  align-items: flex-end;
  text-align: right;
}

.topbar-separator {
  width: 1px;
  height: 24px;
  background: #d4d4d8;
}

.layout-wrapper .layout-topbar {
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0 1.5rem;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
}
.layout-wrapper .layout-topbar .topbar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.layout-wrapper .layout-topbar .layout-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.15s;
}
.layout-wrapper .layout-topbar .layout-menu-button i {
  font-size: 1.875rem;
}
.layout-wrapper .layout-topbar .layout-menu-button:hover {
  background: rgba(0, 0, 0, 0.05);
}
.layout-wrapper .layout-topbar .layout-topbar-logo .logo-title {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.layout-wrapper .layout-topbar .layout-topbar-logo .logo-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.layout-wrapper .layout-topbar .topbar-spacer {
  flex: 1;
}
.layout-wrapper .layout-topbar .topbar-right {
  display: flex;
  align-items: center;
}
.layout-wrapper .layout-topbar .topbar-icon-form {
  display: flex;
  margin: 0;
  padding: 0;
}

.home-body {
  background: #fafafa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.home-topbar-clean {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e4e4e7;
  padding: 1rem 0;
  z-index: 100;
  width: 100%;
}
.home-topbar-clean .topbar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.home-topbar-clean .topbar-left {
  display: flex;
  align-items: center;
}
.home-topbar-clean .layout-topbar-logo .logo-icon-wrapper {
  background: linear-gradient(135deg, #2653A0 0%, #1e3a70 100%);
  box-shadow: 0 4px 12px rgba(38, 83, 160, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.home-topbar-clean .layout-topbar-logo .logo-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 1.25rem 1.25rem 0 0;
}
.home-topbar-clean .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.home-topbar-clean .layout-topbar-logo .logo-title {
  color: #18181b;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.home-topbar-clean .layout-topbar-logo .logo-subtitle {
  color: #3f3f46;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.home-topbar-clean .topbar-spacer {
  flex: 1;
}
.home-topbar-clean .topbar-right {
  display: flex;
  align-items: center;
}
.home-topbar-clean .topbar-icons {
  gap: 1rem;
}
.home-topbar-clean .topbar-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #18181b;
  font-size: 0.875rem;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}
.home-topbar-clean .topbar-clock i {
  font-size: 1.125rem;
  color: #3f3f46;
}
.home-topbar-clean .topbar-clock .clock-time {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
}
.home-topbar-clean .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-role {
  font-size: 0.75rem;
  font-weight: 400;
  color: #3f3f46;
}
.home-topbar-clean .topbar-icon-form {
  display: flex;
  margin: 0;
  padding: 0;
}

.home-main {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 960px) {
  .home-main {
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 576px) {
  .home-main {
    padding: 1rem 0.75rem;
  }
}

@media (max-width: 960px) {
  .layout-wrapper .layout-topbar .topbar-left {
    gap: 0.5rem;
  }
  .layout-wrapper .layout-topbar .layout-topbar-logo .logo-text .logo-subtitle {
    display: none;
  }
  .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link {
    padding: 0.5rem;
  }
  .layout-wrapper .layout-topbar .topbar-user-profile .topbar-profile-link .layout-profile-userinfo {
    display: none;
  }
  .home-topbar-clean .topbar-clock .clock-time {
    display: none;
  }
  .home-topbar-clean .topbar-user-profile .topbar-profile-link .layout-profile-userinfo .layout-profile-role {
    display: none;
  }
}
@media (max-width: 576px) {
  .layout-wrapper .layout-topbar {
    padding: 0 1rem;
  }
  .layout-wrapper .layout-topbar .topbar-icons {
    gap: 0.25rem;
  }
  .layout-wrapper .layout-topbar .topbar-icon-item .layout-topbar-icon,
  .layout-wrapper .layout-topbar .topbar-icon-item .topbar-icon-link {
    width: 40px;
    height: 40px;
  }
  .layout-wrapper .layout-topbar .topbar-icon-item .layout-topbar-icon i,
  .layout-wrapper .layout-topbar .topbar-icon-item .topbar-icon-link i {
    font-size: 1rem;
  }
  .home-topbar-clean .topbar-content {
    padding: 0 1rem;
    gap: 1rem;
  }
  .home-topbar-clean .topbar-separator {
    display: none;
  }
  .home-topbar-clean .topbar-icons {
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .layout-wrapper .layout-topbar .layout-topbar-logo .logo-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  .layout-wrapper .layout-topbar .layout-topbar-logo .logo-text {
    display: none;
  }
  .home-topbar-clean .layout-topbar-logo .logo-text .logo-title {
    font-size: 0.875rem;
  }
}
.layout-topbar-light .layout-topbar {
  background: #ffffff;
}
.layout-topbar-light .layout-topbar .layout-menu-button,
.layout-topbar-light .layout-topbar .layout-topbar-icon,
.layout-topbar-light .layout-topbar .topbar-icon-link {
  color: #3f3f46;
}
.layout-topbar-light .layout-topbar .layout-menu-button:hover,
.layout-topbar-light .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-light .layout-topbar .topbar-icon-link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.layout-topbar-light .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #3f3f46;
}
.layout-topbar-light .layout-topbar .layout-topbar-logo .logo-title {
  color: #18181b;
}
.layout-topbar-light .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(24, 24, 27, 0.85);
}
.layout-topbar-light .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.layout-topbar-light .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-light .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #18181b;
}
.layout-topbar-light .layout-topbar .topbar-separator {
  background: rgba(63, 63, 70, 0.35);
}

.layout-topbar-dark .layout-topbar {
  background: #18181b;
}
.layout-topbar-dark .layout-topbar .layout-menu-button,
.layout-topbar-dark .layout-topbar .layout-topbar-icon,
.layout-topbar-dark .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-menu-button:hover,
.layout-topbar-dark .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-dark .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.layout-topbar-dark .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-dark .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.layout-topbar-dark .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-dark .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-charcoal .layout-topbar {
  background: #374151;
}
.layout-topbar-charcoal .layout-topbar .layout-menu-button,
.layout-topbar-charcoal .layout-topbar .layout-topbar-icon,
.layout-topbar-charcoal .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-charcoal .layout-topbar .layout-menu-button:hover,
.layout-topbar-charcoal .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-charcoal .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.layout-topbar-charcoal .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-charcoal .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-charcoal .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-charcoal .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.layout-topbar-charcoal .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-charcoal .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-charcoal .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-cyan .layout-topbar {
  background: #0891b2;
}
.layout-topbar-cyan .layout-topbar .layout-menu-button,
.layout-topbar-cyan .layout-topbar .layout-topbar-icon,
.layout-topbar-cyan .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-cyan .layout-topbar .layout-menu-button:hover,
.layout-topbar-cyan .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-cyan .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-cyan .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-cyan .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-cyan .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-cyan .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-cyan .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-blue .layout-topbar {
  background: #2653A0;
}
.layout-topbar-blue .layout-topbar .layout-menu-button,
.layout-topbar-blue .layout-topbar .layout-topbar-icon,
.layout-topbar-blue .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar .layout-menu-button:hover,
.layout-topbar-blue .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-blue .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-blue .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-blue .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-blue .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-blue .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-teal .layout-topbar {
  background: #047857;
}
.layout-topbar-teal .layout-topbar .layout-menu-button,
.layout-topbar-teal .layout-topbar .layout-topbar-icon,
.layout-topbar-teal .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-teal .layout-topbar .layout-menu-button:hover,
.layout-topbar-teal .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-teal .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-teal .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-teal .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-teal .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-teal .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-teal .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-teal .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-teal .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-green .layout-topbar {
  background: #16a34a;
}
.layout-topbar-green .layout-topbar .layout-menu-button,
.layout-topbar-green .layout-topbar .layout-topbar-icon,
.layout-topbar-green .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-green .layout-topbar .layout-menu-button:hover,
.layout-topbar-green .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-green .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-green .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-green .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-green .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-green .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-green .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-green .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-green .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-orange .layout-topbar {
  background: #C76D09;
}
.layout-topbar-orange .layout-topbar .layout-menu-button,
.layout-topbar-orange .layout-topbar .layout-topbar-icon,
.layout-topbar-orange .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-orange .layout-topbar .layout-menu-button:hover,
.layout-topbar-orange .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-orange .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-orange .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-orange .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-orange .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-orange .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-orange .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-orange .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-orange .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-purple .layout-topbar {
  background: #8b5cf6;
}
.layout-topbar-purple .layout-topbar .layout-menu-button,
.layout-topbar-purple .layout-topbar .layout-topbar-icon,
.layout-topbar-purple .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-purple .layout-topbar .layout-menu-button:hover,
.layout-topbar-purple .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-purple .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-purple .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-purple .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-purple .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-purple .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-purple .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-purple .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-purple .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-topbar-magenta .layout-topbar {
  background: #B944D6;
}
.layout-topbar-magenta .layout-topbar .layout-menu-button,
.layout-topbar-magenta .layout-topbar .layout-topbar-icon,
.layout-topbar-magenta .layout-topbar .topbar-icon-link {
  color: #ffffff;
}
.layout-topbar-magenta .layout-topbar .layout-menu-button:hover,
.layout-topbar-magenta .layout-topbar .layout-topbar-icon:hover,
.layout-topbar-magenta .layout-topbar .topbar-icon-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-magenta .layout-topbar .layout-topbar-logo .logo-icon-wrapper i {
  color: #ffffff;
}
.layout-topbar-magenta .layout-topbar .layout-topbar-logo .logo-title {
  color: #ffffff;
}
.layout-topbar-magenta .layout-topbar .layout-topbar-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.layout-topbar-magenta .layout-topbar .topbar-user-profile .topbar-profile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}
.layout-topbar-magenta .layout-topbar .topbar-user-profile .layout-profile-name,
.layout-topbar-magenta .layout-topbar .topbar-user-profile .layout-profile-role {
  color: #ffffff;
}
.layout-topbar-magenta .layout-topbar .topbar-separator {
  background: rgba(255, 255, 255, 0.35);
}

.layout-wrapper .layout-menu-container {
  position: fixed;
  height: 100%;
  top: 65px;
  overflow: auto;
  z-index: 999;
}
.layout-wrapper .layout-menu-container .sidebar-user-profile {
  padding: 1rem;
  border-bottom: 1px solid;
}
.layout-wrapper .layout-menu-container .sidebar-user-profile .sidebar-profile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s;
}
.layout-wrapper .layout-menu-container .sidebar-user-profile .sidebar-profile-link .profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}
.layout-wrapper .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
  flex: 1;
}
.layout-wrapper .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo .sidebar-profile-name {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.layout-wrapper .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo .sidebar-profile-role {
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.layout-wrapper .layout-menu-container .layout-menu {
  list-style-type: none;
  margin: 0.5em 0;
  padding: 0;
}
.layout-wrapper .layout-menu-container .layout-menu > li {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.layout-wrapper .layout-menu-container .layout-menu > li.active-menuitem {
  border-left-color: #1976D2;
}
.layout-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem 0 0.5rem 1rem;
  color: #6c7276;
}
.layout-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > a {
  display: none;
}
.layout-wrapper .layout-menu-container .layout-menu li a {
  display: block;
  font-size: 0.875rem;
  padding: 0.75em 1em;
  position: relative;
  cursor: pointer;
  outline: none;
  border-radius: 8px;
  transition: color 0.15s, background-color 0.15s, border-left-color 0.15s;
}
.layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-text {
  display: inline-block;
  vertical-align: middle;
}
.layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-icon {
  margin-right: 0.5em;
  vertical-align: middle;
  width: 1.5rem; /* Fixed width for icons */
  text-align: center; /* Ensure consistent alignment */
}
.layout-wrapper .layout-menu-container .layout-menu li a.rotated-icon .layout-menuitem-icon {
  transform: rotate(90deg);
}
.layout-wrapper .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  position: absolute;
  right: 5px;
  top: 50%;
  font-size: 1.125rem;
  margin-top: -8px;
  transition: transform 0.15s;
}
.layout-wrapper .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  transform: rotate(-180deg);
}
.layout-wrapper .layout-menu-container .layout-menu li ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li a {
  padding-left: 1rem; /* First-level submenu: 1.5rem */
  font-weight: 400;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li a {
  padding-left: 2rem; /* Second-level: 1.5rem + 1rem */
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li a {
  padding-left: 3rem; /* Third-level: 2.5rem + 1rem */
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li li a {
  padding-left: 4rem; /* Fourth-level: 3.5rem + 1rem */
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li a {
  padding-left: 5rem; /* Fifth-level: 4.5rem + 1rem */
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li li a {
  padding-left: 6rem; /* Sixth-level: 5.5rem + 1rem */
}
.layout-wrapper .layout-menu-container .layout-menu li .layout-menu-tooltip {
  display: none;
}
.layout-wrapper .layout-menu-container .menu-scroll-content {
  padding-bottom: 120px;
}
.layout-wrapper.layout-menu-light .layout-menu-container {
  background-color: #ffffff;
  border: 1px solid #ebebef;
  border-left: 0;
  border-top: 0;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile {
  border-bottom-color: #ebebef;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile .sidebar-profile-link .profile-avatar {
  border-color: #ebebef;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo .sidebar-profile-name {
  color: #3f3f46;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo .sidebar-profile-role {
  color: #3f3f46;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile .sidebar-profile-link:hover {
  background-color: #e4e4e7;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile .sidebar-profile-link:hover .sidebar-profile-userinfo .sidebar-profile-name {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .sidebar-user-profile .sidebar-profile-link:hover .sidebar-profile-userinfo .sidebar-profile-role {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu ul {
  background-color: #ffffff;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
  color: #52525b;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a .layout-menuitem-text {
  color: #3f3f46;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a .layout-menuitem-icon, .layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  color: #65656a;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover {
  background-color: #e4e4e7;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover .layout-menuitem-text {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover .layout-menuitem-icon, .layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover .layout-submenu-toggler {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-text {
  color: #1976D2;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-icon, .layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  color: #1976D2;
}
.layout-wrapper.layout-menu-dark .layout-menu-container {
  background-color: #252529;
  border: 1px solid #252529;
  border-left: 0;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile {
  border-bottom-color: #424247;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile .sidebar-profile-link .profile-avatar {
  border-color: #252529;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo .sidebar-profile-name {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo .sidebar-profile-role {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile .sidebar-profile-link:hover {
  background-color: #2e2e33;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile .sidebar-profile-link:hover .sidebar-profile-userinfo .sidebar-profile-name {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .sidebar-user-profile .sidebar-profile-link:hover .sidebar-profile-userinfo .sidebar-profile-role {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu ul {
  background-color: #252529;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a .layout-menuitem-text {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a .layout-menuitem-icon, .layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  color: #a6a6a6;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover {
  background-color: #2e2e33;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover .layout-menuitem-text {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover .layout-menuitem-icon, .layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover .layout-submenu-toggler {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-text {
  color: #1976D2;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-icon, .layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  color: #1976D2;
}
.layout-wrapper .layout-main {
  padding-top: 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.layout-wrapper .layout-main .layout-content {
  padding: 1.5rem;
  flex: 1 1 0;
}
.layout-wrapper .layout-main .layout-content.no-padding {
  padding: 0;
}
.layout-wrapper.layout-static .layout-menu-container .layout-menu li ul, .layout-wrapper.layout-overlay .layout-menu-container .layout-menu li ul {
  display: block;
}
.layout-wrapper.layout-static .layout-menu-container .layout-menu li ul li ul, .layout-wrapper.layout-overlay .layout-menu-container .layout-menu li ul li ul {
  display: none;
}

@media screen and (min-width: 992px) {
  .layout-wrapper.layout-static .layout-menu-container {
    width: 288px;
    left: 0;
    transition: left 0.15s;
  }
  .layout-wrapper.layout-static .layout-main {
    margin-left: 288px;
    transition: margin-left 0.15s;
  }
  .layout-wrapper.layout-static .layout-footer {
    transition: margin-left 0.15s;
  }
  .layout-wrapper.layout-static.layout-static-inactive .layout-menu-container {
    left: -288px;
  }
  .layout-wrapper.layout-static.layout-static-inactive .layout-main {
    margin-left: 0;
  }
  .layout-wrapper.layout-static.layout-static-inactive-restore .layout-menu-container {
    transition: none;
  }
  .layout-wrapper.layout-overlay .layout-menu-container {
    width: 288px;
    left: -288px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    transition: left 0.15s;
  }
  .layout-wrapper.layout-overlay.layout-overlay-active .layout-menu-container {
    left: 0;
  }
  .layout-wrapper.layout-slim .layout-topbar .layout-topbar-logo {
    margin: 10px 0 0 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container {
    width: 57px;
    overflow: visible;
  }
  .layout-wrapper.layout-slim .layout-menu-container .sidebar-user-profile .sidebar-profile-link {
    justify-content: center;
    padding: 0.75rem 0.5rem;
  }
  .layout-wrapper.layout-slim .layout-menu-container .sidebar-user-profile .sidebar-profile-link .profile-avatar {
    width: 32px;
    height: 32px;
  }
  .layout-wrapper.layout-slim .layout-menu-container .sidebar-user-profile .sidebar-profile-link .sidebar-profile-userinfo {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li {
    position: relative;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.layout-root-menuitem > a {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a {
    display: block;
    text-align: center;
    padding: 1em 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    font-size: 1.125rem;
    margin-right: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-menuitem-text {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a:hover + .layout-menu-tooltip {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-submenu-toggler {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > ul {
    position: absolute;
    display: none;
    top: 0;
    left: 52px;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.active-menuitem > ul {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip {
    display: none;
    padding: 0 5px;
    position: absolute;
    left: 57px;
    top: 10px;
    line-height: 1;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    padding: 6px 8px;
    font-weight: 600;
    font-size: 0.75rem;
    background-color: #333333;
    color: #c8c8c8;
    min-width: 75px;
    white-space: nowrap;
    text-align: center;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #333333;
  }
  .layout-wrapper.layout-slim .layout-main {
    margin-left: 57px;
  }
  .layout-wrapper.layout-horizontal .layout-main {
    padding-top: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar {
    position: static;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo {
    margin: 4px 0 0 1em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container {
    width: 100%;
    overflow: visible;
    min-height: 45px;
    position: static;
    padding: 0.5em 1em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .menu-scroll-content {
    padding-bottom: 170px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu {
    margin: 0;
    padding: 0;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li {
    display: inline-block;
    width: auto;
    padding: 0;
    position: relative;
    border-left: 0 none;
    border-right: 0 none;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.layout-root-menuitem > a {
    display: block;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a {
    height: 2.5em;
    padding: 0.6em 1em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    color: #65656a;
    margin-right: 0.5em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-submenu-toggler {
    position: static;
    margin-left: 0.25em;
    vertical-align: middle;
    margin-top: 0;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > ul {
    top: 2.5em;
    left: 0;
    display: none;
    min-width: 200px;
    position: absolute;
    margin: 0;
    overflow: auto;
    max-height: 450px;
    z-index: 1;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 8px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.active-menuitem > a {
    border-left-color: transparent;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.active-menuitem > ul {
    display: block;
    border-top: 4px solid #1976D2;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-button, .layout-wrapper.layout-slim .layout-topbar .layout-menu-button {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo, .layout-wrapper.layout-slim .layout-topbar .layout-topbar-logo {
    margin: 4px 0 0 1em;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-search, .layout-wrapper.layout-slim .layout-topbar .layout-topbar-search {
    top: 5px;
    margin-left: 40px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .menu-scroll-content, .layout-wrapper.layout-slim .layout-menu-container .menu-scroll-content {
    width: 100%;
    padding: 0;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li a {
    padding-left: 16px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li a {
    padding-left: 32px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li a {
    padding-left: 48px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li a {
    padding-left: 64px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li a {
    padding-left: 80px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li li a {
    padding-left: 96px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .menu-scroll-content, .layout-wrapper.layout-slim .layout-menu-container .menu-scroll-content {
    width: 100%;
    padding: 0;
  }
}
/* Tablet breakpoint (≤ 991px) */
@media screen and (max-width: 991px) {
  .layout-wrapper .layout-topbar .layout-topbar-logo img {
    height: 16px;
  }
  .layout-wrapper .layout-menu-container {
    top: 65px;
    width: 288px;
    left: -288px;
    box-shadow: 5px 0px 10px -5px rgba(0, 0, 0, 0.16);
    transition: left 0.15s;
  }
  .layout-wrapper .layout-main {
    margin-left: 0;
    transition: margin-left 0.15s;
  }
  .layout-wrapper .layout-main .layout-content {
    padding: 1.25rem;
  }
  .layout-wrapper .layout-mask {
    display: none;
    background-color: #252529;
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
  .layout-wrapper.layout-mobile-active .layout-menu-container {
    left: 0;
  }
  .layout-wrapper.layout-mobile-active .layout-mask {
    display: block;
  }
  body.blocked-scroll {
    overflow: hidden;
  }
}
/* Phone breakpoint (≤ 576px) */
@media screen and (max-width: 576px) {
  .layout-wrapper .layout-main .layout-content {
    padding: 1rem;
  }
}
.layout-right-panel {
  width: 288px;
  right: -288px;
  background-color: #ffffff;
  border-left: solid 1px #ebebef;
  position: fixed;
  z-index: 999;
  top: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  transition: right 0.15s;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
}
.layout-right-panel.layout-right-panel-active {
  right: 0;
  display: block;
}
.layout-right-panel .ui-progressbar {
  height: 8px;
}
.layout-right-panel .ui-tabs.ui-tabs-top {
  padding: 16px;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-panels {
  border: 0 none;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel {
  padding: 0;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header {
  border: 0 none;
  margin-right: 0;
  width: 50%;
  padding: 0;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header a {
  padding: 0.857em 1em;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 0.75rem;
  color: #65656a;
  background-color: #ffffff;
  border-bottom: 2px solid #d8d8dc;
  transition: color 0.15s;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-hover {
  border: 0 none;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-hover a {
  color: #252529;
  background-color: #ffffff;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active {
  border: 0 none;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active a {
  font-weight: 500;
  color: #252529;
  background-color: #ffffff;
  border-bottom: 2px solid #0f97c7;
}
.layout-right-panel .status-title {
  margin: 24px 0 12px 0;
}
.layout-right-panel .status-title span {
  color: #65656a;
  font-size: 0.75rem;
  font-weight: 500;
}
.layout-right-panel .status-title i {
  float: right;
  font-size: 1.125rem;
  color: #8b8b90;
}
.layout-right-panel .status-content {
  margin-top: 12px;
  color: #65656a;
}
.layout-right-panel .status-content .percentage-1 {
  color: #0fc752;
  font-size: 0.75rem;
  font-weight: 500;
}
.layout-right-panel .status-content .percentage-2 {
  margin-right: 0.25em;
  color: #65656a;
  font-size: 0.75rem;
  font-weight: 500;
}
.layout-right-panel .messages-title {
  margin: 24px 0 0 0;
  border-bottom: 1px solid #ebebef;
}
.layout-right-panel .messages-title span {
  color: #252529;
  font-size: 0.75rem;
  font-weight: 500;
}
.layout-right-panel .messages-content .time {
  color: #8b8b90;
  font-size: 0.625rem;
}
.layout-right-panel .messages-content .message-1 {
  color: #0fc752;
  font-size: 0.75rem;
  font-weight: 500;
}
.layout-right-panel .messages-content .message-2 {
  color: #f5b064;
  font-size: 0.75rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .layout-right-panel {
    top: 110px;
  }
}
.layout-footer {
  padding: 1.5em 1.5em 0.5em 1.5em;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-footer img {
  height: 21px;
}
.layout-footer p {
  margin: 2px 0 0 0;
}
.layout-footer .footer-icons {
  text-align: right;
}
.layout-footer .footer-icons a {
  color: #52525b;
  font-size: 1.25rem;
  margin-right: 16px;
  transition: color 0.15s;
}
.layout-footer .footer-icons a .pi {
  font-size: 1.5rem;
}
.layout-footer .footer-icons a:hover {
  color: #3f3f46;
}

/* Status Card
 * Simple card design for system status with colored icon background
 * Based on modern dashboard design patterns with minimal, clean styling
 */
.status-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 120px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1.25rem; /* Rounder corners for modern look */
  border: 1px solid #e4e4e7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  /* Color variants for different statuses */
}
.status-card:hover {
  border-color: #d4d4d8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.status-card .status-header {
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
}
.status-card .status-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  line-height: 1.25;
  margin-bottom: auto;
}
.status-card .status-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  font-size: 1.5rem;
  color: #ffffff;
  /* Default background - neutral */
  background: linear-gradient(135deg, #71717a 0%, #52525b 100%);
}
.status-card .status-icon i {
  font-size: 1.5rem;
}
.status-card.status-success .status-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.status-card.status-success .status-value {
  color: #059669;
}
.status-card.status-warning .status-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.status-card.status-warning .status-value {
  color: #d97706;
}
.status-card.status-danger .status-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.status-card.status-danger .status-value {
  color: #dc2626;
}
.status-card.status-info .status-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.status-card.status-info .status-value {
  color: #2563eb;
}
.status-card.status-primary .status-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.status-card.status-primary .status-value {
  color: #7c3aed;
}

/* KPI Card
 * Card for displaying key performance indicators with title, value, and trend
 * Now uses status-card base styles for consistency across dashboards
 */
.kpi-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 120px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e4e4e7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  /* Color variants matching status-card */
}
.kpi-card:hover {
  border-color: #d4d4d8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.kpi-card:hover .card-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.kpi-card .kpi-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  padding-right: 4.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.kpi-card .kpi-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  line-height: 1.25;
  margin-bottom: auto;
  padding-right: 4.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.kpi-card .kpi-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  font-size: 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #71717a 0%, #52525b 100%);
}
.kpi-card .kpi-icon i {
  font-size: 1.5rem;
}
.kpi-card .kpi-status {
  font-size: 0.875rem;
  color: #52525b;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.kpi-card .kpi-status i {
  font-size: 1rem;
}
.kpi-card .kpi-status.positive {
  color: #059669;
}
.kpi-card .kpi-status.negative {
  color: #dc2626;
}
.kpi-card .card-actions {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.kpi-card.kpi-success .kpi-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.kpi-card.kpi-success .kpi-value {
  color: #059669;
}
.kpi-card.kpi-info .kpi-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.kpi-card.kpi-info .kpi-value {
  color: #2563eb;
}
.kpi-card.kpi-warning .kpi-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.kpi-card.kpi-warning .kpi-value {
  color: #d97706;
}
.kpi-card.kpi-danger .kpi-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.kpi-card.kpi-danger .kpi-value {
  color: #dc2626;
}

/* Charts Row
 * Layout for displaying charts and related data
 */
.charts-row {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
}
.charts-row > .card {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  width: 100%;
}
.charts-row > .card.wide {
  flex: 2;
}
.charts-row > .card.wide .card-body {
  max-height: 400px;
  overflow: hidden;
}
.charts-row > .card.narrow {
  flex: 1;
}
.charts-row > .card.narrow .card-body {
  max-height: 400px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .charts-row {
    flex-direction: column;
  }
  .charts-row > .card.wide .card-body,
  .charts-row > .card.narrow .card-body {
    max-height: 300px;
  }
}

/* Nonconformity Card
 * Card for displaying nonconformity information
 */
.nonconformity-card {
  border-radius: 1.25rem;
  padding: 10px; /* Reduced padding for more compact layout */
  transition: all 0.15s ease;
  height: auto !important; /* Prevent vertical stretching */
  display: flex;
  flex-direction: column;
}
.nonconformity-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.nonconformity-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px; /* Reduced margin for more compact layout */
}
.nonconformity-card .card-code {
  font-size: 1.125rem;
  font-weight: 700;
  color: #18181b; /* Darker color for better contrast */
  background-color: #f4f4f5; /* Light background to make code stand out */
  padding: 0.2rem 0.5rem; /* Add padding around the code */
  border-radius: 8px;
  letter-spacing: 0.5px; /* Improved readability */
}
.nonconformity-card .card-body {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* Reduced gap for more compact layout */
  margin-bottom: 4px; /* Reduced margin for more compact layout */
}
.nonconformity-card .card-icon {
  font-size: 1.5rem; /* Smaller icon for more compact layout */
  color: #52525b;
  line-height: 1;
  margin-top: 0.2rem; /* Reduced margin for more compact layout */
}
.nonconformity-card .card-content {
  flex: 1;
}
.nonconformity-card .card-content .card-title {
  font-size: 1rem;
  margin: 0 0 4px;
  color: #3f3f46;
}
.nonconformity-card .card-content .card-description {
  font-size: 0.875rem;
  color: #52525b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0; /* Remove bottom margin for more compact layout */
}
.nonconformity-card .card-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 10px; /* Reduced gap for more compact layout */
  margin-top: 4px; /* Reduced margin for more compact layout */
}
@media screen and (min-width: 768px) {
  .nonconformity-card .card-details {
    grid-template-columns: 1fr 1fr;
  }
}
.nonconformity-card .card-details .detail-item {
  display: flex;
  align-items: baseline;
  font-size: 0.875rem;
}
.nonconformity-card .card-details .detail-item .detail-label {
  font-weight: 700;
  color: #52525b;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.nonconformity-card .card-details .detail-item .detail-label::after {
  content: ":";
  margin-left: 0.25rem;
}
.nonconformity-card .card-details .detail-item .detail-value {
  flex: 1;
  white-space: normal;
}
.nonconformity-card .severity-success {
  color: #8bc34a;
}
.nonconformity-card .severity-info {
  color: #0288D1;
}
.nonconformity-card .severity-warning {
  color: #ffca28;
}
.nonconformity-card .severity-danger {
  color: #d32f2f;
}

/* Tasks Component
 * Component for displaying and managing tasks
 */
.tasks {
  min-height: 325px;
}
.tasks p {
  color: #52525b;
  margin: 1em 0;
}
.tasks p .task-highlight {
  color: #0f97c7;
}
.tasks ul {
  padding: 0;
  margin: 1em 0 0 0;
}
.tasks ul li {
  list-style: none;
  padding: 0.5em;
}
.tasks ul .ui-chkbox {
  vertical-align: middle;
  margin-right: 0.5em;
}
.tasks ul span {
  vertical-align: middle;
}
.tasks ul .task-badge-open,
.tasks ul .task-badge-closed {
  float: right;
  margin-top: 0.25em;
  font-weight: 500;
}
.tasks ul .task-badge-open {
  color: #0f97c7;
}
.tasks ul .task-badge-closed {
  color: #f56f64;
}
.tasks .ui-progressbar {
  height: 4px;
}

/* Lot Dashboard Grid */
.dashboard-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media screen and (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.card-wrapper {
  position: relative;
}

/* Info Card
 * A flexible card for displaying information with title, content, and status
 * Supports both simple and complex layouts with various content types
 */
.info-card.card {
  background: linear-gradient(145deg, #f4f4f5, #e4e4e7); /* Slightly darker gradient for better visibility */
  margin-bottom: 0;
}

.info-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 120px;
  padding: 1.4rem;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* Basic hover effect */
  /* Simple layout (original info-card style) */
  /* Gradient header layout (original lot-info-card style) */
  /* Card header with gradient (for gradient-header layout) */
  /* Card content (for both layouts) */
  /* Original info-card elements (for simple-layout) */
}
.info-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.info-card:hover .card-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.info-card.simple-layout {
  padding: 1.4rem;
  background: #ffffff;
}
.info-card.simple-layout:hover {
  background: #ffffff;
}
.info-card.gradient-header {
  padding: 0;
}
.info-card.gradient-header:hover {
  transform: translateY(0);
}
.info-card .card-header-gradient {
  background: linear-gradient(135deg, rgba(82, 82, 91, 0.15) 0%, rgba(113, 113, 122, 0.05) 100%);
  padding: 0.75rem 1rem; /* Reduced padding for shorter header */
  border-bottom: 1px solid rgba(82, 82, 91, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Changed to space-between to move icon to the right */
  gap: 0.75rem;
}
.info-card .card-header-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3f3f46 0%, #71717a 100%);
}
.info-card .card-header-gradient .card-icon {
  font-size: 1rem; /* Reduced font size */
  color: #3f3f46;
  background: linear-gradient(135deg, rgba(82, 82, 91, 0.2) 0%, rgba(113, 113, 122, 0.1) 100%);
  width: 1.75rem; /* Reduced width */
  height: 1.75rem; /* Reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(82, 82, 91, 0.15);
  order: 2; /* Move to the end of the flex container */
}
.info-card .card-header-gradient .card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3f3f46;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-card .card-content {
  padding: 1.25rem;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info-card .card-content .primary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #27272a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.info-card .card-content .secondary-value {
  font-size: 1rem;
  font-weight: 500;
  color: #52525b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-card .card-content .secondary-value .location-icon {
  font-size: 0.875rem;
  color: #71717a;
}
.info-card .card-content .card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}
.info-card .card-content .card-footer .badge {
  width: fit-content;
}
.info-card .info-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #1976D2, rgb(33.829787234, 131.7765957447, 228.670212766));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.info-card .info-content {
  font-size: 1.5rem;
  font-weight: 700;
  color: #27272a;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  /* Support for multi-line content */
  /* Support for content with icon */
}
.info-card .info-content.multi-line {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.4rem;
  margin-top: 0.25rem;
  /* Support for label/value pairs */
}
.info-card .info-content.multi-line .label-value {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.info-card .info-content.multi-line .label-value .label {
  font-weight: 700;
}
.info-card .info-content.multi-line .label-value .label::after {
  content: ":";
  margin-right: 0.25rem;
}
.info-card .info-content.multi-line .label-value .value {
  font-weight: 500;
}
.info-card .info-content.with-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-card .info-content.with-icon i {
  font-size: 1.125rem;
  color: #52525b;
}
.info-card .info-icon {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(33.829787234, 131.7765957447, 228.670212766), #1976D2);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(25, 118, 210, 0.3);
}
.info-card .info-footer {
  font-size: 0.85rem;
  color: #52525b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.675rem;
  /* Support for badges in footer */
  /* Support for text with icon in footer */
}
.info-card .info-footer h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #52525b;
  margin-bottom: 0;
}
.info-card .info-footer .badge {
  padding: 0.25rem 0.75rem;
}
.info-card .info-footer.with-icon i {
  font-size: 1rem;
}
.info-card .card-actions {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  transform: translateY(10px);
}
.info-card.quantity-location .quantity-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #27272a; /* Changed from $successColor to $shade800 for better visibility */
}
.info-card.quantity-location .quantity-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #52525b;
  margin-left: 0.5rem;
}
.info-card.dates-info .date-pair {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
  padding: 0 1.5rem;
}
.info-card.dates-info .date-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.info-card.dates-info .date-item .date-label {
  font-size: 1rem;
  font-weight: 700;
  color: #3f3f46; /* Changed from $secondaryColor to $shade700 for better visibility */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-card.dates-info .date-item .date-value {
  font-size: 1rem;
  font-weight: 700;
  color: #18181b;
}

/* Mobile responsiveness for info cards */
@media screen and (max-width: 768px) {
  .info-card .card-content {
    padding: 1rem;
    min-height: 80px;
  }
  .info-card .card-content .primary-value {
    font-size: 1.125rem;
  }
  .info-card.quantity-location .quantity-number {
    font-size: 1.25rem;
  }
  .info-card.dates-info .date-pair {
    flex-direction: column; /* Stack vertically on mobile */
    gap: 1rem; /* Slightly increased gap for vertical stacking */
    padding: 0; /* Remove horizontal padding on mobile */
  }
}
/* Partydashboard */
.role-chart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 220px;
  max-height: 320px;
  padding: 0;
  overflow: hidden;
}

.role-chart {
  width: 100%;
  max-width: 360px;
  height: 100% !important;
}

.role-chart-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 0.5rem;
}

.role-chart-action {
  white-space: nowrap;
  gap: 0.5rem;
}

.partners-summary {
  padding-top: 1rem;
  border-top: 1px solid var(--surface-border);
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.summary-label {
  font-weight: 500;
  color: var(--text-color-secondary);
}

.summary-value {
  font-weight: 600;
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .role-chart {
    max-width: 320px;
  }
}
.activities-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-updates-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-update-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.5rem;
  border: 0;
  background: transparent;
  border-radius: 10px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.recent-update-item:hover {
  color: var(--primary-color);
  background: var(--surface-hover);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.recent-update-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.recent-update-icon.org {
  background: #e4f0ff;
  color: #2f6fed;
}

.recent-update-icon.person {
  background: #e6f9ef;
  color: #1f8d4d;
}

.recent-update-icon.reception {
  background: #eef2ff;
  color: #4f46e5;
}

.recent-update-content {
  flex: 1;
  min-width: 0;
}

.recent-update-title {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-update-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-color-secondary);
  font-size: 0.8rem;
}

.recent-update-subtitle {
  color: var(--text-color-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-update-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-color-secondary);
  margin-left: 0.75rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* DataTable header count pill */
.datatable-count-pill {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  color: #18181b;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  background: var(--surface-card);
  transition: all 0.2s ease;
}

.activity-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.activity-icon.call {
  background: linear-gradient(135deg, #10b981, #059669);
}

.activity-icon.email {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.activity-icon.meeting {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.activity-icon.task {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.activity-icon.file {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.activity-icon.comment {
  background: linear-gradient(135deg, #06b6d4, #0e7490);
}

.activity-icon.note {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.activity-icon.entity {
  background: linear-gradient(135deg, #64748b, #475569);
}

.activity-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.activity-title {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-company {
  color: var(--text-color-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.activity-date {
  color: var(--text-color-secondary);
  font-size: 0.8rem;
}

.activity-action {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments for activities */
@media (max-width: 768px) {
  .activity-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .activity-icon {
    align-self: flex-start;
  }
  .activity-action {
    align-self: flex-start;
    margin-top: 0.5rem;
  }
}
.login-panel {
  width: 100%;
  max-width: 30rem;
  padding: 0 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}
.login-panel .logo-container img {
  display: block;
  margin: 0 auto 1rem;
}
.login-panel .guest-sign-in {
  color: var(--text-color, #303030);
  font-weight: 500;
}
.login-panel label {
  display: block;
  color: var(--text-color, #252529);
  font-weight: 400;
  margin: 0.5rem 0;
}
.login-panel input {
  background: #ffffff;
  border: 1px solid var(--surface-border, #65656a);
  color: var(--text-color, #252529);
  font-size: 1rem;
  padding: 0.429rem;
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.login-panel button {
  margin-top: 0.5rem;
  min-width: 7.5rem;
  width: 100%;
}

@media screen and (max-width: 36rem) {
  .login-panel {
    padding: 0 1rem 1rem;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}
/* Public Pages Styles
 * Styles for unauthenticated public pages (login, support, docs, terms, privacy)
 * Features: Minimal topbar, content area, footer with consistent branding
 */
.public-body {
  background: #fafafa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.public-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e4e4e7;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.public-topbar .topbar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.public-topbar .topbar-left .layout-topbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.public-topbar .topbar-left .layout-topbar-logo:hover {
  opacity: 0.9;
}
.public-topbar .topbar-left .layout-topbar-logo .logo-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2653A0 0%, #1e3a70 100%);
  border-radius: 1.25rem;
  box-shadow: 0 4px 12px rgba(38, 83, 160, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.public-topbar .topbar-left .layout-topbar-logo .logo-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 1.25rem 1.25rem 0 0;
}
.public-topbar .topbar-left .layout-topbar-logo .logo-icon-wrapper i {
  font-size: 1.75rem;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.public-topbar .topbar-left .layout-topbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1;
}
.public-topbar .topbar-left .layout-topbar-logo .logo-text .logo-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #18181b;
}
.public-topbar .topbar-left .layout-topbar-logo .logo-text .logo-subtitle {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  color: #3f3f46;
}
.public-topbar .topbar-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.public-topbar .topbar-menu .topbar-items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.public-topbar .topbar-menu .topbar-items .topbar-item a {
  color: #3f3f46;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 0.5rem 0;
  display: block;
}
.public-topbar .topbar-menu .topbar-items .topbar-item a:hover {
  color: #1976D2;
}
.public-topbar .topbar-right .ui-button {
  min-width: 100px;
}
@media screen and (max-width: 960px) {
  .public-topbar .topbar-menu {
    display: none;
  }
  .public-topbar .topbar-content {
    padding: 0.75rem 1rem;
  }
  .public-topbar .topbar-left .layout-topbar-logo {
    gap: 0.5rem;
  }
  .public-topbar .topbar-left .layout-topbar-logo .logo-icon-wrapper {
    width: 42px;
    height: 42px;
  }
  .public-topbar .topbar-left .layout-topbar-logo .logo-icon-wrapper i {
    font-size: 1.5rem;
  }
  .public-topbar .topbar-left .layout-topbar-logo .logo-text .logo-title {
    font-size: 1.125rem;
  }
  .public-topbar .topbar-left .layout-topbar-logo .logo-text .logo-subtitle {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .public-topbar .topbar-left .layout-topbar-logo .logo-text {
    display: none;
  }
}

.public-main {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 960px) {
  .public-main {
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 480px) {
  .public-main {
    padding: 1rem 0.75rem;
  }
}

.public-footer {
  background: #ffffff;
  border-top: 1px solid #e4e4e7;
  padding: 2rem 1.5rem;
  margin-top: auto;
}
.public-footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.public-footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.public-footer .footer-links a {
  color: #3f3f46;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.public-footer .footer-links a:hover {
  color: #1976D2;
}
.public-footer .footer-links .separator {
  color: #a1a1aa;
  user-select: none;
}
.public-footer .footer-copyright p {
  margin: 0;
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .public-footer {
    padding: 1.5rem 1rem;
  }
  .public-footer .footer-links {
    gap: 0.5rem;
    font-size: 0.75rem;
  }
}

.public-page-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.public-page-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
.public-page-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #27272a;
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}
.public-page-card h2:first-of-type {
  margin-top: 1.5rem;
}
.public-page-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #27272a;
  margin: 1.5rem 0 0.75rem 0;
}
.public-page-card p {
  color: #3f3f46;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.public-page-card .text-muted {
  color: #71717a;
  font-size: 0.875rem;
  font-style: italic;
}
.public-page-card ul, .public-page-card ol {
  color: #3f3f46;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.public-page-card ul li, .public-page-card ol li {
  margin-bottom: 0.5rem;
}
.public-page-card a {
  color: #1976D2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.public-page-card a:hover {
  color: rgb(19.5744680851, 92.3914893617, 164.4255319149);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .public-page-card {
    padding: 1.5rem;
  }
  .public-page-card h1 {
    font-size: 1.25rem;
  }
  .public-page-card h2 {
    font-size: 1.125rem;
  }
  .public-page-card h3 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .public-page-card {
    padding: 1rem;
  }
}

.info-grid {
  margin-top: 1.5rem;
}
.info-grid .info-card {
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.info-grid .info-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: #d4d4d8;
}
.info-grid .info-card i {
  font-size: 2rem;
  color: #1976D2;
  margin-bottom: 0.75rem;
  display: block;
}
.info-grid .info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #27272a;
  margin: 0.5rem 0;
}
.info-grid .info-card p {
  color: #52525b;
  font-size: 0.875rem;
  margin: 0.5rem 0 0 0;
}

@media screen and (max-width: 960px) {
  .public-main {
    max-width: 100%;
  }
}
.exception-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  background: url("/allaxis/jakarta.faces.resource/images/pages/login-bg.jpg?ln=roma-layout") no-repeat;
  background-size: cover;
}
.exception-body .exception-panel {
  width: 100%;
  max-width: 30rem;
  padding: 0.5rem 2rem 2rem 2rem;
}
.exception-body .exception-panel.error {
  max-width: 60rem;
}
.exception-body .exception-panel h1 {
  margin: 1rem 0;
  color: #3f3f46;
  font-size: 1.5rem;
  font-weight: 500;
}
.exception-body .exception-panel p {
  margin: 0.25rem 0 1rem 0;
  color: #52525b;
}
.exception-body .exception-panel img {
  height: 87px;
  margin: 1rem 0;
}
.exception-body .exception-panel button {
  min-width: 7.5rem;
}
.exception-body .exception-panel .error-details {
  margin-bottom: 1.5rem;
}
.exception-body .exception-panel .error-details dl {
  margin: 0;
}
.exception-body .exception-panel .error-details .error-detail-item {
  margin-bottom: 0.5rem;
}
.exception-body .exception-panel .error-details .error-detail-item dt {
  margin: 0;
  padding: 0;
}
.exception-body .exception-panel .error-details .error-detail-item dd {
  margin: 0;
  word-break: break-word;
}
.exception-body .exception-panel .error-details .stack-trace {
  max-height: 300px;
}
.exception-body .exception-panel .error-details .stack-trace pre {
  margin: 0;
  font-family: monospace;
  font-size: 0.85rem;
  white-space: pre-wrap;
  color: #52525b;
}

@media screen and (max-width: 36rem) {
  .exception-body .exception-panel {
    padding: 0 1rem 1rem;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}
.layout-rtl.layout-wrapper .layout-topbar {
  direction: rtl;
  left: auto;
  right: 0;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-logo {
  margin-right: 1.5em;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search {
  margin-left: 0;
  margin-right: 120px;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search i {
  left: auto;
  right: 11px;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search input {
  padding: 6px 35px 6px 6px;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu {
  float: left;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-icon {
  margin: 14px 8px 0 0;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li {
  float: left;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > a .layout-profile-userinfo {
  text-align: right;
  margin: 6px 8px 0 0;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > ul {
  right: auto;
  left: 0;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > ul a {
  text-align: right;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > ul a .topbar-menu-info {
  left: auto;
  right: 50px;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-right-panel-button {
  float: left;
}

@media screen and (max-width: 991px) {
  .layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search {
    left: auto;
    right: 0;
    margin-right: 0;
  }
  .layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search i {
    left: auto;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul {
    width: 211px;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:before, .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:after {
    right: 190px;
    left: auto;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:before {
    margin-right: -10px;
    margin-left: 0;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:after {
    margin-left: 0;
    margin-right: -9px;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li {
    margin-right: 0;
    margin-left: 0.5em;
  }
}
.layout-rtl.layout-wrapper .layout-menu-container {
  direction: rtl;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a {
  text-align: right;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a i {
  margin-right: 0;
  margin-left: 0.5em;
  vertical-align: middle;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu > li.active-menuitem {
  border-left-color: transparent;
  border-right-color: #1976D2;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-icon {
  margin-right: 0;
  margin-left: 0.5em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  right: auto;
  left: 16px;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li a {
  padding-left: 0;
  padding-right: 2em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li a {
  padding-left: 0;
  padding-right: 3em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li a {
  padding-left: 0;
  padding-right: 4em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li li a {
  padding-left: 0;
  padding-right: 5em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li a {
  padding-left: 0;
  padding-right: 6em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li li a {
  padding-left: 0;
  padding-right: 7em;
}
.layout-rtl.layout-wrapper .layout-menu-container .ui-scrollpanel .ui-scrollpanel-content {
  padding: 0 0 18px 18px;
}
.layout-rtl.layout-wrapper .layout-menu-container .ui-scrollpanel .menu-scroll-content {
  padding-right: 0;
  padding-left: 18px;
}
.layout-rtl.layout-wrapper .layout-menu-container .ui-scrollpanel .ui-scrollpanel-bar-y {
  right: auto !important;
  left: -278px;
}
.layout-rtl.layout-wrapper.layout-menu-light .layout-menu-container {
  border-left: 1px solid #ebebef;
  border-right: 0;
}
.layout-rtl.layout-wrapper.layout-menu-dark .layout-menu-container {
  border: 1px solid #252529;
  border-right: 0;
}

@media screen and (min-width: 992px) {
  .layout-rtl.layout-wrapper.layout-static .layout-menu-container {
    left: auto;
    right: 0;
    transition: right 0.15s;
  }
  .layout-rtl.layout-wrapper.layout-static .layout-main {
    margin-left: 0;
    margin-right: 288px;
    transition: margin-right 0.15s;
  }
  .layout-rtl.layout-wrapper.layout-static .layout-footer {
    margin-left: 0;
    margin-right: 288px;
    transition: margin-right 0.15s;
  }
  .layout-rtl.layout-wrapper.layout-static.layout-static-inactive .layout-menu-container {
    left: auto;
    right: -288px;
  }
  .layout-rtl.layout-wrapper.layout-static.layout-static-inactive .layout-main {
    margin-left: 0;
    margin-right: 0;
  }
  .layout-rtl.layout-wrapper.layout-static.layout-static-inactive .layout-footer {
    margin-left: 0;
    margin-right: 0;
  }
  .layout-rtl.layout-wrapper.layout-overlay .layout-menu-container {
    left: auto;
    right: -288px;
    transition: right 0.15s;
  }
  .layout-rtl.layout-wrapper.layout-overlay.layout-overlay-active .layout-menu-container {
    left: auto;
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container {
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu {
    left: auto;
    right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    font-size: 1.125rem;
    margin-right: 0;
    margin-left: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > ul {
    left: auto;
    right: 52px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip {
    left: auto;
    right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    left: auto;
    right: 0;
    border-width: 5px 0px 5px 5px;
    border-left-color: #333333;
    border-right-color: transparent;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .ui-scrollpanel .menu-scroll-content {
    padding: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-main {
    margin-left: 0;
    margin-right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-footer {
    margin-left: 0;
    margin-right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo {
    margin: 10px 5em 0 0;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .ui-scrollpanel .menu-scroll-content {
    padding-right: 0;
    padding-left: 18px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    margin-right: 0;
    margin-left: 0.5em;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-submenu-toggler {
    margin-left: 0;
    margin-right: 0.5em;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > ul {
    left: auto;
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.active-menuitem > a {
    border-right-color: transparent;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-search, .layout-rtl.layout-wrapper.layout-slim .layout-topbar .layout-topbar-search {
    margin-left: 0;
    margin-right: 40px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li a {
    padding-left: 0;
    padding-right: 16px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li a {
    padding-left: 0;
    padding-right: 32px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li a {
    padding-left: 0;
    padding-right: 48px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li a {
    padding-left: 0;
    padding-right: 64px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li a {
    padding-left: 0;
    padding-right: 80px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li li a {
    padding-left: 0;
    padding-right: 96px;
  }
}
@media screen and (max-width: 991px) {
  .layout-rtl.layout-wrapper .layout-topbar .layout-topbar-logo {
    margin-right: 1em;
  }
  .layout-rtl.layout-wrapper .layout-menu-container {
    left: auto;
    right: -288px;
    transition: right 0.15s;
  }
  .layout-rtl.layout-wrapper .layout-main {
    margin-right: 0;
    margin-left: 0;
    transition: margin-right 0.15s;
  }
  .layout-rtl.layout-wrapper .layout-mask {
    left: auto;
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-mobile-active .layout-menu-container {
    left: auto;
    right: 0;
  }
}
.layout-rtl .layout-right-panel {
  direction: rtl;
  right: auto;
  left: -288px;
  border-left: 0;
  border-right: solid 1px #ebebef;
  transition: left 0.15s;
}
.layout-rtl .layout-right-panel.layout-right-panel-active {
  right: auto;
  left: 0;
}
.layout-rtl .layout-right-panel .ui-tabview.ui-tabview-top .ui-tabview-nav li {
  margin-left: 0;
  margin-right: 0;
}
.layout-rtl .layout-right-panel .status-title i {
  float: left;
}

.layout-rtl .layout-footer {
  direction: rtl;
  padding: 1.5em 3em 1.5em 1.5em;
}
.layout-rtl .layout-footer .footer-icons {
  text-align: left;
}
.layout-rtl .layout-footer .footer-icons a {
  margin-right: 0;
  margin-left: 16px;
}

.help-page p {
  margin: 0;
}
.help-page .help-search {
  background: url("") repeat;
  padding: 0;
  text-align: center;
}
.help-page .help-search .help-search-content {
  padding: 5rem 12rem;
}
.help-page .help-search .search-container {
  font-size: 1.5rem;
  padding: 1rem;
  position: relative;
}
.help-page .help-search .search-container input {
  appearance: none;
  font-size: 1.5rem;
  text-indent: 2.5rem;
  padding: 0.5rem;
  width: 100%;
}
.help-page .help-search .search-container i {
  color: #52525b;
  width: 2rem;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  margin-top: -0.75rem;
  margin-left: 1rem;
}
.help-page .status-bars {
  margin-top: 1rem;
  display: flex;
}
.help-page .status-bars .status-bar {
  flex: 1 1 0;
  -ms-flex: 1 1 0px;
  background: #8BC34A;
  height: 50px;
  margin-right: 0.25rem;
  transition: transform 0.15s;
}
.help-page .status-bars .status-bar:last-child {
  margin-right: 0;
}
.help-page .status-bars .status-bar.status-bar-failure {
  background: #EC407A;
}
.help-page .status-bars .status-bar:hover {
  transform: scale(1.1);
}
.help-page .status-bar-footer {
  padding: 1rem 0 0 0;
  display: flex;
  justify-content: space-between;
}
.help-page .blog-post {
  height: 150px;
  border-radius: 4px;
  margin: 3rem 2rem;
  position: relative;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.help-page .blog-post:last-child {
  margin-bottom: 1rem;
}
.help-page .blog-post img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.help-page .blog-post .blog-text {
  position: absolute;
  left: 20px;
  top: 30px;
}
.help-page .blog-post .blog-text h1 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}
.help-page .blog-post .blog-text span {
  color: #ffffff;
  font-weight: 600;
}
.help-page .blog-post .blog-profile {
  position: absolute;
  top: -25px;
  left: -25px;
}
.help-page .blog-post .blog-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.help-page .blog-post:nth-child(1) {
  background-image: url("");
}
.help-page .blog-post:nth-child(2) {
  background-image: url("");
}
.help-page .blog-post:nth-child(3) {
  background-image: url("");
}

@media screen and (max-width: 991px) {
  .help-page .help-search .help-search-content {
    padding: 6rem 2rem;
  }
}
.layout-config {
  position: fixed;
  top: 0;
  padding: 0;
  right: 0;
  display: block;
  width: 240px;
  z-index: 1000;
  height: 100%;
  transform: translate3d(240px, 0px, 0px);
  transition: transform 0.15s;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
  color: #3f3f46;
  background-color: #ffffff;
}
.layout-config.layout-config-active {
  transform: translate3d(0px, 0px, 0px);
}
.layout-config.layout-config-active .layout-config-content .layout-config-button i {
  transform: rotate(360deg);
}
.layout-config .layout-config-content {
  position: relative;
  height: 100%;
}
.layout-config .layout-config-content > form {
  height: 100%;
}
.layout-config .layout-config-content .layout-config-form {
  overflow: auto;
  overflow-x: hidden;
}
.layout-config .layout-config-content .layout-config-button {
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: #1976D2;
  text-align: center;
  color: #ffffff;
  top: 230px;
  left: -52px;
  z-index: -1;
  cursor: pointer;
  transition: background-color 0.15s;
}
.layout-config .layout-config-content .layout-config-button i {
  font-size: 32px;
  line-height: inherit;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 1s;
}
.layout-config .layout-config-content .layout-config-button:hover {
  background-color: rgb(32.0425531915, 130.7808510638, 228.4574468085);
}
.layout-config .layout-config-content .layout-config-header {
  padding: 18px 12px;
  margin-bottom: 12px;
  background-image: linear-gradient(90deg, #1976D2 10%, rgb(45.714893617, 138.3982978723, 230.085106383) 100%);
}
.layout-config .layout-config-content .layout-config-header > h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  color: #ffffff;
}
.layout-config .layout-config-content .layout-config-header > span {
  font-size: 0.75rem;
  display: block;
  color: #ffffff;
}
.layout-config .layout-config-content .layout-config-section {
  padding: 10px;
}
.layout-config .layout-config-content .layout-config-section .section-name {
  font-weight: 500;
  font-size: 0.75rem;
  display: block;
  color: #3f3f46;
}
.layout-config .layout-config-content .layout-config-section.dark {
  display: flex;
  align-items: center;
}
.layout-config .layout-config-content .layout-config-section.dark .section-name {
  margin-right: 18px;
}
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch .ui-inputswitch-on,
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch .ui-inputswitch-off {
  padding: 0;
}
.layout-config .layout-config-content .layout-config-section.colors .layout-config-colors {
  padding: 0 10px;
  margin-top: 3px;
}
.layout-config .layout-config-content .layout-config-section.colors .layout-config-colors .col-fixed {
  padding: 0.5em;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options {
  margin-top: 3px;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options .ui-selectoneradio {
  width: 100%;
  padding: 0 10px;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options .ui-selectoneradio label {
  font-size: 0.875rem;
  margin: 0;
  margin-left: 6px;
}
.layout-config .layout-config-content .layout-config-section a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.15s;
  position: relative;
  color: #3f3f46;
  text-transform: capitalize;
}
.layout-config .layout-config-content .layout-config-section a:hover {
  transform: scale(1.1);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-text {
  margin-top: 0.2em;
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-color .layout-config-option-accentcolor {
  display: block;
  width: 18px;
  height: 28px;
  position: absolute;
  bottom: -10px;
  right: -7px;
  transform: rotate(45deg);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option i {
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  color: var(--primary-color-text);
}

.blocked-scroll-config {
  overflow: hidden;
}

.layout-rtl .layout-config {
  right: auto;
  left: 0;
  transform: translate3d(-240px, 0px, 0px);
}
.layout-rtl .layout-config.layout-config-active {
  transform: translate3d(0px, 0px, 0px);
}
.layout-rtl .layout-config.layout-config-active .layout-config-content .layout-config-button i {
  transform: rotate(360deg);
}
.layout-rtl .layout-config .layout-config-content .layout-config-button {
  left: auto;
  right: -51px;
}

@media (max-width: 991px) {
  .layout-config {
    height: 100%;
    width: 70vw;
    transform: translate3d(70vw, 0px, 0px);
  }
  .layout-config.layout-config-active {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-config .layout-config-button {
    left: auto;
    right: -52px;
  }
  .layout-config .ui-tabs.ui-tabs-top > .ui-tabs-nav li:first-child {
    margin-left: 13px;
  }
}
@media (max-width: 640px) {
  .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .grid {
    justify-content: center;
  }
  .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .layout-config-palette .layout-config-selected-palette {
    width: 60px;
    height: 60px;
  }
}
.user-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  text-align: center;
}
.user-card--home .welcome-title {
  font-size: 2rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 1rem;
}
.user-card--home .welcome-subtitle {
  color: #52525b;
  margin-bottom: 2rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.user-card--home .avatar-container .avatar,
.user-card--home .avatar-container .avatar-fallback {
  width: 150px;
  height: 150px;
}
.user-card--home .user-info {
  padding: 1.5rem;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
}
.user-card--home .user-info .user-name {
  font-size: 1.5rem;
}
.user-card--home .user-info .user-details {
  gap: 1rem;
}
.user-card--profile {
  border: 1px solid #e4e4e7;
}
.user-card--profile .avatar-container {
  margin-bottom: 1.75rem;
}
.user-card--profile .avatar-container .avatar,
.user-card--profile .avatar-container .avatar-fallback {
  width: 100px;
  height: 100px;
}
.user-card--profile .user-info {
  border: 1px solid #d4d4d8;
  border-radius: 8px;
}
.user-card--profile .user-info .user-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.user-card--profile .user-info .user-email {
  margin-bottom: 1.5rem;
}
.user-card--profile .user-info .user-details {
  gap: 1.5rem;
}
.user-card--profile .divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #e4e4e7;
}
.user-card .avatar-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.user-card .avatar-container .avatar,
.user-card .avatar-container .avatar-fallback {
  border-radius: 50%;
  border: 3px solid #1976D2;
  background: #f4f4f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.user-card .avatar-container .avatar {
  object-fit: cover;
}
.user-card .avatar-container .avatar-fallback {
  display: none;
  align-items: center;
  justify-content: center;
}
.user-card .avatar-container .avatar-fallback i {
  font-size: 3.5rem;
  color: #1976D2;
}
.user-card .user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.user-card .user-info .user-name {
  color: #18181b;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.user-card .user-info .user-email {
  font-size: 1.125rem;
  color: #52525b;
  margin-bottom: 0.75rem;
}
.user-card .user-info .user-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.user-card .user-info .user-details .detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #27272a;
  padding: 0.75rem;
  background: #fafafa;
  border-radius: 8px;
}
.user-card .user-info .user-details .detail i {
  font-size: 1.25rem;
  color: #1976D2;
}
.user-card .user-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.user-card .user-tags .badge {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

/* Variable fonts usage:
:root { font-family: "Inter", sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: "InterVariable", sans-serif; font-optical-sizing: auto; }
} */
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable-Italic.woff2") format("woff2");
}
.status-pill, .badge.pill-soft, .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid transparent;
}
.status-pill .pi, .badge.pill-soft .pi, .pill .pi {
  font-size: 0.85em;
}

.pill {
  color: #1976D2;
  background-color: rgba(25, 118, 210, 0.12);
  border: 1px solid rgba(25, 118, 210, 0.35);
}
.pill.pill--secondary {
  color: #52525b;
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
}
.pill.pill--success {
  color: #059669;
  background-color: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
}
.pill.pill--info {
  color: #0288D1;
  background-color: rgba(2, 136, 209, 0.12);
  border: 1px solid rgba(2, 136, 209, 0.35);
}
.pill.pill--warning {
  color: rgb(244, 183.8511627907, 0);
  background-color: rgba(255, 202, 40, 0.12);
  border: 1px solid rgba(255, 202, 40, 0.35);
}
.pill.pill--danger {
  color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.12);
  border: 1px solid rgba(211, 47, 47, 0.35);
}
.pill.pill--primary {
  color: #1976D2;
  background-color: rgba(25, 118, 210, 0.12);
  border: 1px solid rgba(25, 118, 210, 0.35);
}
.pill.pill--sm {
  font-size: 0.625rem;
  padding: 0.15rem 0.5rem;
  gap: 0.3rem;
}
.pill.pill--sm .pi {
  font-size: 0.75em;
}
.pill.pill--lg {
  font-size: 1rem;
  padding: 0.3rem 0.8rem;
  gap: 0.5rem;
}
.pill.pill--lg .pi {
  font-size: 1em;
}

.data-cell-title {
  display: block;
  color: #27272a;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.ui-state-highlight .data-cell-title {
  color: #ffffff;
}

.ui-datatable .data-cell-title {
  font-size: 0.875rem;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(25, 118, 210, 0.2);
  background: rgba(25, 118, 210, 0.08);
  color: #1976D2;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ui-datatable .col-code {
  width: 10rem;
  min-width: 10rem;
  max-width: 10rem;
}

.ui-datatable .col-code .code-pill {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1976D2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border 0.2s;
  /* Severity Variants */
  /* Modifiers */
  /* Outlined Style */
}
.badge.secondary {
  background-color: #e2e8f0;
  color: #27272a;
  border: none;
}
.badge.info {
  background-color: #0288D1;
  color: #ffffff;
  border: none;
}
.badge.success {
  background-color: #8bc34a;
  color: #ffffff;
  border: none;
}
.badge.danger {
  background-color: #d32f2f;
  color: #ffffff;
  border: none;
}
.badge.warning {
  background-color: #ffca28;
  color: #18181b;
  border: none;
}
.badge.pill-soft {
  color: #1976D2;
  background-color: rgba(25, 118, 210, 0.12);
  border: 1px solid rgba(25, 118, 210, 0.35);
}
.badge.pill-soft.secondary {
  color: #52525b;
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
}
.badge.pill-soft.info {
  color: #0288D1;
  background-color: rgba(2, 136, 209, 0.12);
  border: 1px solid rgba(2, 136, 209, 0.35);
}
.badge.pill-soft.success {
  color: #059669;
  background-color: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
}
.badge.pill-soft.warning {
  color: rgb(244, 183.8511627907, 0);
  background-color: rgba(255, 202, 40, 0.12);
  border: 1px solid rgba(255, 202, 40, 0.35);
}
.badge.pill-soft.danger {
  color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.12);
  border: 1px solid rgba(211, 47, 47, 0.35);
}
.badge.active {
  background-color: rgb(22.5, 106.2, 189);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: translateY(-1px);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.badge.active.secondary {
  background-color: #52525b;
  color: #ffffff;
}
.badge.active.info {
  background-color: rgb(1.7582938389, 119.5639810427, 183.7417061611);
  color: #ffffff;
}
.badge.active.success {
  background-color: rgb(126.2966804979, 182.877593361, 60.622406639);
  color: #ffffff;
}
.badge.active.danger {
  background-color: rgb(191.9047619048, 40.5952380952, 40.5952380952);
  color: #ffffff;
}
.badge.active.warning {
  background-color: rgb(255, 195.7139534884, 14.5);
  color: #18181b;
}
.badge.lg, .badge.large {
  font-size: 1rem;
  padding: 0.375rem 1rem;
}
.badge.sm, .badge.small {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1875rem 0.375rem;
  min-width: 1.25em;
}
.badge.rounded {
  border-radius: 9999px;
}
.badge.outlined {
  background-color: transparent;
  color: #1976D2;
  border: 1px solid #1976D2;
}
.badge.outlined.secondary {
  background-color: transparent;
  color: #27272a;
  border: 1px solid #e2e8f0;
}
.badge.outlined.info {
  background-color: transparent;
  color: #0288D1;
  border: 1px solid #0288D1;
}
.badge.outlined.success {
  background-color: transparent;
  color: #8bc34a;
  border: 1px solid #8bc34a;
}
.badge.outlined.danger {
  background-color: transparent;
  color: #d32f2f;
  border: 1px solid #d32f2f;
}
.badge.outlined.warning {
  background-color: transparent;
  color: rgb(244, 183.8511627907, 0);
  border: 1px solid #ffca28;
}

.status-pill--yes {
  color: #059669;
  background-color: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
}

.status-pill--no {
  color: #52525b;
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
}

.data-cell-subtitle {
  display: block;
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.ui-state-highlight .data-cell-subtitle {
  color: #ffffff;
}

.data-cell-icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.data-cell-icon-text .data-cell-icon {
  font-size: 1.125rem;
  color: #52525b;
  flex-shrink: 0;
}
.data-cell-icon-text .icon-inline {
  font-size: 1.125rem;
  color: #52525b;
  flex-shrink: 0;
}
.data-cell-icon-text .data-cell-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.data-cell-icon-text .data-cell-content .data-cell-primary {
  color: #27272a;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-state-highlight .data-cell-icon-text .data-cell-content .data-cell-primary {
  color: #ffffff;
}
.data-cell-icon-text .data-cell-content .data-cell-secondary {
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-state-highlight .data-cell-icon-text .data-cell-content .data-cell-secondary {
  color: #ffffff;
}
.data-cell-icon-text .value-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.data-cell-icon-text .value-content .value-primary {
  color: #27272a;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-cell-icon-text .value-content .value-secondary {
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-avatar-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.data-avatar-cell .data-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}
.data-avatar-cell .data-avatar-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.data-avatar-cell .data-avatar-text .data-cell-primary {
  color: #27272a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-state-highlight .data-avatar-cell .data-avatar-text .data-cell-primary {
  color: #ffffff;
}
.data-avatar-cell .data-avatar-text .data-cell-secondary {
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-state-highlight .data-avatar-cell .data-avatar-text .data-cell-secondary {
  color: #ffffff;
}

.field-group.single-column .data-cell-icon-text {
  width: 100%;
}

/* Clearfix */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* Action Bar */
.action-bar {
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  border: none;
}
.action-bar .action-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .action-bar .action-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.action-bar .action-bar-left,
.action-bar .action-bar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.action-bar .action-bar-right {
  justify-content: flex-end;
  margin-left: auto;
}

.simple-card .card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.simple-card .card-content {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 0.5rem;
  color: #1e293b;
}
.simple-card .card-content i {
  font-size: 1.25rem;
  color: #3b82f6;
}
.simple-card .card-subtext {
  font-size: 0.875rem;
  color: #52525b;
}

.note-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1rem;
  margin-top: 10px;
}
.note-row .note-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  padding: 1rem;
  min-height: 120px;
  position: relative;
  transition: border-color 0.3s ease;
}
.note-row .note-card:hover {
  border-color: #71717a;
}
.note-row .note-card:hover .note-delete-button {
  opacity: 1;
  pointer-events: auto;
}
.note-row .note-card .note-content {
  white-space: pre-wrap;
  word-break: break-word;
  color: #18181b;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.5;
  margin-right: 2.5rem;
}
.note-row .note-card .note-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-top: 1px solid #f4f4f5;
  color: #52525b;
  font-size: 0.75rem;
}
.note-row .note-card .note-meta i {
  font-size: 0.875rem;
  color: #3b82f6;
  margin-right: 0.25rem;
}
.note-row .note-card .note-delete-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .note-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .note-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.list-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* 8px */
}
.list-container .list-item {
  background: #ffffff;
  /* #ffffff */
  border: 1px solid #d4d4d8;
  border-radius: 8px;
  padding: 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.list-container .list-item:hover {
  border-color: #71717a;
}
.list-container .list-item .left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* 8px */
}
.list-container .list-item .left .icon-wrapper {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #e4e4e7;
  /* #e2e8f0 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-container .list-item .left .icon-wrapper .icon {
  font-size: 0.875rem;
  /* 0.875rem */
  color: #52525b;
  /* #64748b */
}
.list-container .list-item .left .details {
  display: flex;
  flex-direction: column;
}
.list-container .list-item .left .details .code {
  font-weight: 600;
  /* 600 */
  color: #3f3f46;
  /* #475569 */
  font-size: 0.875rem;
  /* 0.875rem */
}
.list-container .list-item .left .details .date {
  font-size: 0.75rem;
  /* 0.75rem */
  color: #52525b;
  /* #64748b */
  margin-top: 0.125rem;
  /* 2px */
}
.list-container .list-item .right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* 12px */
}
.list-container .list-item .right .status {
  font-size: 0.875rem;
  /* 0.875rem */
  font-weight: 600;
  /* 600 */
  padding: 0.1875rem 0.5rem;
  /* 3px 8px */
  border-radius: 4px;
  /* 0.25rem */
}
.list-container .list-item .right .btn-view {
  color: #52525b;
  /* #64748b */
  border: none;
  border-radius: 4px;
  /* 0.25rem */
  padding: 0.25rem 0.5rem;
  /* 4px 8px */
  font-size: 0.875rem;
  /* 0.875rem */
  font-weight: 500;
  /* 500 */
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.list-container .list-item .right .btn-view:hover {
  background-color: #e4e4e7;
  /* #e2e8f0 */
  color: #3f3f46;
  /* #475569 */
}

.empty-state {
  background: #ffffff;
  text-align: center;
  color: #52525b;
  box-sizing: border-box;
  width: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  animation: fadeIn 0.5s ease-out;
  background-image: repeating-linear-gradient(0deg, rgba(244, 244, 245, 0.7), rgba(244, 244, 245, 0.7) 1px, transparent 1px, transparent 48px);
}
.empty-state .empty-state-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
}
.empty-state .empty-state-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #2ed7e4;
  color: #1976D2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(25, 118, 210, 0.1);
}
.empty-state .empty-state-icon i {
  font-size: 2.5rem;
}
.empty-state .empty-state-icon:hover {
  transform: scale(1.1) rotate(5deg);
}
.empty-state .empty-state-illustration {
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.empty-state .empty-state-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #18181b;
  margin: 0;
  letter-spacing: -0.025em;
}
.empty-state .empty-state-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #52525b;
  line-height: 1.6;
  margin: 0;
}
.empty-state .empty-state-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.empty-state .empty-state-actions .ui-button {
  transition: all 0.2s ease;
}
.empty-state .empty-state-actions .ui-button:hover {
  transform: translateY(-2px);
}
.empty-state .empty-state-actions:empty {
  margin-top: 0;
}

/* Card Component
 * A versatile container for content with various styling options.
 */
.card {
  /* Base styling */
  border: 1px solid #e4e4e7;
  border-radius: 1.25rem; /* 1.25rem - 20px modern radius */
  background: var(--surface-card);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  /* Card header with title and actions */
  /* Card content area */
  /* Card footer for actions */
  /* Card style variations */
  /* Header variants */
  /* Shadow variations */
  /* Border variations */
  /* Spacing variations */
  /* Background variations */
}
.card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.card .card-header .title-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.card .card-header .title-group .card-icon {
  font-size: 1.125rem; /* 1.125rem - 18px balanced icon */
  color: #18181b; /* Maximum contrast */
  display: flex;
  align-items: center;
}
.card .card-header .title-group h2 {
  margin: 0;
  font-size: 1.25rem; /* 1.25rem - 20px professional card title */
  font-weight: 600;
  color: #18181b; /* Maximum contrast */
}
.card .card-header .title-group h3 {
  width: 100%;
  margin: 0;
  font-size: 0.875rem; /* 0.875rem - 14px subtle subtitle */
  font-weight: 400; /* 400 - lighter for hierarchy */
  color: #52525b; /* Muted secondary text */
}
.card .card-header .actions {
  display: flex;
  gap: 0.75rem;
}
.card .card-body {
  position: relative;
}
.card .card-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.card.header-muted .card-header {
  background: #fafafa;
  border-bottom: 1px solid #e4e4e7;
  margin: -1.5rem -1.5rem 1.25rem;
  padding: 1rem 1.5rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
.card.header-divided .card-header {
  background: transparent;
  border-bottom: 1px solid #e4e4e7;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}
.card.header-divided .card-header .title-group h2 {
  font-size: 1.125rem; /* 1.125rem - 18px smaller for lightweight */
}
.card.header-divided .card-header .title-group h3 {
  font-size: 0.75rem; /* 0.75rem - 12px smaller subtitle */
}
.card.flat {
  box-shadow: none;
}
.card.elevated {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card.bordered {
  border-width: 2px;
}
.card.compact {
  padding: 1.25rem;
}
.card.compact .card-header .title-group h2 {
  font-size: 1.125rem; /* 18px for compact */
}
.card.compact .card-header .title-group .card-icon {
  font-size: 1rem; /* 16px - smaller for compact */
}
.card.compact .card-header .title-group h3 {
  font-size: 0.75rem; /* 12px - smaller subtitle */
}
.card.compact.header-muted .card-header {
  margin: -1.25rem -1.25rem 1rem;
  padding: 0.85rem 1.25rem;
}
.card.compact.header-divided .card-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
}
.card.compact .card-footer {
  margin-top: 1.25rem;
}
.card.no-padding {
  padding: 0;
}
.card.no-padding .ui-panel-content {
  padding: 0;
}
.card.no-gutter {
  margin-bottom: 0;
}
.card.simple-card {
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #f4f4f5;
  padding: 0;
}
.card.no-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Equal Height Cards
 * Ensures that cards in the same row have equal height, matching the tallest card.
 * Usage: Add the 'equal-height-row' class to a grid container.
 */
.equal-height-row {
  display: flex;
  flex-wrap: wrap; /* retain wrapping on small screens */
  /* Make columns flex containers */
  /* Make cards grow to fill available space */
}
.equal-height-row > [class*=col-] {
  display: flex;
  flex-direction: column;
}
.equal-height-row .card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Card Actions
 * Unified component for card action buttons that appear on hover
 * Used by both KPI cards and Report cards
 */
.card-actions {
  display: flex;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  align-items: flex-end;
  margin-left: auto;
}
.card-actions .icon-button,
.card-actions button,
.card-actions h\:link,
.card-actions .ui-button {
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 0.6rem;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.875rem;
  text-decoration: none;
}
.card-actions .icon-button:hover,
.card-actions button:hover,
.card-actions h\:link:hover,
.card-actions .ui-button:hover {
  background-color: #f4f4f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.card-actions i {
  font-size: 1.2rem;
}

/* Card Grid System
 * A flexible grid system for card layouts that supports various configurations:
 * - 1 full width card
 * - 2 cards of 50% width
 * - 3 cards of 33.3% width
 * - 4 cards of 25% width
 * - Consistent width when flowing to next row
 */
.card-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 1.25rem;
  /* Grid with 1 card (full width) */
  /* Grid with 2 cards (50% width each) */
  /* Grid with 2 cards (2/3 and 1/3 width) */
  /* Grid with 3 cards (33.3% width each) */
  /* Grid with 4 cards (25% width each) */
  /* Auto-fit grid (similar to kpi-row) */
  /* Card wrapper to ensure consistent styling */
  /* Support for simple-card elements (for backward compatibility) */
}
.card-grid.grid-1 {
  grid-template-columns: 1fr;
}
.card-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .card-grid.grid-2 {
    grid-template-columns: 1fr;
  }
}
.card-grid.grid-2-1 {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 768px) {
  .card-grid.grid-2-1 {
    grid-template-columns: 1fr;
  }
}
.card-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .card-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .card-grid.grid-3 {
    grid-template-columns: 1fr;
  }
}
.card-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .card-grid.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .card-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .card-grid.grid-4 {
    grid-template-columns: 1fr;
  }
}
.card-grid.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card-grid .card-wrapper {
  height: 100%;
  width: 100%;
}
.card-grid .card-wrapper .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-grid .simple-card {
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 0.5rem;
  padding: 1rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Legacy flex-based card grid (for backward compatibility) */
.card-grid:not([class*=grid-]) {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card-grid:not([class*=grid-]) .simple-card {
  flex: 1 1 calc(33.333% - 0.67rem);
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .card-grid:not([class*=grid-]) .simple-card {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
@media (max-width: 640px) {
  .card-grid:not([class*=grid-]) .simple-card {
    flex: 1 1 100%;
  }
}

/* Responsive grid container */
.grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.content-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  /* Content Header */
  /* Content Actions */
  /* Content Body */
  /* Content Footer */
}
.content-layout .content-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 1.5rem;
  /* 24px - balanced spacing */
}
.content-layout .content-header .header-content {
  flex: 1;
}
.content-layout .content-header .header-content .content-breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 0.5rem 0;
  /* Moderate spacing */
  padding: 0;
  font-size: 0.875rem;
  /* 0.875rem (14px) - readable size */
  role: navigation;
  aria-label: Breadcrumb;
}
.content-layout .content-header .header-content .content-breadcrumbs li {
  display: flex;
  align-items: center;
  font-weight: 400;
  /* 400 - lighter than before */
  color: #52525b;
  /* Softer gray */
}
.content-layout .content-header .header-content .content-breadcrumbs li:not(:last-child) {
  margin-right: 0.4rem;
}
.content-layout .content-header .header-content .content-breadcrumbs li:last-child:not(.separator) {
  color: #3f3f46;
  /* Slightly darker but not too heavy */
  font-weight: 500;
  /* 500 - moderate emphasis */
}
.content-layout .content-header .header-content .content-breadcrumbs li a {
  text-decoration: none;
  color: #52525b;
  /* Match text color */
  transition: color 0.15s ease;
}
.content-layout .content-header .header-content .content-breadcrumbs li a:hover {
  color: #3f3f46;
  text-decoration: underline;
}
.content-layout .content-header .header-content .content-breadcrumbs li a .pi-home {
  font-size: 0.875rem;
  /* Match breadcrumb size */
  color: #52525b;
  transition: color 0.15s ease;
}
.content-layout .content-header .header-content .content-breadcrumbs li a .pi-home:hover {
  color: #3f3f46;
}
.content-layout .content-header .header-content .content-breadcrumbs li.separator {
  margin: 0 0.4rem;
  font-size: 0.875rem;
  /* Same as breadcrumb */
  font-weight: normal;
  color: #52525b;
  opacity: 0.6;
  /* Slightly faded */
  user-select: none;
}
.content-layout .content-header .header-content .content-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content-layout .content-header .header-content .content-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.content-layout .content-header .header-content .content-header-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.content-layout .content-header .header-content .content-header-icon.text-icon {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: #ffffff;
}
.content-layout .content-header .header-content .content-header-icon.text-icon .icon-text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.content-layout .content-header .header-content .content-header-icon.pi-icon {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: #ffffff;
}
.content-layout .content-header .header-content .content-header-icon.pi-icon i {
  font-size: 1.5rem;
}
.content-layout .content-header .header-content .content-title-section {
  display: flex;
  flex-direction: column;
}
.content-layout .content-header .header-content .content-title {
  font-size: 1.5rem;
  /* 1.5rem (24px) - balanced size */
  font-weight: 600;
  /* 600 - lighter than bold */
  color: #18181b;
  /* Semantic token */
  margin: 0;
  line-height: 1.3;
  /* Better readability */
  letter-spacing: -0.01em;
  /* Subtle tight tracking */
}
.content-layout .content-header .header-content .content-subtitle {
  font-size: 1rem;
  /* 1rem (16px) - normal size */
  font-weight: 400;
  /* 400 - normal weight */
  color: #52525b;
  /* Lighter gray */
  margin: 0.375rem 0 0 0;
  /* Moderate spacing to title */
  line-height: 1.5;
  /* WCAG compliant */
}
.content-layout .content-header .content-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  /* 0.75rem */
  margin-left: 10px;
  /* Separate from content */
}
.content-layout .content-actions {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.content-layout .content-actions:empty {
  display: none;
}
.content-layout .content-body {
  flex: 1;
}
.content-layout .content-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  bottom: 0;
  padding: 0;
  margin: 0.5rem 0 1.5rem 0;
  z-index: 10;
}
.content-layout .content-footer:empty {
  display: none;
}
.content-layout .content-footer .btn {
  min-width: 100px;
}

/* Tab Navigation - Moved to _horizontal-tabs.scss */
/* Dialog */
.dialog-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0 -1.5rem -1rem -1.5rem;
}
.dialog-container .dialog-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #f4f4f5;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.dialog-container .dialog-header .dialog-title-block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dialog-container .dialog-header .dialog-title-block .dialog-header-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dialog-container .dialog-header .dialog-title-block .dialog-header-main .dialog-title {
  color: #18181b;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.dialog-container .dialog-header .dialog-title-block .dialog-header-main .code-pill {
  padding: 0.125rem 0.4rem;
  font-size: 0.75rem;
}
.dialog-container .dialog-header .dialog-title-block .dialog-subtitle {
  color: #52525b;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.125rem;
  line-height: 1.4;
  white-space: normal;
}
.dialog-container .dialog-header .dialog-close-button {
  margin-left: 1rem;
  flex-shrink: 0;
}
.dialog-container .dialog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
}
.dialog-container .dialog-content label,
.dialog-container .dialog-content .ui-outputlabel .ui-outputlabel-label {
  color: #18181b;
  font-size: 0.875rem;
  font-weight: 600;
}
.dialog-container .dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: #fafafa;
  border-top: 1px solid #f4f4f5;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.dialog-container .dialog-footer .ui-button {
  min-width: 8rem;
  transition: transform 0.2s ease;
}

.scrollable-dialog .ui-dialog-content {
  max-height: calc(90vh - 4rem) !important;
  /* Account for padding and buttons */
  overflow-y: auto !important;
}

/* Optional: Make scrollbar less obtrusive */
.scrollable-dialog .ui-dialog-content::-webkit-scrollbar {
  width: 6px;
}

.scrollable-dialog .ui-dialog-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollable-dialog .ui-dialog-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

/* Responsive adjustments for phone mode */
@media screen and (max-width: 576px) {
  .page .page-header .header-content .breadcrumbs {
    display: none;
  }
  .page .page-header .header-content .page-subtitle {
    display: none;
  }
}
/* Pure white - surfaces, cards */
/* Very subtle surface highlight (equal RGB) */
/* Default background - headers, cards (neutral) */
/* Subtle borders, hover states (neutral light) */
/* Standard border color (neutral, professional) */
/* Muted text/icons, disabled states (neutral mid) */
/* Placeholder text, secondary icons (4.8:1 contrast) */
/* Secondary text (7.7:1 contrast - AAA) */
/* Primary body text (10.4:1 contrast - AAA) */
/* High-contrast titles (14.9:1 contrast - AAA) */
/* Maximum contrast (17.7:1 contrast - AAA), rare usage */
/* 10px - Tiny labels, badges */
/* 12px - Captions, timestamps, fine print */
/* 14px - Small text, buttons, form labels */
/* 15px - DEPRECATED: Use $fontSizeBase (16px) or $fontSizeSm (14px) instead */
/* 16px - Default body text (most common) ✅ USE THIS */
/* 18px - Subheadings, emphasized text */
/* 20px - Card headers, medium headings */
/* 24px - Section titles, h3 */
/* 30px - Page headers, h2 */
/* 36px - Large headings, h1 */
/* 48px - Display headers, hero text */
/* 60px - Extra large displays (optional) */
/* Decorative only */
/* Decorative only */
/* Subtle text, captions */
/* Body text (most common) */
/* Emphasized text, UI elements */
/* Subheadings, labels, buttons */
/* Headings, titles */
/* Large headings, hero text */
/* Maximum emphasis (rare) */
/* Standard body text */
/* Default headings */
/* Page titles */
/* Hero/display text */
/* Badges, icons, UI elements */
/* Large headings (h1, h2) */
/* Subheadings (h3, h4) */
/* Body text (most common) - WCAG compliant */
/* Paragraphs, readable content */
/* Long-form content, poetry */
/* Large display headings */
/* Headings (h1-h3) */
/* Body text (default) */
/* Uppercase labels, buttons */
/* Small caps, tracking */
/* Uppercase headings, extreme tracking */
/* Headings, maximum contrast */
/* Body text (most common) */
/* Supporting text, captions */
/* Disabled text, placeholders */
/* Text on dark backgrounds */
/* Informational text, links */
/* Success messages */
/* Warning messages */
/* Error messages */
/* Tight spacing, compact UI */
/* Small gaps, inline elements */
/* Medium spacing */
/* Standard gaps */
/* Comfortable spacing */
/* Large gaps, sections */
/* Extra large spacing */
/* Sharp corners, no rounding */
/* Tight UI - checkboxes, icons */
/* Small buttons, badges */
/* Cards, input fields (standard) */
/* Modals, containers, panels */
/* Large rounded panels */
/* Circular, pill-style buttons */
/* Buttons */
/* Cards, panels */
/* Modals, dialogs */
/* Badges, tags */
/* Pill buttons, chips */
/* Phone → Tablet transition */
/* Tablet → Desktop transition */
/* Standard transition (fast, snappy) */
/* Standard animation (normal) */
/* Smooth ease-out */
/* Neutral secondary actions, subtle backgrounds */
/* Informational messages, info badges */
/* Success states, positive feedback */
/* Error states, destructive actions */
/* Warning messages, caution states */
/* Error messages (alias of danger) */
/* Default icon color (primary blue) */
/* Standard icon size (16px, scales with text) */
.section-header {
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid #3b82f6;
}
.section-header.section-header-sm {
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  border-left-width: 3px;
}
.section-header.section-header-sm .section-title {
  font-size: 1.25rem;
}
.section-header.section-header-sm .section-desc {
  font-size: 0.75rem;
}
.section-header.section-header-lg {
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left-width: 5px;
}
.section-header.section-header-lg .section-title {
  font-size: 1.875rem;
}
.section-header.section-header-lg .section-desc {
  font-size: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #18181b;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}

.section-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: #52525b;
  margin: 0;
  line-height: 1.5;
}

.badge-new {
  display: inline-block;
  background: #8bc34a;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.375rem;
  vertical-align: middle;
}

.demo-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.demo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
  background: white;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #1976D2;
}
.showcase-card.showcase-new {
  border-color: #8bc34a;
  background: linear-gradient(to bottom, rgba(139, 195, 74, 0.05) 0%, white 100%);
}

/* Entity Creation Page Styles
 * Modern, vertical form layout with rounded card header and integrated footer
 * Improved container structure with consistent max-width
 */
/* Container for the entire entity creation page */
.entity-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Narrow variant for focused forms (800px max-width) */
.entity-container-narrow {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media screen and (max-width: 576px) {
  .entity-container-narrow {
    padding: 0 0.5rem;
  }
}

/* Page header with consistent max-width */
.entity-page-header {
  margin-bottom: 16px;
  width: 100%;
}
.entity-page-header .header-content {
  display: flex;
  flex-direction: column;
  /* Breadcrumbs styling */
  /* Title section styling */
}
.entity-page-header .header-content .breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 0.25rem 0;
  padding: 0;
  font-size: 0.875rem;
}
.entity-page-header .header-content .breadcrumbs li {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #52525b;
}
.entity-page-header .header-content .breadcrumbs li:not(:last-child) {
  margin-right: 0.4rem;
}
.entity-page-header .header-content .breadcrumbs li:last-child:not(.separator) {
  color: #18181b;
  font-weight: 600;
}
.entity-page-header .header-content .breadcrumbs li a {
  text-decoration: none;
  color: #52525b;
  transition: color 0.2s;
}
.entity-page-header .header-content .breadcrumbs li a:hover {
  color: #3f3f46;
  text-decoration: underline;
}
.entity-page-header .header-content .breadcrumbs li a .pi-home {
  font-size: 0.875rem;
  color: #52525b;
  transition: color 0.2s;
}
.entity-page-header .header-content .breadcrumbs li a .pi-home:hover {
  color: #3f3f46;
}
.entity-page-header .header-content .breadcrumbs li.separator {
  margin: 0 0.4rem;
  font-size: 0.875rem;
  font-weight: normal;
  color: #52525b;
  user-select: none;
}
.entity-page-header .header-content .title-section {
  display: flex;
  flex-direction: column;
}
.entity-page-header .header-content .title-section .page-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3f3f46;
  margin: 0;
  line-height: 1.25;
}
.entity-page-header .header-content .title-section .page-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
  margin: 0.25rem 0 0 0;
}

/* Entity card with consistent styling */
.entity-creation-card {
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
  width: 100%;
  /* Rounded card header with icon, title, subtitle and separator */
  /* Card body */
  /* Card footer with integrated buttons */
}
.entity-creation-card .entity-card-header {
  background: #ffffff;
  padding: 1.25rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-bottom: 1px solid #e4e4e7;
}
.entity-creation-card .entity-card-header .header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.entity-creation-card .entity-card-header .header-content .entity-icon {
  font-size: 1.25rem;
  color: #ffffff;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.entity-creation-card .entity-card-header .header-content .entity-icon:hover {
  transform: scale(1.05);
}
.entity-creation-card .entity-card-header .header-content .header-text {
  flex: 1;
}
.entity-creation-card .entity-card-header .header-content .header-text h2 {
  margin: 0 0 0.375rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
}
.entity-creation-card .entity-card-header .header-content .header-text p {
  margin: 0;
  font-size: 0.875rem;
  color: #52525b;
  line-height: 1.4;
}
.entity-creation-card .entity-card-header .header-content .header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.entity-creation-card .entity-card-body {
  padding: 1.5rem;
  /* Form section with title and bottom border separator */
}
.entity-creation-card .entity-card-body .form-section {
  margin-bottom: 2rem;
}
.entity-creation-card .entity-card-body .form-section:last-child {
  margin-bottom: 0;
}
.entity-creation-card .entity-card-body .form-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #18181b;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e4e4e7;
}
.entity-creation-card .entity-card-body .form-section .form-layout {
  margin-top: 1.25rem;
}
.entity-creation-card .entity-card-footer {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(228, 228, 231, 0.3) 0%, rgba(244, 244, 245, 0.5) 100%);
  border-top: 1px solid #e4e4e7;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
}
.entity-creation-card .entity-card-footer .footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .entity-page-header .header-content .page-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .entity-creation-card .entity-card-header .header-content {
    flex-direction: column;
  }
  .entity-creation-card .entity-card-header .header-content .entity-icon {
    margin-bottom: 0.5rem;
  }
  .entity-creation-card .entity-card-footer .footer-actions {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .entity-page-header .header-content .breadcrumbs {
    display: none;
  }
  .entity-page-header .header-content .page-title {
    font-size: 1.25rem;
  }
  .entity-page-header .header-content .page-subtitle {
    display: none;
  }
  .entity-creation-card .entity-card-header {
    padding: 1rem;
  }
  .entity-creation-card .entity-card-header .header-content .header-text h2 {
    font-size: 1.25rem;
  }
  .entity-creation-card .entity-card-body {
    padding: 1rem;
  }
  .entity-creation-card .entity-card-footer {
    padding: 1rem;
  }
}
/* Form Layout System
 * Container classes for organizing form fields
 */
.form-layout {
  width: 100%;
  margin-bottom: 1.25rem;
  /* Single column layout */
  /* Two column layout */
  /* Auto-fit layout */
  /* Three column layout */
  /* Full width modifier */
  /* Half width on mobile */
}
.form-layout.single-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-layout.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .form-layout.two-column {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.form-layout.auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.form-layout.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .form-layout.three-column {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .form-layout.three-column {
    grid-template-columns: 1fr;
  }
}
.form-layout .full-width {
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .form-layout .mobile-half {
    grid-column: span 1;
  }
}

/* Section wrapper - for grouping related fields */
.form-section {
  margin-bottom: 2rem;
}
.form-section:last-child {
  margin-bottom: 0;
}
.form-section .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.5rem;
}
.form-section .section-subtitle {
  font-size: 1rem;
  color: #52525b;
  margin-bottom: 1.5rem;
}

/* Section Header WITH Icon (major sections) */
.form-section-icon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-section-icon-header .section-icon-container {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(33, 150, 243, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-section-icon-header .section-icon-container i {
  font-size: 1.125rem;
  color: #2196F3;
}
.form-section-icon-header .section-text {
  flex: 1;
}
.form-section-icon-header .section-text .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  margin: 0 0 0.125rem 0;
  line-height: 1.3;
}
.form-section-icon-header .section-text .section-subtitle {
  font-size: 0.75rem;
  color: #3f3f46;
  margin: 0;
  line-height: 1.4;
}

/* Section Header WITHOUT Icon (minor sections) */
.form-section-simple-header {
  margin-bottom: 1.5rem;
}
.form-section-simple-header .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  margin: 0 0 0.125rem 0;
  line-height: 1.3;
}
.form-section-simple-header .section-subtitle {
  font-size: 0.75rem;
  color: #3f3f46;
  margin: 0;
  line-height: 1.4;
}

/* Universal Form Field Component
 * Container-independent form field styling
 */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
  /* Label styling */
  /* Updated component styling */
  /* InputNumber specific fix */
  /* Calendar/DatePicker specific fix */
  /* Helper text */
}
.form-field label,
.form-field .ui-outputlabel .ui-outputlabel-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
  margin-bottom: 0;
}
.form-field .ui-inputtext,
.form-field .ui-inputtextarea,
.form-field .ui-inputmask,
.form-field .ui-inputnumber,
.form-field .ui-selectonemenu,
.form-field .ui-selectcheckboxmenu,
.form-field .ui-autocomplete,
.form-field .ui-calendar,
.form-field .ui-spinner,
.form-field .ui-chips {
  width: 100% !important;
}
.form-field .ui-inputnumber {
  display: flex;
}
.form-field .ui-inputnumber input {
  flex: 1;
  width: 100% !important;
}
.form-field .ui-calendar {
  position: relative;
  width: 100%;
}
.form-field .ui-calendar input {
  width: calc(100% - 2.357rem) !important;
  padding-right: 0;
}
.form-field .ui-calendar .ui-datepicker-trigger {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.357rem;
  height: 100%;
}
.form-field small {
  color: #3f3f46;
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: -0.125rem;
  padding-left: 0.5rem;
}
.form-field small.ui-state-error {
  color: #dc2626;
}

.syntax-panel {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid rgb(191.5531914894, 219.6510638298, 247.4468085106);
  box-shadow: 0 1px 6px rgba(25, 118, 210, 0.22);
}
.syntax-panel .syntax-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976D2;
  font-size: 1rem;
  margin-top: 0.1rem;
}
.syntax-panel .syntax-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.syntax-panel .syntax-content .syntax-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
}
.syntax-panel .syntax-content .syntax-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
  font-size: 0.875rem;
  color: #3f3f46;
  align-items: center;
  margin: 0;
}
.syntax-panel .syntax-content .syntax-terms .syntax-term {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.syntax-panel .syntax-content .syntax-terms code {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Courier, monospace;
  font-size: 0.875rem;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
  padding: 0.125rem 0.45rem;
  color: #18181b;
}
.syntax-panel .syntax-content .syntax-legacy {
  font-size: 0.875rem;
  color: #1976D2;
  font-style: italic;
  display: block;
  margin: 0;
}
.syntax-panel .syntax-content .syntax-legacy code {
  background: transparent;
  border: 0 none;
  padding: 0;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .syntax-panel {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Home Page Styles
 * Styles for the main home page with greeting, dashboard cards, and module cards
 */
.section-header {
  position: relative;
  padding-left: 1rem;
}
.section-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1976D2;
  border-radius: 2px;
}

.greeting-section {
  text-align: left;
}
.greeting-section .greeting-message {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.375rem 0;
  color: #18181b;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.greeting-section .greeting-message .username {
  color: #1976D2;
  font-weight: 700;
}
.greeting-section .greeting-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: #52525b;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .greeting-section .greeting-message {
    font-size: 1.25rem;
  }
  .greeting-section .greeting-subtitle {
    font-size: 0.75rem;
  }
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0;
}

.dashboard-cards {
  margin-bottom: 1.25rem;
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.user-info .user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1976D2;
}
.user-info .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-info .user-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.user-info .user-details .user-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
}
.user-info .user-details .user-role {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
}
.user-info .user-details .user-datetime {
  font-size: 0.875rem;
  color: #d4d4d8;
  margin-top: 0.5rem;
}
@media screen and (max-width: 576px) {
  .user-info {
    flex-direction: column;
    text-align: center;
  }
}

.module-cards {
  margin-bottom: 2rem;
}
.module-cards .card-wrapper {
  text-decoration: none;
  display: block;
  height: 100%;
  transition: all 0.3s ease;
}
.module-cards .card-wrapper:hover:not(.module-card-disabled) {
  transform: translateY(-3px);
}
.module-cards .card-wrapper:hover:not(.module-card-disabled) .module-card {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.06);
  border-color: #d4d4d8;
}
.module-cards .card-wrapper:hover:not(.module-card-disabled) .module-card .module-icon {
  transform: scale(1.05);
}
.module-cards .card-wrapper:hover:not(.module-card-disabled) .module-card .module-title-chevron {
  color: var(--module-accent, #1976D2);
  transform: translateX(4px);
}
.module-cards .card-wrapper:hover:not(.module-card-disabled) .module-card::after {
  opacity: 0.22;
  transform: scale(1);
}
.module-cards .card-wrapper.module-card-disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.module-cards .card-wrapper.module-card-disabled .module-card {
  position: relative;
  opacity: 0.6;
  filter: grayscale(50%);
}
.module-cards .card-wrapper:nth-child(1) {
  --module-accent: #10b981;
}
.module-cards .card-wrapper:nth-child(1) .module-card .module-icon {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}
.module-cards .card-wrapper:nth-child(2) {
  --module-accent: #B944D6;
}
.module-cards .card-wrapper:nth-child(2) .module-card .module-icon {
  background: linear-gradient(135deg, #B944D6 0%, #8e34a6 100%);
}
.module-cards .card-wrapper:nth-child(3) {
  --module-accent: #8b5cf6;
}
.module-cards .card-wrapper:nth-child(3) .module-card .module-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.module-cards .card-wrapper:nth-child(4) {
  --module-accent: #2653A0;
}
.module-cards .card-wrapper:nth-child(4) .module-card .module-icon {
  background: linear-gradient(135deg, #2653A0 0%, #1e3a70 100%);
}
.module-cards .card-wrapper:nth-child(5) {
  --module-accent: #C76D09;
}
.module-cards .card-wrapper:nth-child(5) .module-card .module-icon {
  background: linear-gradient(135deg, #C76D09 0%, #9e5607 100%);
}
.module-cards .card-wrapper:nth-child(6) {
  --module-accent: #4b5563;
}
.module-cards .card-wrapper:nth-child(6) .module-card .module-icon {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
}
.module-cards .card-wrapper:nth-child(7) {
  --module-accent: #06b6d4;
}
.module-cards .card-wrapper:nth-child(7) .module-card .module-icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}
.module-cards .module-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 1.25rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  padding: 1.5rem;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}
.module-cards .module-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.12) 0%, rgba(148, 163, 184, 0) 65%);
  pointer-events: none;
}
.module-cards .module-card::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -54px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--module-accent, #2653A0) 12%, transparent);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.85), 0 0 18px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.module-cards .module-card .module-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}
.module-cards .module-card .module-icon i {
  font-size: 1.25rem;
  color: #ffffff;
}
.module-cards .module-card .module-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.module-cards .module-card .module-content .module-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.module-cards .module-card .module-content .module-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
  line-height: 1.4;
}
.module-cards .module-card .module-content .module-title-chevron {
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.module-cards .module-card .module-content .module-description {
  font-size: 0.875rem;
  color: #52525b;
  margin: 0;
  line-height: 1.5;
}
.module-cards .module-card .module-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.module-cards .module-card .module-card-overlay .overlay-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #8B6914;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-container {
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .home-container {
    padding: 0;
  }
}

.home-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e4e4e7;
  text-align: center;
}
.home-footer p {
  margin: 0;
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .home-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  .home-footer p {
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .module-cards .module-card {
    padding: 1.15rem;
  }
  .module-cards .module-card .module-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
  .module-cards .module-card .module-icon i {
    font-size: 1.125rem;
  }
  .module-cards .module-card .module-content .module-title {
    font-size: 1rem;
  }
  .module-cards .module-card .module-content .module-title-chevron {
    font-size: 1rem;
  }
  .module-cards .module-card .module-content .module-description {
    font-size: 0.75rem;
  }
}
.invoice {
  padding: 2rem;
}
.invoice .invoice-header {
  display: flex;
  justify-content: space-between;
}
.invoice .invoice-company .company-logo {
  height: 70px;
  margin-bottom: 0.5rem;
}
.invoice .invoice-company div {
  margin-bottom: 0.5rem;
}
.invoice .invoice-company .company-name {
  font-weight: 700;
  font-size: 1.5rem;
}
.invoice .invoice-title {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: right;
}
.invoice .invoice-details {
  width: 15rem;
  display: flex;
  flex-wrap: wrap;
}
.invoice .invoice-details > div {
  width: 50%;
  margin-bottom: 0.5rem;
}
.invoice .invoice-details .invoice-label {
  text-align: left;
  font-weight: 700;
}
.invoice .invoice-details .invoice-value {
  text-align: right;
}
.invoice .invoice-to {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.invoice .invoice-to .bill-to {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.invoice .invoice-to .invoice-to-info div {
  margin-bottom: 0.5rem;
}
.invoice .invoice-items {
  margin-top: 2rem;
  padding-top: 2rem;
}
.invoice .invoice-items table {
  width: 100%;
  border-collapse: collapse;
}
.invoice .invoice-items table tr {
  border-bottom: 1px solid #e2e8f0;
}
.invoice .invoice-items table th {
  font-weight: 700;
}
.invoice .invoice-items table th, .invoice .invoice-items table td {
  padding: 1rem;
  text-align: right;
}
.invoice .invoice-items table th:first-child, .invoice .invoice-items table td:first-child {
  text-align: left;
}
.invoice .invoice-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
.invoice .invoice-summary .invoice-value {
  font-weight: 700;
}

@media print {
  body * {
    visibility: hidden;
  }
  #invoice-content * {
    visibility: visible;
  }
  #invoice-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #252529;
  }
  .invoice .invoice-to {
    border-top: 1px solid #ebedef;
  }
  .invoice .invoice-items table tr {
    border-bottom: 1px solid #ebedef;
  }
}
/* Profile Container with Left Sidebar Tabs
 * Modern user profile interface with tab-based navigation
 * Pattern: GitHub/Linear style settings pages
 */
.profile-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  min-height: 100vh;
  background: transparent; /* No background - uses layout background */
}

/* Left Sidebar Tabs */
.profile-tabs {
  background: #ffffff; /* White background for tabs */
  border-right: 1px solid #e4e4e7; /* Neutral border */
  padding: 2rem 1rem;
  min-height: 100vh; /* Minimum full viewport height */
  overflow-y: auto;
  /* Scrollbar styling for WebKit browsers */
}
.profile-tabs::-webkit-scrollbar {
  width: 6px;
}
.profile-tabs::-webkit-scrollbar-track {
  background: transparent;
}
.profile-tabs::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 3px;
}
.profile-tabs::-webkit-scrollbar-thumb:hover {
  background: #a1a1aa;
}

/* Sidebar Header */
.profile-sidebar-header {
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
.profile-sidebar-header .sidebar-title {
  font-size: 1.25rem; /* 20px */
  font-weight: 700; /* 700 */
  color: #18181b;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.profile-sidebar-header .sidebar-subtitle {
  font-size: 0.875rem; /* 14px */
  font-weight: 400; /* 400 */
  color: #52525b;
  margin: 0;
  line-height: 1.4;
}

/* Tab Item Container */
.tab-item {
  margin-bottom: 0.25rem;
  /* Tab Link/Button */
}
.tab-item .tab-link,
.tab-item .tab-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 8px; /* Same as menu items */
  padding: 0.75rem 1rem;
  font-size: 0.875rem; /* 14px */
  font-weight: 400; /* 400 */
  color: #3f3f46; /* #3f3f46 */
  text-decoration: none !important; /* No underline ever */
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  position: relative;
  cursor: pointer;
  /* Icon */
  /* Tab label */
  /* Hover state (non-active) */
  /* Active state */
  /* Focus state for accessibility */
  /* Disabled state */
}
.tab-item .tab-link i,
.tab-item .tab-link .pi,
.tab-item .tab-button i,
.tab-item .tab-button .pi {
  font-size: 1.125rem; /* 18px */
  margin-right: 0.75rem;
  color: #52525b; /* Muted icon color */
  flex-shrink: 0;
  transition: color 0.15s ease;
  text-decoration: none !important; /* No underline ever */
}
.tab-item .tab-link span,
.tab-item .tab-button span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none !important; /* No underline ever */
}
.tab-item .tab-link:hover:not(.active),
.tab-item .tab-button:hover:not(.active) {
  background: #e4e4e7;
  color: #252529;
}
.tab-item .tab-link:hover:not(.active) i,
.tab-item .tab-link:hover:not(.active) .pi,
.tab-item .tab-button:hover:not(.active) i,
.tab-item .tab-button:hover:not(.active) .pi {
  color: #252529;
}
.tab-item .tab-link.active,
.tab-item .tab-button.active {
  background: #e4e4e7;
  color: #1976D2;
  font-weight: 500; /* 500 - subtle differentiation */
  /* Active tab hover - maintain styling, no underlines */
}
.tab-item .tab-link.active i,
.tab-item .tab-link.active .pi,
.tab-item .tab-button.active i,
.tab-item .tab-button.active .pi {
  color: #1976D2;
}
.tab-item .tab-link.active:hover,
.tab-item .tab-button.active:hover {
  background: #e4e4e7;
  color: #1976D2;
  text-decoration: none !important;
}
.tab-item .tab-link.active:hover i,
.tab-item .tab-link.active:hover .pi,
.tab-item .tab-button.active:hover i,
.tab-item .tab-button.active:hover .pi {
  color: #1976D2;
  text-decoration: none !important;
}
.tab-item .tab-link.active:hover span,
.tab-item .tab-button.active:hover span {
  text-decoration: none !important;
}
.tab-item .tab-link:focus,
.tab-item .tab-button:focus {
  outline: 2px solid #1976D2;
  outline-offset: -2px;
  border-radius: 8px;
  text-decoration: none !important;
}
.tab-item .tab-link:disabled, .tab-item .tab-link.disabled,
.tab-item .tab-button:disabled,
.tab-item .tab-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: none !important;
}
.tab-item .tab-link:disabled:hover, .tab-item .tab-link.disabled:hover,
.tab-item .tab-button:disabled:hover,
.tab-item .tab-button.disabled:hover {
  background: transparent;
  text-decoration: none !important;
}

/* Content Area */
.profile-content {
  padding: 0;
  background: transparent; /* No background - uses layout background */
  max-width: 1200px;
  width: 100%;
  /* Card grids handle their own spacing */
  /* All cards get default margin unless they're inside a card-grid */
  /* Form layouts within profile content */
}
.profile-content .card-grid {
  margin: 1.5rem;
  margin-bottom: 1.5rem;
  /* Cards inside grids don't need extra margin (grid gap handles it) */
}
.profile-content .card-grid:last-child {
  margin-bottom: 1.5rem;
}
.profile-content .card-grid .card {
  margin: 0;
}
.profile-content .card:not(.card-grid .card) {
  margin: 1.5rem;
  margin-bottom: 1.5rem;
}
.profile-content .card:not(.card-grid .card):last-child {
  margin-bottom: 1.5rem;
}
.profile-content .form-layout {
  margin-top: 0;
}

/* Content Header */
.profile-content-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem 0.5rem;
  background: transparent;
}
.profile-content-header .profile-content-title {
  flex: 1;
  min-width: 0;
}
.profile-content-header .profile-content-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.profile-content-header .content-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 700; /* 700 */
  color: #18181b;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.profile-content-header .content-title i,
.profile-content-header .content-title .pi {
  font-size: 1.25rem; /* 20px */
  color: #3f3f46;
}
.profile-content-header .content-subtitle {
  font-size: 1rem; /* 16px */
  font-weight: 400; /* 400 */
  color: #52525b;
  margin: 0;
  line-height: 1.5;
}

/* Tab Section Header (optional) */
.tab-section-header {
  padding: 0 1rem;
  margin: 1.5rem 0 0.75rem;
}
.tab-section-header h6 {
  font-size: 0.75rem; /* 12px */
  font-weight: 600; /* 600 */
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Responsive: Stack tabs on tablets and mobile */
@media (max-width: 992px) {
  .profile-container {
    grid-template-columns: 180px 1fr; /* Narrower sidebar */
  }
  .profile-tabs {
    padding: 0.75rem 0.5rem;
  }
  .tab-item .tab-link,
  .tab-item .tab-button {
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem; /* 12px */
  }
  .tab-item .tab-link i,
  .tab-item .tab-link .pi,
  .tab-item .tab-button i,
  .tab-item .tab-button .pi {
    font-size: 1rem; /* 16px - smaller icon */
    margin-right: 0.5rem;
  }
  .profile-content {
    padding: 0; /* Consistent with desktop - no padding */
  }
  .profile-content .card {
    margin: 1rem; /* Smaller margin on tablets */
  }
}
/* Responsive: Horizontal tabs on mobile */
@media (max-width: 768px) {
  .profile-container {
    grid-template-columns: 1fr; /* Single column */
  }
  .profile-tabs {
    position: relative;
    border-right: none;
    border-bottom: 1px solid #e4e4e7;
    padding: 0.75rem 0.5rem;
    max-height: none;
    /* Horizontal scrolling on mobile */
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    /* Hide scrollbar on mobile */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .profile-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-item {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .tab-item .tab-link,
  .tab-item .tab-button {
    white-space: nowrap;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    /* Active state - bottom accent instead of left */
  }
  .tab-item .tab-link.active::before,
  .tab-item .tab-button.active::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    border-radius: 8px 8px 0 0;
  }
  .profile-content {
    padding: 0; /* Consistent with desktop - no padding */
  }
  .profile-content .card {
    margin: 0.75rem; /* Even smaller margin on mobile */
  }
}
/* Print styles */
@media print {
  .profile-tabs {
    display: none;
  }
  .profile-container {
    grid-template-columns: 1fr;
  }
  .profile-content {
    padding: 0;
    max-width: none;
  }
}
/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
  .profile-tabs {
    background: #2a2a2a; /* Darker gray for dark mode tabs */
    border-right-color: #3a3a3a;
  }
  .tab-item .tab-link,
  .tab-item .tab-button {
    color: #e5e5e5;
  }
  .tab-item .tab-link:hover:not(.active),
  .tab-item .tab-button:hover:not(.active) {
    background: #2e2e33; /* Same as dark menu hover */
    color: #ebebef;
  }
  .tab-item .tab-link:hover:not(.active) i,
  .tab-item .tab-link:hover:not(.active) .pi,
  .tab-item .tab-button:hover:not(.active) i,
  .tab-item .tab-button:hover:not(.active) .pi {
    color: #ebebef;
  }
  .tab-item .tab-link.active,
  .tab-item .tab-button.active {
    background: #2e2e33; /* Same as dark menu hover background */
    color: #1976D2; /* Primary color for active state like menu */
  }
  .tab-item .tab-link.active i,
  .tab-item .tab-link.active .pi,
  .tab-item .tab-button.active i,
  .tab-item .tab-button.active .pi {
    color: #1976D2; /* Primary color for icons like menu */
  }
  .profile-content {
    background: #1a1a1a; /* Dark gray content background */
  }
}
/* Animation for tab switching (optional enhancement) */
.profile-content {
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Loading state for tab content */
.profile-content-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #52525b;
}
.profile-content-loading .pi-spinner {
  font-size: 2rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Empty state for tab content */
.profile-content-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #52525b;
}
.profile-content-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #a1a1aa;
}
.profile-content-empty h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #3f3f46;
  margin: 0 0 0.5rem;
}
.profile-content-empty p {
  font-size: 0.875rem;
  color: #52525b;
  margin: 0;
}

/* Horizontal Tabs - Pill Style Navigation
 * Modern horizontal tab bar for content organization
 */
.horizontal-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

/* Horizontal Tabs Bar */
.horizontal-tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  /* White background */
  border: 1px solid #e4e4e7;
  border-radius: 8px;
}

/* Tab Pill */
.tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3f3f46;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  /* Icon */
  /* Text */
  /* Badge/Pill */
  /* Hover state (non-active) */
  /* Active state */
  /* Focus state for accessibility */
  /* Disabled state */
}
.tab-pill i,
.tab-pill .pi {
  font-size: 1rem;
  color: #52525b;
  text-decoration: none !important;
}
.tab-pill span {
  text-decoration: none !important;
}
.tab-pill .badge,
.tab-pill .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  border-radius: 8px;
  min-width: 1.5rem;
  text-decoration: none !important;
  /* Badge inherits colors in non-active state */
  background: #e4e4e7;
  color: #3f3f46;
  border: none;
}
.tab-pill:hover:not(.active):not(.disabled) {
  background: #e4e4e7;
  color: #252529;
  border-color: #d4d4d8;
}
.tab-pill:hover:not(.active):not(.disabled) i,
.tab-pill:hover:not(.active):not(.disabled) .pi {
  color: #252529;
}
.tab-pill.active {
  background: #1976D2;
  color: #ffffff;
  /* White text */
  border-color: #1976D2;
  font-weight: 500;
  /* Active hover - maintain styling */
}
.tab-pill.active i,
.tab-pill.active .pi {
  color: #ffffff;
}
.tab-pill.active .badge,
.tab-pill.active .pill {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border: none;
}
.tab-pill.active:hover {
  background: #1976D2;
  color: #ffffff;
  border-color: #1976D2;
  text-decoration: none !important;
}
.tab-pill.active:hover i,
.tab-pill.active:hover .pi {
  color: #ffffff;
  text-decoration: none !important;
}
.tab-pill.active:hover span {
  text-decoration: none !important;
}
.tab-pill:focus {
  outline: 2px solid #1976D2;
  outline-offset: -2px;
  border-radius: 8px;
  text-decoration: none !important;
}
.tab-pill.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
  text-decoration: none !important;
}
.tab-pill.disabled:hover {
  background: transparent;
  border-color: transparent;
  text-decoration: none !important;
}

/* Tab Content Area */
.horizontal-tabs-content {
  display: block;
  /* Removed card styling - content should define its own layout */
  /* padding: 1.5rem; */
  /* background: $shade000; */
  /* border: 1px solid $shade200; */
  /* border-radius: $borderRadius; */
  /* min-height: 400px; */
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .horizontal-tabs-bar {
    flex-direction: column;
    gap: 0.25rem;
  }
  .tab-pill {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ========================================
 * Legacy Horizontal Tabs (inline style)
 * TODO: Will be aligned with pill style later
 * ======================================== */
.content-tabs {
  display: inline-flex;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  padding: 0;
}
.content-tabs:empty {
  display: none;
}
.content-tabs .tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.content-tabs .tabs li {
  margin: 0;
  position: relative;
}
.content-tabs .tabs li a {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 2rem;
  padding: 0.5rem 1rem;
  color: #52525b;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 0;
  background-color: #f4f4f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.content-tabs .tabs li a i {
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
.content-tabs .tabs li a .badge {
  border-radius: 0.375rem;
  line-height: 1;
  margin-left: 0.45rem;
  min-width: 1.25em;
  padding: 0.1875rem 0.375rem;
}
.content-tabs .tabs li a span {
  line-height: 1.5;
}
.content-tabs .tabs li a:hover {
  background-color: #e4e4e7;
  color: #3f3f46;
}
.content-tabs .tabs li a.active {
  background-color: #ffffff;
  color: #18181b;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.content-tabs .tabs li a::before {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background-color: #e4e4e7;
}
.content-tabs .tabs li a::after {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  right: 0;
  width: 1px;
  background-color: #e4e4e7;
}
.content-tabs .tabs li a.active::before, .content-tabs .tabs li a.active::after {
  content: none;
  width: 0;
  background: none;
}
.content-tabs.full-width {
  display: flex;
  width: 100%;
}
.content-tabs.full-width .tabs {
  flex: 1;
}
.content-tabs.full-width .tabs li {
  flex: 1;
}
.content-tabs.full-width .tabs li a {
  justify-content: center;
  width: 100%;
}

/* Horizontal Tabs - Modifier Classes
 * Additional styling variants for horizontal tabs
 */
/* ========================================
 * Modifier Classes - Background Variants
 * ======================================== */
/* Minimal - No container background (clean) */
.horizontal-tabs-bar.minimal {
  background: transparent;
  border: none;
  padding: 0.5rem 0;
}

/* Subtle - Light gray background */
.horizontal-tabs-bar.subtle {
  background: #fafafa;
  border-color: #f4f4f5;
}

/* Bordered - Underline style (Material Design pattern) */
.horizontal-tabs-bar.bordered {
  background: transparent;
  border: none;
  border-bottom: 2px solid #e4e4e7;
  border-radius: 0;
  padding: 0;
}
.horizontal-tabs-bar.bordered .tab-pill {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #3f3f46;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.horizontal-tabs-bar.bordered .tab-pill.active {
  background: transparent;
  color: #1976D2;
  border-bottom-color: #1976D2;
  font-weight: 600;
}
.horizontal-tabs-bar.bordered .tab-pill.active i,
.horizontal-tabs-bar.bordered .tab-pill.active .pi {
  color: #1976D2;
}
.horizontal-tabs-bar.bordered .tab-pill.active .badge,
.horizontal-tabs-bar.bordered .tab-pill.active .pill {
  background: rgba(25, 118, 210, 0.15);
  color: #1976D2;
  border: none;
}
.horizontal-tabs-bar.bordered .tab-pill.active:hover {
  background: transparent;
  border-color: transparent;
}
.horizontal-tabs-bar.bordered .tab-pill:hover:not(.active):not(.disabled) {
  color: #18181b;
  background: transparent;
  border-color: transparent;
  border-bottom-color: #d4d4d8;
}

/* Full-width container - extends edge to edge for continuous baseline */
.horizontal-tabs-bar.full-container {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

/* ========================================
 * Modifier Classes - Size Variants
 * ======================================== */
/* Compact size */
.horizontal-tabs-bar.compact {
  padding: 0.5rem 0.75rem;
  gap: 0.375rem;
}
.horizontal-tabs-bar.compact .tab-pill {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  gap: 0.375rem;
}
.horizontal-tabs-bar.compact .tab-pill i,
.horizontal-tabs-bar.compact .tab-pill .pi {
  font-size: 0.875rem;
}
.horizontal-tabs-bar.compact .tab-pill .badge,
.horizontal-tabs-bar.compact .tab-pill .pill {
  padding: 0.0625rem 0.375rem;
  font-size: 0.625rem;
  min-width: 1.25rem;
  border: none;
}

/* Large size */
.horizontal-tabs-bar.large {
  padding: 1rem 1.25rem;
  gap: 0.75rem;
}
.horizontal-tabs-bar.large .tab-pill {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  gap: 0.625rem;
}
.horizontal-tabs-bar.large .tab-pill i,
.horizontal-tabs-bar.large .tab-pill .pi {
  font-size: 1.125rem;
}
.horizontal-tabs-bar.large .tab-pill .badge,
.horizontal-tabs-bar.large .tab-pill .pill {
  padding: 0.1875rem 0.625rem;
  font-size: 0.875rem;
  min-width: 1.75rem;
  border: none;
}

/* ========================================
 * Modifier Classes - Shape Variants
 * ======================================== */
/* Rounded pills (more prominent radius) */
.horizontal-tabs-bar.rounded .tab-pill {
  border-radius: 1.5rem;
}

/* Squared tabs (no radius) */
.horizontal-tabs-bar.squared {
  border-radius: 0;
}
.horizontal-tabs-bar.squared .tab-pill {
  border-radius: 0;
}

/* ========================================
 * Modifier Classes - Color Variants
 * ======================================== */
/* Soft/Muted colors */
.horizontal-tabs-bar.soft .tab-pill.active {
  background: rgba(25, 118, 210, 0.1);
  color: #1976D2;
  border-color: rgba(25, 118, 210, 0.2);
}
.horizontal-tabs-bar.soft .tab-pill.active i,
.horizontal-tabs-bar.soft .tab-pill.active .pi {
  color: #1976D2;
}
.horizontal-tabs-bar.soft .tab-pill.active .badge,
.horizontal-tabs-bar.soft .tab-pill.active .pill {
  background: rgba(25, 118, 210, 0.2);
  color: #1976D2;
  border: none;
}

/* ========================================
 * Modifier Classes - Layout Variants
 * ======================================== */
/* Centered tabs */
.horizontal-tabs-bar.centered {
  justify-content: center;
}

/* Right-aligned tabs */
.horizontal-tabs-bar.right {
  justify-content: flex-end;
}

/* Spaced (distribute evenly) */
.horizontal-tabs-bar.spaced {
  justify-content: space-between;
}

/* Full-width tabs */
.horizontal-tabs-bar.full-width {
  width: 100%;
}
.horizontal-tabs-bar.full-width .tab-pill {
  flex: 1;
  justify-content: center;
}

.report-viewer {
  align-items: flex-start;
  background-color: #525659;
  border: 3px solid #2d3748;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  max-width: none;
  padding: 2rem 1rem 1rem;
  width: 100%;
}
@media (max-width: 600px) {
  .report-viewer {
    padding: 0.5rem;
    padding-top: 2rem;
  }
}

.report-document {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 215.9mm;
  min-height: 279.4mm;
  width: 100%;
}
@media (max-width: 600px) {
  .report-document {
    min-height: calc(279.4mm * 0.8);
  }
}
.report-document:has(.orientation-landscape) {
  max-width: 279.4mm;
  min-height: calc(215.9mm - 5rem);
}
@media (max-width: 600px) {
  .report-document:has(.orientation-landscape) {
    min-height: calc(215.9mm * 0.8);
  }
}

.report-paper {
  display: block;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #2d3748;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 215.9mm;
  min-height: calc(279.4mm - 5rem);
  min-width: 0;
  padding: 2.5rem;
}
@media (max-width: 600px) {
  .report-paper {
    max-width: 100%;
    min-height: calc(279.4mm - 2.5rem);
    padding: 1.25rem;
  }
}
.report-paper.orientation-portrait {
  max-width: 215.9mm;
  min-height: calc(279.4mm - 5rem);
}
.report-paper.orientation-landscape {
  max-width: 279.4mm;
  min-height: calc(215.9mm - 5rem);
}
.report-paper.orientation-landscape .document-header {
  gap: 1rem;
}
.report-paper.orientation-landscape .document-header .company-branding .company-logo {
  height: 50px;
}
@media (max-width: 600px) {
  .report-paper.orientation-landscape {
    min-height: calc(215.9mm - 2.5rem);
  }
}

.document-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}
.document-header .company-branding {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 50%;
}
.document-header .company-branding .company-logo {
  height: 60px;
  width: auto;
}
.document-header .company-branding .company-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.document-header .company-branding .company-info .company-name {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.document-header .company-branding .company-info .company-address {
  color: #718096;
  font-size: 0.875rem;
  line-height: 1.4;
}
.document-header .report-title-block {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  max-width: 50%;
  text-align: right;
}
.document-header .report-title-block .report-title {
  color: #2d3748;
  font-size: 1.825rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.document-header .report-title-block .report-metadata {
  color: #4a5568;
  display: grid;
  font-size: 0.875rem;
  gap: 0.5rem 1rem;
  grid-template-columns: auto auto;
}
.document-header .report-title-block .report-metadata .metadata-label {
  font-weight: 600;
  text-align: right;
}
.document-header .report-title-block .report-metadata .metadata-label::after {
  content: ": ";
}
.document-header .report-title-block .report-metadata .metadata-value {
  font-weight: 400;
}
@media (max-width: 600px) {
  .document-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .document-header .company-branding,
  .document-header .report-title-block {
    max-width: 100%;
  }
  .document-header .company-branding {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .document-header .company-branding .company-logo {
    height: 60px;
  }
  .document-header .report-title-block {
    align-items: flex-start;
    text-align: left;
  }
}

.document-separator {
  background: linear-gradient(90deg, #2d3748 0%, #718096 100%);
  border: none;
  border-radius: 4px;
  height: 2px;
  margin: 1rem 0 0;
  opacity: 0.8;
  width: 100%;
}
@media (max-width: 600px) {
  .document-separator {
    margin: 1.5rem 0 0;
  }
}

.report-paper .document-metadata {
  margin-bottom: 0;
  margin-top: 1rem;
  padding: 0;
}
.report-paper .document-metadata .report-title {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
}
.report-paper .document-metadata .metadata-label {
  font-weight: 600;
  text-align: right;
}
.report-paper .document-metadata .metadata-label::after {
  content: ": ";
}
.report-paper .document-metadata .metadata-value {
  font-weight: 400;
}
.report-paper .report-details {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.5rem;
}
.report-paper .report-details .report-label {
  color: #2d3748;
  font-weight: 500;
}
.report-paper .report-details .report-value {
  color: #4a5568;
}
.report-paper .report-to {
  border-top: 1px solid #e2e8f0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.report-paper .report-to .bill-to {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.report-paper .report-to .report-to-info div {
  color: #4a5568;
  margin-bottom: 0.5rem;
}
.report-paper .report-summary {
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.report-paper .report-summary .report-notes {
  color: #4a5568;
  font-size: 0.875rem;
  max-width: 50%;
}
.report-paper .report-summary .report-totals .report-label {
  color: #2d3748;
  font-weight: 500;
}
.report-paper .report-summary .report-totals .report-value {
  color: #2d3748;
  font-weight: 700;
}

.report-paper table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.875rem;
  color: #2d3748;
  margin-top: 1rem;
}
.report-paper table caption {
  caption-side: top;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0.5rem;
  color: #1a202c;
}
.report-paper table thead, .report-paper table tfoot {
  background-color: #f7fafc;
  color: #2d3748;
}
.report-paper table thead th, .report-paper table thead td, .report-paper table tfoot th, .report-paper table tfoot td {
  font-weight: 600;
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
  text-align: left;
}
.report-paper table thead th.section-header, .report-paper table tfoot th.section-header {
  background-color: #e2e8f0;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.report-paper table tbody tr {
  page-break-inside: avoid;
}
.report-paper table tbody td {
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
  vertical-align: top;
  word-wrap: break-word;
  font-weight: 400;
  color: #4a5568;
}
.report-paper .report-items {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 0.5rem;
  height: 100%;
}
.report-paper .report-items .report-empty-state {
  flex: 1;
  align-items: center;
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  height: 100%;
  min-height: 400px;
  width: 100%;
}
.report-paper .report-items .report-empty-state .report-empty-state-content {
  max-width: 80%;
  padding: 2rem;
  text-align: center;
}
.report-paper .report-items .report-empty-state .report-empty-state-title {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.report-paper .report-items .report-empty-state .report-empty-state-subtitle {
  color: #718096;
  font-size: 1.125rem;
  line-height: 1.5;
}
.report-paper .ui-datatable thead th {
  text-align: left;
}

@media print {
  @page {
    margin: 1.5cm;
    size: letter;
  }
  @page landscape {
    margin: 1.5cm;
    size: letter landscape;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  html, body {
    background: white !important;
    color: #000;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11pt;
    height: auto !important;
    line-height: 1.5;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden;
    width: 100% !important;
  }
  body * {
    visibility: hidden;
  }
  .container,
  .layout,
  .main,
  .ui-layout,
  .ui-panel {
    display: block !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .report-viewer,
  .report-viewer *,
  .report-document,
  .report-document * {
    visibility: visible !important;
  }
  .report-viewer {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .report-document {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    min-height: 11in !important;
    min-width: 0;
    padding: 0 !important;
    position: static !important;
    width: 100% !important;
  }
  .report-document:has(.orientation-landscape) {
    page: landscape;
    max-width: none !important;
    min-height: 7.3188976378in !important;
  }
  .report-paper {
    background: #ffffff !important;
    font-size: 11pt;
    line-height: 1.5;
    margin: 0 !important;
    min-height: 9.8188976378in !important;
    min-width: 0;
    padding: 0 !important;
    width: 100%;
  }
  .report-paper.orientation-landscape {
    max-width: none !important;
    min-height: 7.3188976378in !important;
    page: landscape;
  }
  .report-document *:not(th):not(td):not(table):not(thead):not(tbody):not(tfoot):not(.report-empty-state):not(.document-separator) {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  .document-header {
    margin-bottom: 1rem;
  }
  .document-header .company-branding .company-logo {
    height: 60px;
  }
  .document-header .company-branding .company-info .company-name {
    font-size: 18pt;
  }
  .document-header .company-branding .company-info .company-address {
    font-size: 10pt;
  }
  .document-header .report-title-block .report-title {
    font-size: 20pt;
  }
  .document-header .report-title-block .report-metadata {
    font-size: 9pt;
  }
  .document-separator {
    background: #000 !important;
    border: none !important;
    height: 1pt !important;
    margin: 0.5cm 0 !important;
    opacity: 1 !important;
    page-break-inside: avoid !important;
    width: 100% !important;
  }
  .document-metadata {
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
  .report-summary,
  .report-notes {
    margin-bottom: 1rem;
  }
  .report-title {
    font-size: 18pt;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .report-subtitle {
    color: #4a5568;
    font-size: 12pt;
    font-weight: 400;
  }
  .company-branding .company-logo {
    margin-bottom: 0.75rem;
    max-height: 50px;
  }
  table {
    font-size: 9pt;
    page-break-inside: auto;
    width: 100%;
    border-collapse: collapse;
  }
  table caption {
    font-size: 11pt;
    font-weight: bold;
    margin-bottom: 0.2cm;
    page-break-after: avoid;
    caption-side: top;
  }
  table thead, table tfoot {
    background-color: #e2e8f0 !important;
  }
  table tr {
    page-break-inside: avoid;
  }
  table th, table td {
    border: 0.5pt solid #000;
    padding: 6pt 8pt;
  }
  table table, table thead, table tbody, table tr, table td, table th {
    page-break-inside: auto;
    page-break-after: auto;
  }
  table thead {
    display: table-header-group;
  }
  table tfoot {
    display: table-footer-group;
  }
  .report-notes {
    color: #4a5568;
    font-size: 9.5pt;
    margin-top: 1.5rem;
  }
  .report-items {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }
  .report-items .report-empty-state {
    align-items: center !important;
    border: 1pt dashed #000 !important;
    display: flex !important;
    flex: 1 !important;
    justify-content: center !important;
    margin: 1cm 0 !important;
    min-height: 300px !important;
  }
  .report-items .report-empty-state .report-empty-state-content {
    padding: 1cm !important;
  }
  .report-items .report-empty-state .report-empty-state-title {
    color: #000 !important;
    font-size: 14pt !important;
    font-weight: 700 !important;
    margin-bottom: 0.5cm !important;
  }
  .report-items .report-empty-state .report-empty-state-subtitle {
    color: #333 !important;
    font-size: 11pt !important;
    line-height: 1.4 !important;
  }
  .report-section {
    page-break-inside: avoid;
  }
  .page-break-before {
    page-break-before: always;
  }
  .page-break-after {
    page-break-after: always;
  }
  .no-page-break {
    page-break-inside: avoid;
  }
}
/* Report dashboard */
.report-dashboard {
  /* Using card-grid system instead of report-grid */
}
.report-dashboard .filters-favorites {
  margin-bottom: 1.5rem;
}
.report-dashboard .filters-favorites .filters {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.report-dashboard .filters-favorites .filters .search {
  min-width: 250px;
}
.report-dashboard .filters-favorites .filters .filter-btn {
  background: transparent;
  border: none;
  font-size: 1.125rem;
  color: #333;
}
.report-dashboard .section-separator {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0.75rem 0;
}
.report-dashboard .category-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #2d3748;
}
.report-dashboard .report-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  background: var(--surface-card);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  gap: 0.5rem;
  position: relative;
  overflow: visible;
  height: 100%;
}
.report-dashboard .report-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.report-dashboard .report-card:hover .card-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.report-dashboard .report-card .report-card-content {
  /* No transition needed */
}
.report-dashboard .report-card .report-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.report-dashboard .report-card .report-card-header .report-card-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.report-dashboard .report-card .report-card-header .report-card-left .report-icon-wrapper {
  background-color: #f7fafc;
  border-radius: 50%;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-dashboard .report-card .report-card-header .report-card-left .report-icon-wrapper .report-icon {
  font-size: 1.5rem;
  color: #4a5568;
}
.report-dashboard .report-card .report-card-header .report-card-left .report-text .report-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: #2d3748;
}
.report-dashboard .report-card .report-card-header .report-card-left .report-text .report-subtitle {
  font-size: 0.875rem;
  color: #718096;
  margin: 0.25rem 0 0;
}
.report-dashboard .report-card .report-card-header .report-type-pill {
  padding: 0.3rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-transform: capitalize;
}
.report-dashboard .report-card .report-card-header .report-type-pill.graph {
  background-color: #e8eafc;
  color: #3f51b5;
  border: 1px solid #d1d5f0;
}
.report-dashboard .report-card .report-card-header .report-type-pill.dashboard {
  background-color: #e8f5e9;
  color: #43a047;
  border: 1px solid #ccebd4;
}
.report-dashboard .report-card .report-card-header .report-type-pill.table {
  background-color: #f3e5f5;
  color: #8e24aa;
  border: 1px solid #e0c9e7;
}
.report-dashboard .report-card .report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
  align-items: flex-end;
  flex-grow: 1;
}
.report-dashboard .report-card .report-tags .report-tag-pill {
  border-radius: 1.2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #1a202c;
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-inventory {
  background-color: #d1e7dd; /* Soft green */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-sample {
  background-color: #bfdbfe; /* Light blue */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-result {
  background-color: #bae6fd; /* Sky blue */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-nonconformity {
  background-color: #fecaca; /* Light red */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-product {
  background-color: #e9d5ff; /* Soft purple */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-quality {
  background-color: #a7f3d0; /* Bright green */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-reference {
  background-color: #e5e7eb; /* Light gray */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-trends {
  background-color: #fed7aa; /* Soft orange */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-daily {
  background-color: #fef3c7; /* Pale yellow */
}
.report-dashboard .report-card .report-tags .report-tag-pill.tag-monthly {
  background-color: #ddd6fe; /* Light lavender */
}
.report-dashboard .report-card .report-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.report-dashboard .report-card .card-actions {
  margin-left: auto;
}

/* Form Section */
.form-section {
  background: transparent;
  margin-bottom: 1.5rem;
}
.form-section.bordered {
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  padding: 1.25rem;
}
.form-section.seamless {
  margin: 0;
  padding: 0;
  border: none;
}
.form-section .section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 0.25rem;
}
.form-section .section-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #3f3f46;
  margin-bottom: 1.25rem;
}
.form-section .icon-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.form-section .icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-section .icon-list li i {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.25;
  margin-top: 0.125rem;
}
.form-section .icon-list li span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}
.form-section .icon-list li.danger {
  color: #d32f2f;
}
.form-section .icon-list li.danger i {
  color: #d32f2f;
}
.form-section .icon-list li.warning {
  color: #ffca28;
}
.form-section .icon-list li.warning i {
  color: #ffca28;
}
.form-section .icon-list li.info {
  color: #0288D1;
}
.form-section .icon-list li.info i {
  color: #0288D1;
}
.form-section .icon-list li.success {
  color: #8bc34a;
}
.form-section .icon-list li.success i {
  color: #8bc34a;
}
.form-section .icon-list li.secondary {
  color: #e2e8f0;
}
.form-section .icon-list li.secondary i {
  color: #e2e8f0;
}
.form-section .inline-block-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #ffffff; /* #ffffff */
  color: #3f3f46;
  border: 1px solid #e4e4e7; /* #e2e8f0 */
  border-radius: 8px; /* 0.375rem */
  font-size: 1rem;
  font-weight: 400;
}
.form-section .inline-block-card i {
  font-size: 1rem;
  flex-shrink: 0;
  color: inherit;
}
.form-section .inline-block-card.info {
  border-color: #0288D1;
  background-color: rgba(2, 136, 209, 0.05);
  color: #0288D1;
}
.form-section .inline-block-card.success {
  border-color: #8bc34a;
  background-color: rgba(139, 195, 74, 0.05);
  color: #8bc34a;
}
.form-section .inline-block-card.warning {
  border-color: #ffca28;
  background-color: rgba(255, 202, 40, 0.08);
  color: #ffca28;
}
.form-section .inline-block-card.danger {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.05);
  color: #d32f2f;
}
.form-section .inline-block-card.secondary {
  border-color: #e2e8f0;
  background-color: rgba(226, 232, 240, 0.05);
  color: #e2e8f0;
}
.form-section .field-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.125rem 1.25rem;
  margin-bottom: 0;
}
.form-section .field-group:last-child {
  margin-bottom: 0;
}
.form-section .field-group .field {
  display: flex;
  flex-direction: column;
}
.form-section .field-group .field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
  margin-bottom: 0.35rem;
}
.form-section .field-group .field .value {
  font-size: 1rem;
  font-weight: 400;
  color: #3f3f46;
  display: flex;
  align-items: center;
  min-height: 1.5rem;
}
.form-section .field-group .field .value.icon-left {
  gap: 0.5rem;
}
.form-section .field-group .field .value.icon-left .icon-inline {
  font-size: 1rem;
  color: #18181b;
  flex-shrink: 0;
}
.form-section .field-group .textarea {
  grid-column: 1/-1;
}
.form-section .field-group .textarea label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 0.35rem;
}
.form-section .field-group .textarea textarea {
  width: 100%;
  min-height: 100px;
  background: #f4f4f5;
  color: #3f3f46;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  resize: none;
}
.form-section .row, .form-section .audit-row, .form-section .info-row {
  display: flex;
  padding: 0;
}
.form-section .field-group.single-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-section:last-child {
  margin-bottom: 0;
}
.form-section .info-row {
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e4e4e7;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
  padding: 0.75rem 0;
}
.form-section .info-row .info-pair {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}
.form-section .info-row .info-pair label {
  font-size: 0.875rem;
  font-weight: 500; /* 500 */
  color: #3f3f46;
  min-width: 150px;
  max-width: 40%;
  flex-shrink: 0;
}
.form-section .info-row .info-pair .value {
  font-size: 1rem;
  font-weight: 400;
  color: #3f3f46;
  flex: 1;
  text-align: right;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 768px) {
  .form-section .info-row .info-pair {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .form-section .info-row .info-pair label {
    max-width: none;
  }
  .form-section .info-row .info-pair .value {
    text-align: left;
  }
}
.form-section .audit-row {
  align-items: center;
}
.form-section .audit-row .audit-icon {
  margin-right: 0.75rem;
  color: rgb(54.829787234, 143.4765957447, 231.170212766);
}
.form-section .audit-row .audit-icon i {
  font-size: 1rem;
  font-weight: 600;
}
.form-section .audit-row .audit-info {
  display: grid;
  gap: 0.25rem;
}
.form-section .audit-row .audit-info .audit-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--shade-600);
}
.form-section .audit-row .audit-info .audit-value {
  font-size: 1rem;
  font-weight: 400;
  color: #3f3f46;
}
.form-section .audit-row .audit-info .audit-value .audit-user {
  display: inline;
  font-size: 0.75rem;
  font-weight: 400;
  color: #52525b;
  margin-left: 0.25rem;
}
@media (max-width: 640px) {
  .form-section .audit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .form-section .audit-row .audit-icon {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  .form-section .audit-row .audit-info {
    gap: 0.25rem;
  }
  .form-section .audit-row .audit-info .audit-value .audit-user {
    display: block;
    margin-left: 0;
  }
  .form-section .audit-row .audit-info .audit-value .audit-user:before {
    content: none;
  }
}

.form-section .form-layout {
  margin-top: 0.5rem; /* Add consistent top margin to form content */
}

/* This ensures consistent spacing regardless of subtitle presence */
.section-title + .form-layout {
  margin-top: 1rem; /* Slightly more space when no subtitle */
}

/* Add spacing when field-group directly follows section-title (no subtitle) */
.section-title + .field-group {
  margin-top: 1.25rem; /* Match the spacing that subtitle would provide */
}

.custom-confirm-dialog {
  width: 90vw;
  min-width: 20rem;
  max-width: 30rem;
}
@media (min-width: 768px) {
  .custom-confirm-dialog {
    width: 60vw;
  }
}
@media (min-width: 1200px) {
  .custom-confirm-dialog {
    width: 40vw;
  }
}

/*# sourceMappingURL=layout-blue.css.map */
