/* src/shared/styles/_tokens.scss */
:root {
  --sf-violet-50: #EEEDFE;
  --sf-violet-100: #CECBF6;
  --sf-violet-200: #AFA9EC;
  --sf-violet-400: #7F77DD;
  --sf-violet-500: #9b6bc4;
  --sf-violet-600: #6d3ba8;
  --sf-violet-700: #534AB7;
  --sf-violet-800: #3d2668;
  --sf-violet-900: #1a0b3d;
  --sf-orange-50: #FAEEDA;
  --sf-orange-100: #FAC775;
  --sf-orange-400: #EF9F27;
  --sf-orange-600: #BA7517;
  --sf-orange-800: #854F0B;
  --sf-pink-400: #D4537E;
  --sf-pink-600: #993556;
  --sf-success: #1D9E75;
  --sf-success-dark: #0F6E56;
  --sf-danger: #A32D2D;
  --sf-info: #378ADD;
  --sf-gradient-primary:
    linear-gradient(
      135deg,
      #7F77DD 0%,
      #9b6bc4 100%);
  --sf-gradient-accent:
    linear-gradient(
      135deg,
      #EF9F27,
      #D4537E);
  --sf-gradient-bg:
    linear-gradient(
      135deg,
      #1a0b3d 0%,
      #3d1f6e 45%,
      #6d3ba8 100%);
  --sf-gradient-bg-light:
    linear-gradient(
      135deg,
      rgba(127,119,221,0.06),
      rgba(239,159,39,0.06));
  --sf-gradient-success:
    linear-gradient(
      135deg,
      #1D9E75,
      #0F6E56);
  --sf-text-primary: #1a0b3d;
  --sf-text-secondary: #6b5b8e;
  --sf-text-tertiary: #9b8bc4;
  --sf-text-placeholder: #b5a8d0;
  --sf-surface-glass: rgba(255,255,255,0.08);
  --sf-surface-glass-border: rgba(255,255,255,0.18);
  --sf-surface-card: rgba(255,255,255,0.97);
  --sf-surface-input: #faf8fd;
  --sf-border-input: #e4ddef;
  --sf-border-section: #ece4f5;
  --sf-shadow-primary: 0 4px 14px rgba(127,119,221,0.4);
  --sf-shadow-primary-hover: 0 6px 20px rgba(127,119,221,0.5);
  --sf-shadow-accent: 0 4px 14px rgba(239,159,39,0.4);
  --sf-shadow-glass: 0 20px 60px rgba(127,119,221,0.35);
  --sf-shadow-success: 0 4px 14px rgba(29,158,117,0.4);
  --sf-shadow-success-glow: 0 8px 24px rgba(29,158,117,0.4);
  --sf-shadow-card: 0 2px 12px rgba(0,0,0,0.04);
  --sf-radius-sm: 8px;
  --sf-radius-md: 10px;
  --sf-radius-lg: 14px;
  --sf-radius-xl: 20px;
  --sf-radius-pill: 100px;
  --sf-font-sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  --sf-font-mono: Monaco, monospace;
}

/* src/shared/styles/_glassmorphism.scss */
.sf-glass-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--sf-gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.sf-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.sf-orb--violet {
  width: 360px;
  height: 360px;
  background: var(--sf-violet-400);
  top: -80px;
  left: -60px;
  opacity: 0.55;
}
.sf-orb--orange {
  width: 320px;
  height: 320px;
  background: var(--sf-orange-400);
  bottom: -100px;
  right: -60px;
  opacity: 0.4;
}
.sf-orb--pink {
  width: 240px;
  height: 240px;
  background: var(--sf-pink-400);
  top: 50%;
  left: 50%;
  opacity: 0.3;
}
.sf-glass-card {
  position: relative;
  z-index: 2;
  background: var(--sf-surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--sf-surface-glass-border);
  border-radius: var(--sf-radius-xl);
  overflow: hidden;
}
.sf-white-card {
  position: relative;
  z-index: 2;
  background: var(--sf-surface-card);
  border-radius: var(--sf-radius-xl);
  box-shadow: var(--sf-shadow-glass);
}
.sf-gradient-text {
  background:
    linear-gradient(
      135deg,
      #FAC775,
      #F0997B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sf-gradient-text--primary {
  background:
    linear-gradient(
      135deg,
      var(--sf-violet-400),
      var(--sf-orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* src/shared/styles/_components.scss */
.sf-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.sf-brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--sf-gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sf-brand__text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--sf-radius-md);
  font-family: var(--sf-font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sf-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.sf-btn--primary {
  height: 40px;
  padding: 0 20px;
  background: var(--sf-gradient-primary);
  color: white;
  font-size: 13px;
  box-shadow: var(--sf-shadow-primary);
}
.sf-btn--primary:hover:not(:disabled) {
  box-shadow: var(--sf-shadow-primary-hover);
  transform: translateY(-1px);
}
.sf-btn--primary-lg {
  height: 44px;
  padding: 0 24px;
  font-size: 14px;
}
.sf-btn--accent {
  height: 40px;
  padding: 0 20px;
  background: var(--sf-gradient-accent);
  color: white;
  font-size: 13px;
  box-shadow: var(--sf-shadow-accent);
}
.sf-btn--accent:hover:not(:disabled) {
  transform: translateY(-1px);
}
.sf-btn--success {
  height: 44px;
  padding: 0 24px;
  background: var(--sf-gradient-success);
  color: white;
  font-size: 14px;
  box-shadow: var(--sf-shadow-success);
}
.sf-btn--success:hover:not(:disabled) {
  transform: translateY(-1px);
}
.sf-btn--ghost {
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid var(--sf-border-input);
  background: white;
  color: var(--sf-text-secondary);
  font-size: 13px;
}
.sf-btn--ghost:hover:not(:disabled) {
  border-color: var(--sf-violet-400);
  color: var(--sf-violet-400);
}
.sf-btn--outline-violet {
  height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--sf-violet-400);
  background: white;
  color: var(--sf-violet-400);
  font-size: 12px;
}
.sf-btn--outline-violet:hover:not(:disabled) {
  background: var(--sf-violet-400);
  color: white;
}
.sf-btn--outline-orange {
  height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--sf-orange-400);
  background: white;
  color: var(--sf-orange-600);
  font-size: 12px;
}
.sf-btn--outline-orange:hover:not(:disabled) {
  background: var(--sf-gradient-accent);
  color: white;
  border-color: transparent;
}
.sf-btn--glass {
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 12px;
}
.sf-btn--glass:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
}
.sf-btn--full {
  width: 100%;
}
.sf-field-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--sf-violet-800);
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}
.sf-field-required {
  color: var(--sf-pink-400);
}
.sf-field-input,
.sf-field-select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--sf-radius-md);
  border: 1px solid var(--sf-border-input);
  background: var(--sf-surface-input);
  font-size: 13px;
  color: var(--sf-text-primary);
  font-family: var(--sf-font-sans);
  transition: border-color 0.2s ease;
}
.sf-field-input::placeholder,
.sf-field-select::placeholder {
  color: var(--sf-text-placeholder);
}
.sf-field-input:focus,
.sf-field-select:focus {
  outline: none;
  border-color: var(--sf-violet-400);
  box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.1);
}
.sf-field-select {
  appearance: auto;
}
.sf-field-hint {
  font-size: 10px;
  color: var(--sf-text-tertiary);
  margin-top: 3px;
}
.sf-alert {
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.sf-alert--warning {
  background:
    linear-gradient(
      135deg,
      rgba(239, 159, 39, 0.1),
      rgba(212, 83, 126, 0.1));
  border: 1px solid rgba(239, 159, 39, 0.35);
  color: var(--sf-orange-800);
}
.sf-alert--info {
  background:
    linear-gradient(
      135deg,
      rgba(127, 119, 221, 0.08),
      rgba(239, 159, 39, 0.08));
  border: 1px solid rgba(127, 119, 221, 0.2);
  color: var(--sf-violet-800);
}
.sf-alert--info-blue {
  background:
    linear-gradient(
      135deg,
      rgba(55, 138, 221, 0.06),
      rgba(127, 119, 221, 0.06));
  border-left: 3px solid var(--sf-info);
  border-radius: 0 var(--sf-radius-sm) var(--sf-radius-sm) 0;
  color: #0C447C;
}
.sf-alert--success {
  background:
    linear-gradient(
      135deg,
      rgba(29, 158, 117, 0.08),
      rgba(15, 110, 86, 0.08));
  border: 1px solid rgba(29, 158, 117, 0.3);
  color: var(--sf-success-dark);
}
.sf-alert__title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.sf-alert__icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.sf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--sf-radius-pill);
  font-size: 12px;
  font-weight: 500;
}
.sf-pill--glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.sf-pill--step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 11px;
}
.sf-badge {
  display: inline-block;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.sf-badge--ht {
  background: #FCEBEB;
  color: #A32D2D;
}
.sf-badge--qc {
  background: #E6F1FB;
  color: #0C447C;
}
.sf-separator {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sf-separator::before,
.sf-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sf-border-input);
}
.sf-separator__text {
  font-size: 10px;
  color: var(--sf-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  white-space: nowrap;
}
.sf-progress {
  width: 100%;
  height: 4px;
  background: var(--sf-border-section);
  border-radius: 2px;
  overflow: hidden;
}
.sf-progress__fill {
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--sf-violet-400),
      var(--sf-orange-400));
  transition: width 0.3s ease;
}
.sf-section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--sf-violet-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.sf-info-box {
  padding: 10px 14px;
  background: var(--sf-surface-input);
  border: 1px solid var(--sf-border-input);
  border-radius: var(--sf-radius-md);
  font-size: 11px;
  color: var(--sf-text-secondary);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sf-glass-bg {
    padding: 20px 12px;
  }
  .sf-btn--primary-lg {
    height: 40px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .sf-glass-bg {
    padding: 16px 8px;
  }
}
@layer primeng;

/* node_modules/primeicons/primeicons.css */
@font-face {
  font-family: "primeicons";
  font-display: block;
  src: url("./media/primeicons.eot");
  src:
    url("./media/primeicons.eot?#iefix") format("embedded-opentype"),
    url("./media/primeicons.woff2") format("woff2"),
    url("./media/primeicons.woff") format("woff"),
    url("./media/primeicons.ttf") format("truetype"),
    url("./media/primeicons.svg?#primeicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.pi {
  font-family: "primeicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pi:before {
  --webkit-backface-visibility:hidden;
  backface-visibility: hidden;
}
.pi-fw {
  width: 1.28571429em;
  text-align: center;
}
.pi-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.pi-folder-plus:before {
  content: "\ea05";
}
.pi-receipt:before {
  content: "\ea06";
}
.pi-asterisk:before {
  content: "\ea07";
}
.pi-face-smile:before {
  content: "\ea08";
}
.pi-pinterest:before {
  content: "\ea09";
}
.pi-expand:before {
  content: "\ea0a";
}
.pi-pen-to-square:before {
  content: "\ea0b";
}
.pi-wave-pulse:before {
  content: "\ea0c";
}
.pi-turkish-lira:before {
  content: "\ea0d";
}
.pi-spinner-dotted:before {
  content: "\ea0e";
}
.pi-crown:before {
  content: "\ea0f";
}
.pi-pause-circle:before {
  content: "\ea10";
}
.pi-warehouse:before {
  content: "\ea11";
}
.pi-objects-column:before {
  content: "\ea12";
}
.pi-clipboard:before {
  content: "\ea13";
}
.pi-play-circle:before {
  content: "\ea14";
}
.pi-venus:before {
  content: "\ea15";
}
.pi-cart-minus:before {
  content: "\ea16";
}
.pi-file-plus:before {
  content: "\ea17";
}
.pi-microchip:before {
  content: "\ea18";
}
.pi-twitch:before {
  content: "\ea19";
}
.pi-building-columns:before {
  content: "\ea1a";
}
.pi-file-check:before {
  content: "\ea1b";
}
.pi-microchip-ai:before {
  content: "\ea1c";
}
.pi-trophy:before {
  content: "\ea1d";
}
.pi-barcode:before {
  content: "\ea1e";
}
.pi-file-arrow-up:before {
  content: "\ea1f";
}
.pi-mars:before {
  content: "\ea20";
}
.pi-tiktok:before {
  content: "\ea21";
}
.pi-arrow-up-right-and-arrow-down-left-from-center:before {
  content: "\ea22";
}
.pi-ethereum:before {
  content: "\ea23";
}
.pi-list-check:before {
  content: "\ea24";
}
.pi-thumbtack:before {
  content: "\ea25";
}
.pi-arrow-down-left-and-arrow-up-right-to-center:before {
  content: "\ea26";
}
.pi-equals:before {
  content: "\ea27";
}
.pi-lightbulb:before {
  content: "\ea28";
}
.pi-star-half:before {
  content: "\ea29";
}
.pi-address-book:before {
  content: "\ea2a";
}
.pi-chart-scatter:before {
  content: "\ea2b";
}
.pi-indian-rupee:before {
  content: "\ea2c";
}
.pi-star-half-fill:before {
  content: "\ea2d";
}
.pi-cart-arrow-down:before {
  content: "\ea2e";
}
.pi-calendar-clock:before {
  content: "\ea2f";
}
.pi-sort-up-fill:before {
  content: "\ea30";
}
.pi-sparkles:before {
  content: "\ea31";
}
.pi-bullseye:before {
  content: "\ea32";
}
.pi-sort-down-fill:before {
  content: "\ea33";
}
.pi-graduation-cap:before {
  content: "\ea34";
}
.pi-hammer:before {
  content: "\ea35";
}
.pi-bell-slash:before {
  content: "\ea36";
}
.pi-gauge:before {
  content: "\ea37";
}
.pi-shop:before {
  content: "\ea38";
}
.pi-headphones:before {
  content: "\ea39";
}
.pi-eraser:before {
  content: "\ea04";
}
.pi-stopwatch:before {
  content: "\ea01";
}
.pi-verified:before {
  content: "\ea02";
}
.pi-delete-left:before {
  content: "\ea03";
}
.pi-hourglass:before {
  content: "\e9fe";
}
.pi-truck:before {
  content: "\ea00";
}
.pi-wrench:before {
  content: "\e9ff";
}
.pi-microphone:before {
  content: "\e9fa";
}
.pi-megaphone:before {
  content: "\e9fb";
}
.pi-arrow-right-arrow-left:before {
  content: "\e9fc";
}
.pi-bitcoin:before {
  content: "\e9fd";
}
.pi-file-edit:before {
  content: "\e9f6";
}
.pi-language:before {
  content: "\e9f7";
}
.pi-file-export:before {
  content: "\e9f8";
}
.pi-file-import:before {
  content: "\e9f9";
}
.pi-file-word:before {
  content: "\e9f1";
}
.pi-gift:before {
  content: "\e9f2";
}
.pi-cart-plus:before {
  content: "\e9f3";
}
.pi-thumbs-down-fill:before {
  content: "\e9f4";
}
.pi-thumbs-up-fill:before {
  content: "\e9f5";
}
.pi-arrows-alt:before {
  content: "\e9f0";
}
.pi-calculator:before {
  content: "\e9ef";
}
.pi-sort-alt-slash:before {
  content: "\e9ee";
}
.pi-arrows-h:before {
  content: "\e9ec";
}
.pi-arrows-v:before {
  content: "\e9ed";
}
.pi-pound:before {
  content: "\e9eb";
}
.pi-prime:before {
  content: "\e9ea";
}
.pi-chart-pie:before {
  content: "\e9e9";
}
.pi-reddit:before {
  content: "\e9e8";
}
.pi-code:before {
  content: "\e9e7";
}
.pi-sync:before {
  content: "\e9e6";
}
.pi-shopping-bag:before {
  content: "\e9e5";
}
.pi-server:before {
  content: "\e9e4";
}
.pi-database:before {
  content: "\e9e3";
}
.pi-hashtag:before {
  content: "\e9e2";
}
.pi-bookmark-fill:before {
  content: "\e9df";
}
.pi-filter-fill:before {
  content: "\e9e0";
}
.pi-heart-fill:before {
  content: "\e9e1";
}
.pi-flag-fill:before {
  content: "\e9de";
}
.pi-circle:before {
  content: "\e9dc";
}
.pi-circle-fill:before {
  content: "\e9dd";
}
.pi-bolt:before {
  content: "\e9db";
}
.pi-history:before {
  content: "\e9da";
}
.pi-box:before {
  content: "\e9d9";
}
.pi-at:before {
  content: "\e9d8";
}
.pi-arrow-up-right:before {
  content: "\e9d4";
}
.pi-arrow-up-left:before {
  content: "\e9d5";
}
.pi-arrow-down-left:before {
  content: "\e9d6";
}
.pi-arrow-down-right:before {
  content: "\e9d7";
}
.pi-telegram:before {
  content: "\e9d3";
}
.pi-stop-circle:before {
  content: "\e9d2";
}
.pi-stop:before {
  content: "\e9d1";
}
.pi-whatsapp:before {
  content: "\e9d0";
}
.pi-building:before {
  content: "\e9cf";
}
.pi-qrcode:before {
  content: "\e9ce";
}
.pi-car:before {
  content: "\e9cd";
}
.pi-instagram:before {
  content: "\e9cc";
}
.pi-linkedin:before {
  content: "\e9cb";
}
.pi-send:before {
  content: "\e9ca";
}
.pi-slack:before {
  content: "\e9c9";
}
.pi-sun:before {
  content: "\e9c8";
}
.pi-moon:before {
  content: "\e9c7";
}
.pi-vimeo:before {
  content: "\e9c6";
}
.pi-youtube:before {
  content: "\e9c5";
}
.pi-flag:before {
  content: "\e9c4";
}
.pi-wallet:before {
  content: "\e9c3";
}
.pi-map:before {
  content: "\e9c2";
}
.pi-link:before {
  content: "\e9c1";
}
.pi-credit-card:before {
  content: "\e9bf";
}
.pi-discord:before {
  content: "\e9c0";
}
.pi-percentage:before {
  content: "\e9be";
}
.pi-euro:before {
  content: "\e9bd";
}
.pi-book:before {
  content: "\e9ba";
}
.pi-shield:before {
  content: "\e9b9";
}
.pi-paypal:before {
  content: "\e9bb";
}
.pi-amazon:before {
  content: "\e9bc";
}
.pi-phone:before {
  content: "\e9b8";
}
.pi-filter-slash:before {
  content: "\e9b7";
}
.pi-facebook:before {
  content: "\e9b4";
}
.pi-github:before {
  content: "\e9b5";
}
.pi-twitter:before {
  content: "\e9b6";
}
.pi-step-backward-alt:before {
  content: "\e9ac";
}
.pi-step-forward-alt:before {
  content: "\e9ad";
}
.pi-forward:before {
  content: "\e9ae";
}
.pi-backward:before {
  content: "\e9af";
}
.pi-fast-backward:before {
  content: "\e9b0";
}
.pi-fast-forward:before {
  content: "\e9b1";
}
.pi-pause:before {
  content: "\e9b2";
}
.pi-play:before {
  content: "\e9b3";
}
.pi-compass:before {
  content: "\e9ab";
}
.pi-id-card:before {
  content: "\e9aa";
}
.pi-ticket:before {
  content: "\e9a9";
}
.pi-file-o:before {
  content: "\e9a8";
}
.pi-reply:before {
  content: "\e9a7";
}
.pi-directions-alt:before {
  content: "\e9a5";
}
.pi-directions:before {
  content: "\e9a6";
}
.pi-thumbs-up:before {
  content: "\e9a3";
}
.pi-thumbs-down:before {
  content: "\e9a4";
}
.pi-sort-numeric-down-alt:before {
  content: "\e996";
}
.pi-sort-numeric-up-alt:before {
  content: "\e997";
}
.pi-sort-alpha-down-alt:before {
  content: "\e998";
}
.pi-sort-alpha-up-alt:before {
  content: "\e999";
}
.pi-sort-numeric-down:before {
  content: "\e99a";
}
.pi-sort-numeric-up:before {
  content: "\e99b";
}
.pi-sort-alpha-down:before {
  content: "\e99c";
}
.pi-sort-alpha-up:before {
  content: "\e99d";
}
.pi-sort-alt:before {
  content: "\e99e";
}
.pi-sort-amount-up:before {
  content: "\e99f";
}
.pi-sort-amount-down:before {
  content: "\e9a0";
}
.pi-sort-amount-down-alt:before {
  content: "\e9a1";
}
.pi-sort-amount-up-alt:before {
  content: "\e9a2";
}
.pi-palette:before {
  content: "\e995";
}
.pi-undo:before {
  content: "\e994";
}
.pi-desktop:before {
  content: "\e993";
}
.pi-sliders-v:before {
  content: "\e991";
}
.pi-sliders-h:before {
  content: "\e992";
}
.pi-search-plus:before {
  content: "\e98f";
}
.pi-search-minus:before {
  content: "\e990";
}
.pi-file-excel:before {
  content: "\e98e";
}
.pi-file-pdf:before {
  content: "\e98d";
}
.pi-check-square:before {
  content: "\e98c";
}
.pi-chart-line:before {
  content: "\e98b";
}
.pi-user-edit:before {
  content: "\e98a";
}
.pi-exclamation-circle:before {
  content: "\e989";
}
.pi-android:before {
  content: "\e985";
}
.pi-google:before {
  content: "\e986";
}
.pi-apple:before {
  content: "\e987";
}
.pi-microsoft:before {
  content: "\e988";
}
.pi-heart:before {
  content: "\e984";
}
.pi-mobile:before {
  content: "\e982";
}
.pi-tablet:before {
  content: "\e983";
}
.pi-key:before {
  content: "\e981";
}
.pi-shopping-cart:before {
  content: "\e980";
}
.pi-comments:before {
  content: "\e97e";
}
.pi-comment:before {
  content: "\e97f";
}
.pi-briefcase:before {
  content: "\e97d";
}
.pi-bell:before {
  content: "\e97c";
}
.pi-paperclip:before {
  content: "\e97b";
}
.pi-share-alt:before {
  content: "\e97a";
}
.pi-envelope:before {
  content: "\e979";
}
.pi-volume-down:before {
  content: "\e976";
}
.pi-volume-up:before {
  content: "\e977";
}
.pi-volume-off:before {
  content: "\e978";
}
.pi-eject:before {
  content: "\e975";
}
.pi-money-bill:before {
  content: "\e974";
}
.pi-images:before {
  content: "\e973";
}
.pi-image:before {
  content: "\e972";
}
.pi-sign-in:before {
  content: "\e970";
}
.pi-sign-out:before {
  content: "\e971";
}
.pi-wifi:before {
  content: "\e96f";
}
.pi-sitemap:before {
  content: "\e96e";
}
.pi-chart-bar:before {
  content: "\e96d";
}
.pi-camera:before {
  content: "\e96c";
}
.pi-dollar:before {
  content: "\e96b";
}
.pi-lock-open:before {
  content: "\e96a";
}
.pi-table:before {
  content: "\e969";
}
.pi-map-marker:before {
  content: "\e968";
}
.pi-list:before {
  content: "\e967";
}
.pi-eye-slash:before {
  content: "\e965";
}
.pi-eye:before {
  content: "\e966";
}
.pi-folder-open:before {
  content: "\e964";
}
.pi-folder:before {
  content: "\e963";
}
.pi-video:before {
  content: "\e962";
}
.pi-inbox:before {
  content: "\e961";
}
.pi-lock:before {
  content: "\e95f";
}
.pi-unlock:before {
  content: "\e960";
}
.pi-tags:before {
  content: "\e95d";
}
.pi-tag:before {
  content: "\e95e";
}
.pi-power-off:before {
  content: "\e95c";
}
.pi-save:before {
  content: "\e95b";
}
.pi-question-circle:before {
  content: "\e959";
}
.pi-question:before {
  content: "\e95a";
}
.pi-copy:before {
  content: "\e957";
}
.pi-file:before {
  content: "\e958";
}
.pi-clone:before {
  content: "\e955";
}
.pi-calendar-times:before {
  content: "\e952";
}
.pi-calendar-minus:before {
  content: "\e953";
}
.pi-calendar-plus:before {
  content: "\e954";
}
.pi-ellipsis-v:before {
  content: "\e950";
}
.pi-ellipsis-h:before {
  content: "\e951";
}
.pi-bookmark:before {
  content: "\e94e";
}
.pi-globe:before {
  content: "\e94f";
}
.pi-replay:before {
  content: "\e94d";
}
.pi-filter:before {
  content: "\e94c";
}
.pi-print:before {
  content: "\e94b";
}
.pi-align-right:before {
  content: "\e946";
}
.pi-align-left:before {
  content: "\e947";
}
.pi-align-center:before {
  content: "\e948";
}
.pi-align-justify:before {
  content: "\e949";
}
.pi-cog:before {
  content: "\e94a";
}
.pi-cloud-download:before {
  content: "\e943";
}
.pi-cloud-upload:before {
  content: "\e944";
}
.pi-cloud:before {
  content: "\e945";
}
.pi-pencil:before {
  content: "\e942";
}
.pi-users:before {
  content: "\e941";
}
.pi-clock:before {
  content: "\e940";
}
.pi-user-minus:before {
  content: "\e93e";
}
.pi-user-plus:before {
  content: "\e93f";
}
.pi-trash:before {
  content: "\e93d";
}
.pi-external-link:before {
  content: "\e93c";
}
.pi-window-maximize:before {
  content: "\e93b";
}
.pi-window-minimize:before {
  content: "\e93a";
}
.pi-refresh:before {
  content: "\e938";
}
.pi-user:before {
  content: "\e939";
}
.pi-exclamation-triangle:before {
  content: "\e922";
}
.pi-calendar:before {
  content: "\e927";
}
.pi-chevron-circle-left:before {
  content: "\e928";
}
.pi-chevron-circle-down:before {
  content: "\e929";
}
.pi-chevron-circle-right:before {
  content: "\e92a";
}
.pi-chevron-circle-up:before {
  content: "\e92b";
}
.pi-angle-double-down:before {
  content: "\e92c";
}
.pi-angle-double-left:before {
  content: "\e92d";
}
.pi-angle-double-right:before {
  content: "\e92e";
}
.pi-angle-double-up:before {
  content: "\e92f";
}
.pi-angle-down:before {
  content: "\e930";
}
.pi-angle-left:before {
  content: "\e931";
}
.pi-angle-right:before {
  content: "\e932";
}
.pi-angle-up:before {
  content: "\e933";
}
.pi-upload:before {
  content: "\e934";
}
.pi-download:before {
  content: "\e956";
}
.pi-ban:before {
  content: "\e935";
}
.pi-star-fill:before {
  content: "\e936";
}
.pi-star:before {
  content: "\e937";
}
.pi-chevron-left:before {
  content: "\e900";
}
.pi-chevron-right:before {
  content: "\e901";
}
.pi-chevron-down:before {
  content: "\e902";
}
.pi-chevron-up:before {
  content: "\e903";
}
.pi-caret-left:before {
  content: "\e904";
}
.pi-caret-right:before {
  content: "\e905";
}
.pi-caret-down:before {
  content: "\e906";
}
.pi-caret-up:before {
  content: "\e907";
}
.pi-search:before {
  content: "\e908";
}
.pi-check:before {
  content: "\e909";
}
.pi-check-circle:before {
  content: "\e90a";
}
.pi-times:before {
  content: "\e90b";
}
.pi-times-circle:before {
  content: "\e90c";
}
.pi-plus:before {
  content: "\e90d";
}
.pi-plus-circle:before {
  content: "\e90e";
}
.pi-minus:before {
  content: "\e90f";
}
.pi-minus-circle:before {
  content: "\e910";
}
.pi-circle-on:before {
  content: "\e911";
}
.pi-circle-off:before {
  content: "\e912";
}
.pi-sort-down:before {
  content: "\e913";
}
.pi-sort-up:before {
  content: "\e914";
}
.pi-sort:before {
  content: "\e915";
}
.pi-step-backward:before {
  content: "\e916";
}
.pi-step-forward:before {
  content: "\e917";
}
.pi-th-large:before {
  content: "\e918";
}
.pi-arrow-down:before {
  content: "\e919";
}
.pi-arrow-left:before {
  content: "\e91a";
}
.pi-arrow-right:before {
  content: "\e91b";
}
.pi-arrow-up:before {
  content: "\e91c";
}
.pi-bars:before {
  content: "\e91d";
}
.pi-arrow-circle-down:before {
  content: "\e91e";
}
.pi-arrow-circle-left:before {
  content: "\e91f";
}
.pi-arrow-circle-right:before {
  content: "\e920";
}
.pi-arrow-circle-up:before {
  content: "\e921";
}
.pi-info:before {
  content: "\e923";
}
.pi-info-circle:before {
  content: "\e924";
}
.pi-home:before {
  content: "\e925";
}
.pi-spinner:before {
  content: "\e926";
}

/* src/styles.css */
:root {
  --breakpoint-xs: 640px;
  --breakpoint-sm: 768px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1280px;
  --breakpoint-xl: 1400px;
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --secondary-color: #059669;
  --bg-ground: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-overlay: rgba(255, 255, 255, 0.9);
  --bg-page:
    linear-gradient(
      135deg,
      #f0f9ff 0%,
      #f5f3ff 100%);
  --bg-muted: #f8fafc;
  --bg-hover: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-on-primary: #ffffff;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --primary-gradient:
    linear-gradient(
      135deg,
      #2563eb 0%,
      #059669 100%);
  --header-gradient:
    linear-gradient(
      135deg,
      #8b5cf6 0%,
      #7c3aed 100%);
  --summary-gradient:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #4c1d95 50%,
      #8b5cf6 100%);
  --sidebar-gradient:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%);
  --sidebar-bg: #ffffff;
  --sidebar-text: #334155;
  --sidebar-border: #e2e8f0;
  --topbar-bg: #ffffff;
  --topbar-text: #0f172a;
  --topbar-item-bg: rgba(15, 23, 42, 0.05);
  --topbar-item-border: rgba(15, 23, 42, 0.1);
  --topbar-item-hover: rgba(15, 23, 42, 0.08);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-card: 0 1px 3px rgba(30, 41, 59, 0.1);
  --success-bg: #dcfce7;
  --success-text: #166534;
  --warning-bg: #fef3c7;
  --warning-text: #92400e;
  --error-bg: #fee2e2;
  --error-text: #991b1b;
  --info-bg: #dbeafe;
  --info-text: #1e40af;
}
:root.dark {
  --primary-color: #6366f1;
  --primary-dark: #4338ca;
  --primary-light: #818cf8;
  --secondary-color: #a855f7;
  --bg-ground: #020617;
  --bg-surface: #1e293b;
  --bg-overlay: rgba(30, 41, 59, 0.9);
  --bg-page:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e1b4b 100%);
  --bg-muted: #0f172a;
  --bg-hover: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-on-primary: #ffffff;
  --text-muted: #64748b;
  --border-color: #334155;
  --border-light: #1e293b;
  --primary-gradient:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e1b4b 100%);
  --header-gradient:
    linear-gradient(
      135deg,
      #6366f1 0%,
      #4338ca 100%);
  --summary-gradient:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #312e81 50%,
      #6366f1 100%);
  --sidebar-gradient:
    linear-gradient(
      180deg,
      #0f172a 0%,
      #1e1b4b 100%);
  --sidebar-bg: #0f172a;
  --sidebar-text: #cbd5e1;
  --sidebar-border: rgba(255, 255, 255, 0.05);
  --topbar-bg: var(--primary-gradient);
  --topbar-text: #ffffff;
  --topbar-item-bg: rgba(255, 255, 255, 0.1);
  --topbar-item-border: rgba(255, 255, 255, 0.2);
  --topbar-item-hover: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
  --success-bg: rgba(34, 197, 94, 0.2);
  --success-text: #4ade80;
  --warning-bg: rgba(245, 158, 11, 0.2);
  --warning-text: #fbbf24;
  --error-bg: rgba(239, 68, 68, 0.2);
  --error-text: #f87171;
  --info-bg: rgba(59, 130, 246, 0.2);
  --info-text: #60a5fa;
}
body[data-theme=midnight] {
  --h-bg: #0F172A;
  --h-border: rgba(255,255,255,.08);
  --h-text: #F1F5F9;
  --h-text2: #94A3B8;
  --h-text3: #64748B;
  --h-hover: rgba(255,255,255,.06);
  --h-active: rgba(99,102,241,.15);
  --h-accent: #818CF8;
  --h-drop-bg: #1E293B;
  --h-drop-border: rgba(255,255,255,.08);
  --h-drop-hover: rgba(255,255,255,.05);
  --h-badge-bg: rgba(99,102,241,.15);
  --h-badge-text: #A5B4FC;
  --h-search-bg: rgba(255,255,255,.06);
  --h-notif: #F43F5E;
  --body-bg: #0B1120;
  --c-text: #CBD5E1;
  --bg-ground: #0B1120;
  --bg-surface: #1E293B;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border-color: #334155;
  --bg-hover: #334155;
  --shadow-card: 0 1px 3px rgba(0,0,0,.3);
}
body[data-theme=snow] {
  --h-bg: #FFFFFF;
  --h-border: #E2E8F0;
  --h-text: #0F172A;
  --h-text2: #64748B;
  --h-text3: #94A3B8;
  --h-hover: #F1F5F9;
  --h-active: #EEF2FF;
  --h-accent: #6366F1;
  --h-drop-bg: #FFFFFF;
  --h-drop-border: #E2E8F0;
  --h-drop-hover: #F8FAFC;
  --h-badge-bg: #EEF2FF;
  --h-badge-text: #6366F1;
  --h-search-bg: #F1F5F9;
  --h-notif: #EF4444;
  --body-bg: #F1F5F9;
  --c-text: #475569;
  --bg-ground: #F1F5F9;
  --bg-surface: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border-color: #E2E8F0;
  --bg-hover: #F1F5F9;
  --shadow-card: 0 1px 3px rgba(30,41,59,.1);
}
body[data-theme=warm] {
  --h-bg: #1C1917;
  --h-border: rgba(255,255,255,.07);
  --h-text: #F5F5F4;
  --h-text2: #A8A29E;
  --h-text3: #78716C;
  --h-hover: rgba(255,255,255,.05);
  --h-active: rgba(245,158,11,.12);
  --h-accent: #FBBF24;
  --h-drop-bg: #292524;
  --h-drop-border: rgba(255,255,255,.07);
  --h-drop-hover: rgba(255,255,255,.04);
  --h-badge-bg: rgba(245,158,11,.12);
  --h-badge-text: #FCD34D;
  --h-search-bg: rgba(255,255,255,.06);
  --h-notif: #F43F5E;
  --body-bg: #1C1917;
  --c-text: #A8A29E;
  --bg-ground: #1C1917;
  --bg-surface: #292524;
  --text-primary: #F5F5F4;
  --text-secondary: #A8A29E;
  --text-muted: #78716C;
  --border-color: #44403C;
  --bg-hover: #44403C;
  --shadow-card: 0 1px 3px rgba(0,0,0,.3);
}
body[data-theme=ocean] {
  --h-bg: #042F2E;
  --h-border: rgba(255,255,255,.08);
  --h-text: #F0FDFA;
  --h-text2: #5EEAD4;
  --h-text3: #2DD4BF;
  --h-hover: rgba(255,255,255,.05);
  --h-active: rgba(20,184,166,.15);
  --h-accent: #2DD4BF;
  --h-drop-bg: #0D3D3B;
  --h-drop-border: rgba(255,255,255,.08);
  --h-drop-hover: rgba(255,255,255,.04);
  --h-badge-bg: rgba(20,184,166,.15);
  --h-badge-text: #5EEAD4;
  --h-search-bg: rgba(255,255,255,.06);
  --h-notif: #FB7185;
  --body-bg: #021B1A;
  --c-text: #99F6E4;
  --bg-ground: #021B1A;
  --bg-surface: #0D3D3B;
  --text-primary: #F0FDFA;
  --text-secondary: #5EEAD4;
  --text-muted: #2DD4BF;
  --border-color: #115E59;
  --bg-hover: #115E59;
  --shadow-card: 0 1px 3px rgba(0,0,0,.3);
}
body[data-theme=lavender] {
  --h-bg: #FAF5FF;
  --h-border: #E9D5FF;
  --h-text: #2E1065;
  --h-text2: #7C3AED;
  --h-text3: #A78BFA;
  --h-hover: #F3E8FF;
  --h-active: #EDE9FE;
  --h-accent: #7C3AED;
  --h-drop-bg: #FEFBFF;
  --h-drop-border: #E9D5FF;
  --h-drop-hover: #F5F3FF;
  --h-badge-bg: #EDE9FE;
  --h-badge-text: #7C3AED;
  --h-search-bg: #F3E8FF;
  --h-notif: #E11D48;
  --body-bg: #F5F3FF;
  --c-text: #6D28D9;
  --bg-ground: #F5F3FF;
  --bg-surface: #FFFFFF;
  --text-primary: #2E1065;
  --text-secondary: #7C3AED;
  --text-muted: #A78BFA;
  --border-color: #E9D5FF;
  --bg-hover: #F3E8FF;
  --shadow-card: 0 1px 3px rgba(124,58,237,.1);
}
body {
  margin: 0;
  padding: 0;
  font-family:
    "Manrope",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-ground);
  color: var(--text-primary);
  overflow: auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #667eea var(--bg-muted, #f1f5f9);
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg-muted, #f1f5f9);
  border-radius: 10px;
  margin: 2px;
}
::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      180deg,
      #667eea 0%,
      #764ba2 100%);
  border-radius: 10px;
  border: 2px solid var(--bg-muted, #f1f5f9);
  min-height: 40px;
}
::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      #764ba2 0%,
      #667eea 100%);
  border-color: var(--border-color, #e2e8f0);
}
::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(
      180deg,
      #5a67d8 0%,
      #6b46c1 100%);
}
::-webkit-scrollbar-corner {
  background: var(--bg-muted, #f1f5f9);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-out;
}
.p-menu {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}
.p-menu .p-menuitem-link {
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.p-menu .p-menuitem-link:not(.p-disabled):hover {
  background: var(--bg-ground);
  color: var(--primary-color);
}
.p-menu .p-menuitem-link:focus {
  box-shadow: none;
  outline: 2px solid var(--primary-light);
  outline-offset: -2px;
}
.p-menu .p-menuitem-icon {
  color: var(--text-secondary);
  margin-right: 0.75rem;
}
.p-menu .p-menuitem-link:hover .p-menuitem-icon {
  color: var(--primary-color);
}
.p-menu .p-menuitem-text {
  color: var(--text-primary);
  font-size: 0.875rem;
}
.p-menu .p-menu-separator {
  border-top: 1px solid var(--border-color);
  margin: 0.5rem 0;
}
.p-menu .user-menu-header .p-menuitem-link {
  background: var(--bg-ground);
  pointer-events: none;
}
.p-menu .user-menu-header .p-menuitem-text {
  font-weight: 600;
  color: var(--text-primary);
}
.p-menu .user-menu-email .p-menuitem-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.p-menu .user-menu-logout .p-menuitem-link {
  color: #ef4444;
}
.p-menu .user-menu-logout .p-menuitem-link:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.p-menu .user-menu-logout .p-menuitem-icon {
  color: #ef4444;
}
.p-dropdown-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.p-dropdown-panel .p-dropdown-items .p-dropdown-item {
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}
.p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-disabled):hover {
  background: var(--bg-ground);
  color: var(--primary-color);
}
.p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight {
  background: var(--primary-color);
  color: var(--text-on-primary);
}
input,
select,
textarea,
.p-inputtext,
.p-dropdown,
.p-calendar,
.p-multiselect,
.p-inputnumber-input {
  background-color: var(--bg-surface) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
  transition: all 0.2s ease;
  border-radius: 8px !important;
}
select option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}
input::placeholder,
textarea::placeholder,
.p-inputtext::placeholder {
  color: var(--text-secondary) !important;
}
input:hover,
select:hover,
textarea:hover,
.p-inputtext:hover,
.p-dropdown:not(.p-disabled):hover,
.p-multiselect:not(.p-disabled):hover,
.p-inputnumber-input:hover {
  border-color: var(--primary-color) !important;
}
input:focus,
select:focus,
textarea:focus,
.p-inputtext:focus,
.p-dropdown.p-focus,
.p-multiselect.p-focus,
.p-inputnumber-input:focus {
  background-color: var(--bg-surface) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2) !important;
  outline: none;
}
:root.dark input:focus,
:root.dark select:focus,
:root.dark textarea:focus,
:root.dark .p-inputtext:focus {
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2) !important;
}
:root.dark .page-layout,
:root.dark .form-page,
:root.dark .page-container,
:root.dark .master-detail-layout {
  background: var(--bg-page) !important;
}
:root.dark .list-panel,
:root.dark .detail-panel,
:root.dark .form-card,
:root.dark .modal-content,
:root.dark .modal-body,
:root.dark .inline-panel,
:root.dark .periods-panel,
:root.dark .p-dialog-content,
:root.dark .p-dialog-header,
:root.dark .p-dialog-footer {
  background-color: var(--bg-surface) !important;
  color: var(--text-primary) !important;
}
:root.dark .modal-overlay .modal-content,
:root.dark .p-dialog {
  background-color: var(--bg-surface) !important;
  border-color: var(--border-color) !important;
}
:root.dark .modal-header,
:root.dark .modal-footer,
:root.dark .detail-header,
:root.dark .card-title,
:root.dark .periods-header,
:root.dark .page-header {
  background-color: var(--bg-hover) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
}
:root.dark h1,
:root.dark h2,
:root.dark h3,
:root.dark h4,
:root.dark h5,
:root.dark h6 {
  color: var(--text-primary);
}
:root.dark .form-group label {
  color: var(--text-primary) !important;
}
:root.dark .empty-state,
:root.dark .loading-spinner {
  color: var(--text-secondary) !important;
}
:root.dark .detail-meta {
  color: var(--text-secondary) !important;
}
:root.dark .data-table tbody {
  background-color: var(--bg-surface);
}
:root.dark .data-table tbody td,
:root.dark .lines-table td,
:root.dark .inner-table td {
  border-bottom-color: var(--border-color) !important;
  color: var(--text-primary) !important;
}
:root.dark .data-table tbody tr:hover,
:root.dark .lines-table tbody tr:hover {
  background-color: var(--bg-hover) !important;
}
:root.dark .data-table tfoot td,
:root.dark .lines-table tfoot td {
  background-color: var(--bg-hover) !important;
  border-top-color: var(--border-color) !important;
}
:root.dark .detail-totals {
  background-color: var(--bg-hover) !important;
}
:root.dark .list-header,
:root.dark .filters-bar {
  background-color: var(--bg-surface) !important;
  border-color: var(--border-color) !important;
}
:root.dark .btn-outline-action,
:root.dark .btn-back {
  background: var(--bg-surface) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
}
:root.dark .p-component {
  color: var(--text-primary);
}
:root.dark .p-datatable .p-datatable-tbody > tr {
  background-color: var(--bg-surface) !important;
  color: var(--text-primary) !important;
}
:root.dark .p-datatable .p-datatable-tbody > tr:hover {
  background-color: var(--bg-hover) !important;
}
:root.dark .p-tabview .p-tabview-nav,
:root.dark .p-tabview .p-tabview-panels,
:root.dark .p-card,
:root.dark .p-toolbar {
  background-color: var(--bg-surface) !important;
  color: var(--text-primary) !important;
}
:root.dark .p-toolbar,
:root.dark .p-paginator {
  border-color: var(--border-color) !important;
}
:root.dark .p-paginator {
  background-color: var(--bg-surface) !important;
  color: var(--text-primary) !important;
}
@media print {
  app-topbar,
  .fab-wrapper,
  app-confirmation-dialog,
  .no-print {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  .app-container {
    display: block !important;
  }
  .main-content {
    padding: 0 !important;
    margin: 0 !important;
  }
  body {
    background: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  @page {
    margin: 0;
    size: A4;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
