@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap");@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-stretch: normal;
  src: url(/assets/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbFmUiAw-CnAg2DeQ.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(/assets/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabVmUiAw-CoAZ_DKt.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(/assets/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiAw-BG9VWE5v.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  src: url(/assets/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bVmUiAw-D0406B4n.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(/assets/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjalmUiAw-k1h7X_-h.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  src: url(/assets/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtalmUiAw-B7du-70m.woff) format('woff');
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ-D-x-0Q06.woff2') format('woff2'), url('/assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNa-OUIwM9U8.woff') format('woff');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

@media print {
  /* Hide app chrome/toolbars when printing */
  .q-editor__toolbar {
    display: none !important;
  }
  /* Force page breaks where requested */
  .page-break {
    break-after: page;
    page-break-after: always;
    height: 0;
    overflow: hidden;
  }
  @page {
    margin: 12mm;
  }
}
body {
  font-family: "Comfortaa", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}
:root {
  /* Light Theme Variables */
  --primary-green: #2E7D32;
  --accent-red: #eb5757;
  --neutral-gray: #e0e0e0;
  --text-color: #000000;
  --card-bg: #ffffff;
  --shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 16px;
  --blur-bg: rgba(248, 248, 248, 0.6);
  --background-color: #ffffff;
}
/* Dark Theme (Dia Browser Style) */
.body--dark {
  --primary-green: #2E7D32;
  /* Keep green as primary */
  --accent-red: #eb5757;
  --neutral-gray: #333333;
  --text-color: #e8e6e3;
  /* Dia browser text color */
  --card-bg: #232527;
  /* Slightly lighter than background */
  --shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  --border-radius: 16px;
  --blur-bg: rgba(24, 26, 27, 0.6);
  --background-color: #181a1b;
  /* Dia browser background */
}
.bg-grey-1 {
  background-color: var(--neutral-gray) !important;
}
.transparent-blur-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--blur-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.q-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 16px;
  color: var(--text-color);
}
.q-btn {
  border-radius: 12px;
  padding: 10px 18px;
  text-transform: none;
}
/* Make filled buttons green */
.q-btn--standard.q-btn--filled {
  background-color: var(--primary-green) !important;
  color: white !important;
}
/* Make outlined buttons green */
.q-btn--standard.q-btn--outline {
  color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
}
/* All buttons with primary class should be green */
.q-btn--primary {
  color: var(--primary-green) !important;
}
/* Ensure primary filled buttons have white text */
.q-btn--primary.q-btn--filled {
  background-color: var(--primary-green) !important;
  color: white !important;
}
.q-toolbar {
  background: var(--primary-bg);
  box-shadow: var(--shadow);
}
.primary-green {
  background: var(--primary-green);
  color: white;
  border-radius: var(--border-radius);
}
.accent-red {
  background: var(--accent-red);
  color: white;
  border-radius: var(--border-radius);
}
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--shadow);
  color: var(--text-color);
}
.body--dark .glass-card {
  background: rgba(35, 37, 39, 0.6);
}
.glass-effect {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px;
  color: var(--text-color);
}
.body--dark .glass-effect {
  background: rgba(35, 37, 39, 0.6);
}
.transparent-card {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}
.body--dark .transparent-card {
  background-color: rgba(35, 37, 39, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
:root {
  --inventory-accent: var(--primary-green);
  --inventory-accent-light: #4CAF50;
  --inventory-accent-lighter: #E8F5E8;
  --inventory-text-primary: var(--text-color);
  --inventory-text-secondary: #757575;
  --inventory-border: #BDBDBD;
  --inventory-border-light: var(--neutral-gray);
}
.inv-stat-card {
  border-left: 4px solid var(--inventory-accent) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid var(--inventory-border-light) !important;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.08) !important;
  min-height: 100px;
}
.inv-stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.15) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f1f8f9 100%) !important;
}
.inv-stat-card .q-card__section {
  padding: 20px !important;
}
.inv-stat-card .text-h6 {
  color: var(--inventory-text-primary) !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  letter-spacing: 0.025em !important;
}
.inv-stat-card .text-subtitle2 {
  color: var(--inventory-text-secondary) !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.01em !important;
}
.inv-stat-card .q-icon {
  opacity: 0.8 !important;
}
.inv-page-header {
  margin-bottom: 24px !important;
}
.inv-page-header .text-h4 {
  color: var(--inventory-text-primary) !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.025em !important;
  line-height: 1.3 !important;
}
.inv-page-header .text-subtitle1 {
  color: var(--inventory-text-secondary) !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  letter-spacing: 0.01em !important;
}
.inv-page-header .q-icon {
  color: var(--inventory-accent) !important;
  margin-right: 12px !important;
}
.inv-filter-card {
  border-radius: 12px !important;
  border: 1px solid var(--inventory-border-light) !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}
.inv-filter-card .q-card__section {
  padding: 20px !important;
}
.inv-filter-card .q-input .q-field__control {
  border-radius: 8px !important;
}
.inv-filter-card .q-btn {
  border-radius: 8px !important;
  font-weight: 500 !important;
  letter-spacing: 0.025em !important;
}
.inv-section-label {
  color: var(--inventory-text-secondary) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 16px !important;
}
.inv-table .q-table {
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}
.inv-table .q-table thead th {
  background: linear-gradient(135deg, var(--inventory-accent-lighter) 0%, #ffffff 100%) !important;
  color: var(--inventory-text-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 0.025em !important;
  border-bottom: 2px solid var(--inventory-accent) !important;
}
.inv-table .q-table tbody td {
  border-bottom: 1px solid var(--inventory-border-light) !important;
  padding: 12px 16px !important;
}
.inv-table .q-table tbody tr:hover {
  background: var(--inventory-accent-lighter) !important;
}
.inv-nav-bar .q-tabs {
  background: linear-gradient(135deg, #ffffff 0%, var(--inventory-accent-lighter) 100%) !important;
  border-radius: 12px 12px 0 0 !important;
}
.inv-nav-bar .q-tabs .q-tab {
  font-weight: 500 !important;
  letter-spacing: 0.025em !important;
  border-radius: 8px 8px 0 0 !important;
  margin-right: 4px !important;
}
.inv-nav-bar .q-tabs .q-tab__indicator {
  background: var(--inventory-accent) !important;
}
.inv-nav-bar .q-tabs .q-tab--active {
  background: #ffffff !important;
  color: var(--inventory-accent) !important;
  font-weight: 600 !important;
}
.inv-nav-bar .q-btn {
  border-radius: 8px !important;
  font-weight: 500 !important;
}
.inv-quick-actions .q-btn {
  border-radius: 8px !important;
  font-weight: 500 !important;
  letter-spacing: 0.025em !important;
  transition: all 0.3s ease !important;
}
.inv-quick-actions .q-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.2) !important;
}
.inv-page-container {
  background: #fafbfc !important;
  min-height: 100vh !important;
}
.inv-breadcrumbs .q-breadcrumbs__el {
  color: var(--inventory-text-secondary) !important;
  font-weight: 500 !important;
}
.inv-breadcrumbs .q-breadcrumbs__el--active {
  color: var(--inventory-accent) !important;
  font-weight: 600 !important;
}
.inv-expansion-header {
  border-left: 4px solid var(--inventory-accent) !important;
  background-color: rgba(46, 125, 50, 0.05) !important;
}
.inv-expansion-header .q-item__label {
  color: var(--inventory-accent) !important;
}
.inv-expansion-header .q-icon {
  color: var(--inventory-accent) !important;
}
.inv-submenu-item {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.inv-submenu-item:hover {
  background-color: rgba(46, 125, 50, 0.04) !important;
  color: var(--inventory-accent);
}
.inv-submenu-item--active {
  background-color: rgba(46, 125, 50, 0.08) !important;
  color: var(--inventory-accent) !important;
  border-left: 4px solid var(--inventory-accent);
  font-weight: 500;
}
.inv-submenu-item--active .q-icon {
  color: var(--inventory-accent) !important;
}
@media (max-width: 600px) {
  .inv-stat-card {
    margin-bottom: 16px !important;
  }
  .inv-stat-card .q-card__section {
    padding: 16px !important;
  }
  .inv-page-header {
    text-align: center !important;
  }
  .inv-page-header .col-auto {
    margin-top: 16px !important;
  }
}:root {
  --calendar-border: #e0e0e0 1px solid;
  --calendar-border-dark: #71755d 1px solid;
  --calendar-border-section: #e0e0e0 1px dashed;
  --calendar-border-section-dark: #71755d 1px dashed;
  --calendar-border-current: #027BE3 2px solid;
  --calendar-border-current-dark: #ffff66 2px solid;
  --calendar-mini-range-connector-hover-border: #027BE3 1px dashed;
  --calendar-mini-range-connector-hover-border-dark: #ffff66 1px dashed;
  --calendar-color: #606c71;
  --calendar-color-dark: #fafafa;
  --calendar-background: #ffffff;
  --calendar-background-dark: #121212;
  --calendar-current-color: #027BE3;
  --calendar-current-color-dark: #ffff66;
  --calendar-current-background: #00000000;
  --calendar-current-background-dark: #121212;
  --calendar-disabled-date-color: #a1a1a1;
  --calendar-disabled-date-color-dark: #bebebe;
  --calendar-disabled-date-background: #ffffff;
  --calendar-disabled-date-background-dark: #121212;
  --calendar-active-date-color: #027BE3FF;
  --calendar-active-date-color-dark: #cce7ffff;
  --calendar-active-date-background: #cce7ffff;
  --calendar-active-date-background-dark: #027BE3FF;
  --calendar-outside-color: #606c71;
  --calendar-outside-color-dark: #bebebe;
  --calendar-outside-background: #00000000;
  --calendar-outside-background-dark: #121212;
  --calendar-selected-color: #027BE3;
  --calendar-selected-color-dark: #027BE3;
  --calendar-selected-background: #cce7ff;
  --calendar-selected-background-dark: #cce7ff;
  --calendar-mini-selected-color: #027BE3;
  --calendar-mini-selected-color-dark: #027BE3;
  --calendar-mini-selected-background: #00000000;
  --calendar-mini-selected-background-dark: #00000000;
  --calendar-mini-selected-label-color: #027BE3;
  --calendar-mini-selected-label-color-dark: #cce7ff;
  --calendar-mini-selected-label-background: #cce7ff;
  --calendar-mini-selected-label-background-dark: #027BE3;
  --calendar-range-color: #027BE3;
  --calendar-range-color-dark: #027BE3;
  --calendar-range-background: #cce7ff;
  --calendar-range-background-dark: #cce7ff;
  --calendar-mini-range-color: #cce7ff;
  --calendar-mini-range-color-dark: #027BE3;
  --calendar-mini-range-background: #00000000;
  --calendar-mini-range-background-dark: #00000000;
  --calendar-mini-range-label-color: #cce7ff;
  --calendar-mini-range-label-color-dark: #027BE3;
  --calendar-mini-range-label-background: #cce7ff;
  --calendar-mini-range-label-background-dark: #cce7ff;
  --calendar-mini-range-connector-color: #cce7ff;
  --calendar-mini-range-connector-color-dark: #ffff66;
  --calendar-mini-range-hover-color: #027BE3;
  --calendar-mini-range-hover-color-dark: #ffff66;
  --calendar-mini-range-firstlast-color: #cce7ff;
  --calendar-mini-range-firstlast-color-dark: #cce7ff;
  --calendar-mini-range-firstlast-background: #00000000;
  --calendar-mini-range-firstlast-background-dark: #cce7ff;
  --calendar-mini-range-firstlast-label-color: #cce7ff;
  --calendar-mini-range-firstlast-label-color-dark: #cce7ff;
  --calendar-mini-range-firstlast-label-background: #027BE3;
  --calendar-mini-range-firstlast-label-background-dark: #ffff66;
  --calendar-scrollbar-width-height: 10px;
  --calendar-scrollbar-track: #eeeeee;
  --calendar-scrollbar-thumb: #888888;
  --calendar-scrollbar-thumb-hover: #555555;
  --calendar-scrollbar-track-dark: #eeeeee;
  --calendar-scrollbar-thumb-dark: #888888;
  --calendar-scrollbar-thumb-hover-dark: #555555;
  --calendar-intervals-width: 56px;
  --calendar-resources-width: 100px;
  --calendar-work-week-width: 30px;
  --calendar-mini-work-week-width: 30px;
  --calendar-work-week-font-size: 1.0em;
  --calendar-head-font-weight: 600;
}

.q-calendar--roll-right-leave-active, .q-calendar--roll-left-leave-active, .q-calendar--roll-up-leave-active, .q-calendar--roll-down-leave-active, .q-calendar--slide-right-leave-active, .q-calendar--slide-left-leave-active, .q-calendar--slide-up-leave-active, .q-calendar--slide-down-leave-active, .q-calendar--jump-right-leave-active, .q-calendar--jump-left-leave-active, .q-calendar--jump-up-leave-active, .q-calendar--jump-down-leave-active, .q-calendar--fade-leave-active, .q-calendar--scale-leave-active, .q-calendar--rotate-leave-active, .q-calendar--spin-leave-active, .q-calendar--flip-leave-active {
  position: absolute;
}
.q-calendar--roll-right-enter-active, .q-calendar--roll-right-leave-active, .q-calendar--roll-left-enter-active, .q-calendar--roll-left-leave-active, .q-calendar--roll-up-enter-active, .q-calendar--roll-up-leave-active, .q-calendar--roll-down-enter-active, .q-calendar--roll-down-leave-active, .q-calendar--slide-right-enter-active, .q-calendar--slide-right-leave-active, .q-calendar--slide-left-enter-active, .q-calendar--slide-left-leave-active, .q-calendar--slide-up-enter-active, .q-calendar--slide-up-leave-active, .q-calendar--slide-down-enter-active, .q-calendar--slide-down-leave-active {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.q-calendar--roll-right-enter-from {
  transform: translate3d(-100%, 0, 0) rotate(360deg);
}
.q-calendar--roll-right-leave-to {
  transform: translate3d(100%, 0, 0) rotate(0deg);
}
.q-calendar--roll-left-enter-from {
  transform: translate3d(100%, 0, 0) rotate(-360deg);
}
.q-calendar--roll-left-leave-to {
  transform: translate3d(-100%, 0, 0) rotate(0deg);
}
.q-calendar--roll-up-enter-from {
  transform: translate3d(0, 100%, 0) rotate(-360deg);
}
.q-calendar--roll-up-leave-to {
  transform: translate3d(0, -100%, 0) rotate(0deg);
}
.q-calendar--roll-down-enter-from {
  transform: translate3d(0, -100%, 0) rotate(360deg);
}
.q-calendar--roll-down-leave-to {
  transform: translate3d(0, 100%, 0) rotate(0deg);
}
.q-calendar--slide-right-enter-from {
  transform: translate3d(-100%, 0, 0);
}
.q-calendar--slide-right-leave-to {
  transform: translate3d(100%, 0, 0);
}
.q-calendar--slide-left-enter-from {
  transform: translate3d(100%, 0, 0);
}
.q-calendar--slide-left-leave-to {
  transform: translate3d(-100%, 0, 0);
}
.q-calendar--slide-up-enter-from {
  transform: translate3d(0, 100%, 0);
}
.q-calendar--slide-up-leave-to {
  transform: translate3d(0, -100%, 0);
}
.q-calendar--slide-down-enter-from {
  transform: translate3d(0, -100%, 0);
}
.q-calendar--slide-down-leave-to {
  transform: translate3d(0, 100%, 0);
}
.q-calendar--jump-right-enter-active, .q-calendar--jump-right-leave-active, .q-calendar--jump-left-enter-active, .q-calendar--jump-left-leave-active, .q-calendar--jump-up-enter-active, .q-calendar--jump-up-leave-active, .q-calendar--jump-down-enter-active, .q-calendar--jump-down-leave-active {
  transition: opacity 0.3s, transform 0.3s;
}
.q-calendar--jump-right-enter-from, .q-calendar--jump-right-leave-to, .q-calendar--jump-left-enter-from, .q-calendar--jump-left-leave-to, .q-calendar--jump-up-enter-from, .q-calendar--jump-up-leave-to, .q-calendar--jump-down-enter-from, .q-calendar--jump-down-leave-to {
  opacity: 0;
}
.q-calendar--jump-right-enter-from {
  transform: translate3d(-15px, 0, 0);
}
.q-calendar--jump-right-leave-to {
  transform: translate3d(15px, 0, 0);
}
.q-calendar--jump-left-enter-from {
  transform: translate3d(15px, 0, 0);
}
.q-calendar--jump-left-leave-to {
  transform: translateX(-15px);
}
.q-calendar--jump-up-enter-from {
  transform: translate3d(0, 15px, 0);
}
.q-calendar--jump-up-leave-to {
  transform: translate3d(0, -15px, 0);
}
.q-calendar--jump-down-enter-from {
  transform: translate3d(0, -15px, 0);
}
.q-calendar--jump-down-leave-to {
  transform: translate3d(0, 15px, 0);
}
.q-calendar--fade-enter-active, .q-calendar--fade-leave-active {
  transition: opacity 0.3s ease-out;
}
.q-calendar--fade-enter-from, .q-calendar--fade-leave-to {
  opacity: 0;
}
.q-calendar--scale-enter-active, .q-calendar--scale-leave-active {
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.q-calendar--scale-enter-from, .q-calendar--scale-leave-to {
  opacity: 0;
  transform: scale3d(0, 0, 1);
}
.q-calendar--rotate-enter-active, .q-calendar--rotate-leave-active {
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-style: preserve-3d;
}
.q-calendar--rotate-enter-from, .q-calendar--rotate-leave-to {
  opacity: 0;
  transform: scale3d(0, 0, 1) rotate3d(0, 0, 1, 90deg);
}
.q-calendar--spin-enter-active, .q-calendar--spin-leave-active {
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-style: preserve-3d;
}
.q-calendar--spin-enter-from, .q-calendar--spin-leave-from, .q-calendar--spin-leave-to {
  opacity: 0;
  transform: scale3d(0, 0, 1) rotate3d(0, 0, 1, 720deg);
}
.q-calendar--flip-right-enter-active, .q-calendar--flip-right-leave-active, .q-calendar--flip-left-enter-active, .q-calendar--flip-left-leave-active, .q-calendar--flip-up-enter-active, .q-calendar--flip-up-leave-active, .q-calendar--flip-down-enter-active, .q-calendar--flip-down-leave-active {
  transition: transform 0.3s;
  backface-visibility: hidden;
}
.q-calendar--flip-right-enter-to, .q-calendar--flip-right-leave-from, .q-calendar--flip-left-enter-to, .q-calendar--flip-left-leave-from, .q-calendar--flip-up-enter-to, .q-calendar--flip-up-leave-from, .q-calendar--flip-down-enter-to, .q-calendar--flip-down-leave-from {
  transform: perspective(400px) rotate3d(1, 1, 0, 0deg);
}
.q-calendar--flip-right-enter-from {
  transform: perspective(400px) rotate3d(0, 1, 0, -180deg);
}
.q-calendar--flip-right-leave-to {
  transform: perspective(400px) rotate3d(0, 1, 0, 180deg);
}
.q-calendar--flip-left-enter-from {
  transform: perspective(400px) rotate3d(0, 1, 0, 180deg);
}
.q-calendar--flip-left-leave-to {
  transform: perspective(400px) rotate3d(0, 1, 0, -180deg);
}
.q-calendar--flip-up-enter-from {
  transform: perspective(400px) rotate3d(1, 0, 0, -180deg);
}
.q-calendar--flip-up-leave-to {
  transform: perspective(400px) rotate3d(1, 0, 0, 180deg);
}
.q-calendar--flip-down-enter-from {
  transform: perspective(400px) rotate3d(1, 0, 0, 180deg);
}
.q-calendar--flip-down-leave-to {
  transform: perspective(400px) rotate3d(1, 0, 0, -180deg);
}

.q-calendar {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--calendar-color);
  background: var(--calendar-background);
  width: 100%;
  min-width: auto;
  overflow: hidden;
}
.q-calendar__bordered {
  border: var(--calendar-border);
}
.q-calendar__button {
  display: inline-block;
  flex-direction: row;
  align-items: center;
  position: relative;
  outline: 0;
  border: 0;
  vertical-align: middle;
  padding: 0;
  font-size: 0.75em;
  line-height: 1.715em;
  text-decoration: none;
  color: inherit;
  background: transparent;
  text-transform: uppercase;
  text-align: center;
  width: auto;
  height: auto;
  min-height: 2em;
  min-width: 2em;
  will-change: background;
  transition: background 0.3s;
}
.q-calendar__button--rounded {
  border-radius: 6px;
}
.q-calendar__button--round {
  border-radius: 50%;
}
.q-calendar__button--bordered {
  border: var(--calendar-border);
}
.q-calendar__left {
  text-align: left !important;
  justify-content: flex-start;
}
.q-calendar__center {
  text-align: center !important;
  justify-content: center;
}
.q-calendar__right {
  text-align: right !important;
  justify-content: flex-end;
}
.q-calendar__justify {
  justify-content: space-between !important;
}
.q-calendar__header--inline {
  display: flex;
  flex: 1 0 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.q-calendar__ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.q-calendar__overflow-wrap {
  overflow-wrap: break-word;
  overflow: hidden;
}
.q-calendar__parent {
  transition: transform 0.3s;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  width: 2px;
  height: 2px;
  cursor: pointer;
}
.q-calendar__parent--expanded {
  margin: 0 2px;
  transform: rotate(-135deg);
}
.q-calendar__parent--collapsed {
  margin: 0 2px;
  transform: rotate(45deg);
}
.q-calendar__child {
  position: relative;
  transition: max-height 0.28s linear;
}
.q-calendar__child--expanded {
  max-height: 800px;
  height: auto;
}
.q-calendar__child--collapsed {
  max-height: 0;
  overflow-y: hidden;
}
.q-calendar__focusable, .q-calendar__manual-focusable, .q-calendar__hoverable {
  outline: 0;
}
.q-calendar__focus-helper {
  position: absolute;
  top: 0;
  left: 0; /* rtl:ignore */
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.q-calendar__focus-helper:before, .q-calendar__focus-helper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* rtl:ignore */
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: inherit;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.q-calendar__focus-helper:before {
  background: #000;
}
.q-calendar__focus-helper:after {
  background: #fff;
}
.q-calendar__focus-helper--rounded {
  border-radius: 6px;
}
.q-calendar__focus-helper--round {
  border-radius: 50%;
}
.q-calendar__focusable:focus > .q-calendar__focus-helper, .q-calendar__manual-focusable--focused > .q-calendar__focus-helper, .q-calendar__hoverable:hover > .q-calendar__focus-helper {
  background: currentColor;
  opacity: 0.15;
}
.q-calendar__focusable:focus > .q-calendar__focus-helper:before, .q-calendar__manual-focusable--focused > .q-calendar__focus-helper:before, .q-calendar__hoverable:hover > .q-calendar__focus-helper:before {
  opacity: 0.1;
}
.q-calendar__focusable:focus > .q-calendar__focus-helper:after, .q-calendar__manual-focusable--focused > .q-calendar__focus-helper:after, .q-calendar__hoverable:hover > .q-calendar__focus-helper:after {
  opacity: 0.4;
}
.q-calendar__focusable:focus > .q-calendar__focus-helper, .q-calendar__manual-focusable--focused > .q-calendar__focus-helper {
  opacity: 0.22;
}
.q-calendar .disabled,
.q-calendar .disabled *,
.q-calendar [disabled],
.q-calendar [disabled] * {
  outline: 0 !important;
  cursor: not-allowed !important;
}
.q-calendar .disabled,
.q-calendar [disabled] {
  opacity: 0.6 !important;
}

.q-calendar {
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar .q-calendar__scroll::-webkit-scrollbar {
  width: var(--calendar-scrollbar-width-height);
  height: var(--calendar-scrollbar-width-height);
}
.q-calendar .q-calendar__scroll::-webkit-scrollbar-track {
  background: var(--calendar-scrollbar-track);
  box-shadow: inset 0 0 4px var(--calendar-scrollbar-track);
}
.q-calendar .q-calendar__scroll::-webkit-scrollbar-corner {
  background: var(--calendar-scrollbar-track);
}
.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb {
  background: var(--calendar-scrollbar-thumb);
  border-radius: 5px;
}
.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb:hover {
  background: var(--calendar-scrollbar-thumb-hover);
}

.q-dark div.q-calendar,
.body--dark div.q-calendar,
.q-calendar--dark.q-calendar {
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div.q-calendar__bordered,
.body--dark div.q-calendar__bordered,
.q-calendar--dark.q-calendar__bordered {
  border: var(--calendar-border-dark);
}
.q-dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar,
.body--dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar,
.q-calendar--dark.q-calendar .q-calendar__scroll::-webkit-scrollbar {
  width: var(--calendar-scrollbar-width-height);
  height: var(--calendar-scrollbar-width-height);
}
.q-dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-track,
.body--dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-track,
.q-calendar--dark.q-calendar .q-calendar__scroll::-webkit-scrollbar-track {
  background: var(--calendar-scrollbar-track-dark);
  box-shadow: inset 0 0 4px var(--calendar-scrollbar-track-dark);
}
.q-dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-corner,
.body--dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-corner,
.q-calendar--dark.q-calendar .q-calendar__scroll::-webkit-scrollbar-corner {
  background: var(--calendar-scrollbar-track-dark);
}
.q-dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb,
.body--dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb,
.q-calendar--dark.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb {
  background: var(--calendar-scrollbar-thumb-dark);
  border-radius: 5px;
}
.q-dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb:hover,
.body--dark div.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb:hover,
.q-calendar--dark.q-calendar .q-calendar__scroll::-webkit-scrollbar-thumb:hover {
  background: var(--calendar-scrollbar-thumb-hover-dark);
}

.q-calendar-agenda {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
}
.q-calendar-agenda__head {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
}
.q-calendar-agenda__head--intervals {
  flex: none;
  display: flex;
  vertical-align: bottom;
}
.q-calendar-agenda__head--days__column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-agenda__head--days__weekdays {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-agenda__head--days__event {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
}
.q-calendar-agenda__head--days__events {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  bottom: 0;
  left: 0;
  right: 0;
}
.q-calendar-agenda__head--day {
  position: relative;
  flex: 1 1 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 0;
  outline: 0;
}
.q-calendar-agenda__head--day__event {
  position: relative;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  overflow: hidden;
}
.q-calendar-agenda__head--weekday, .q-calendar-agenda__head--date, .q-calendar-agenda__column-header--before, .q-calendar-agenda__column-header--after {
  display: flex;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-agenda__head--weekday, .q-calendar-agenda__head--date {
  margin: 2px;
  flex: 1 0 0;
}
.q-calendar-agenda__head--day__label {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.q-calendar-agenda__body {
  flex: 1 1 60%;
  overflow: hidden;
  display: flex;
  position: relative;
}
.q-calendar-agenda__scroll-area {
  overflow: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}
.q-calendar-agenda__pane {
  width: 100%;
  overflow: hidden;
  flex: none;
  display: flex;
  align-items: flex-start;
}
.q-calendar-agenda__day-container {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
}
.q-calendar-agenda__intervals-column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-agenda__interval {
  text-align: left;
  outline: 0;
}
.q-calendar-agenda__interval--section {
  position: relative;
  text-align: left;
  outline: 0;
}
.q-calendar-agenda__interval--text {
  display: block;
  position: relative;
  top: -6px;
  font-size: 10px;
  width: 100%;
  text-align: center;
}
.q-calendar-agenda__day {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 0;
}
.q-calendar-agenda__day-interval {
  position: relative;
  outline: 0;
}
.q-calendar-agenda__day-interval--section {
  position: relative;
  outline: 0;
}

.q-calendar-agenda__intervals-column.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 1;
}

.q-calendar-agenda__head.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-agenda__head--intervals.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 3;
}

.q-calendar-agenda__head {
  border-bottom: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-agenda__interval {
  border-bottom: var(--calendar-background) 1px solid;
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-agenda__head--intervals {
  border-right: var(--calendar-border);
  min-width: var(--calendar-intervals-width);
  max-width: var(--calendar-intervals-width);
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-agenda__head--day {
  font-weight: var(--calendar-head-font-weight);
  border-right: var(--calendar-border);
}
.q-calendar-agenda__head--day:last-child {
  border-right: none;
}
.q-calendar-agenda__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color);
  background: var(--calendar-active-date-background);
}
.q-calendar-agenda__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current);
}
.q-calendar-agenda__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-agenda__head--day__event {
  border-right: var(--calendar-border);
}
.q-calendar-agenda__head--day__event:last-child {
  border-right: none;
}
.q-calendar-agenda__column-header--before {
  border-bottom: var(--calendar-border);
}
.q-calendar-agenda__column-header--after {
  border-top: var(--calendar-border);
}
.q-calendar-agenda__intervals-column {
  border-right: var(--calendar-border);
  min-width: var(--calendar-intervals-width);
  max-width: var(--calendar-intervals-width);
}
.q-calendar-agenda__day {
  border-right: var(--calendar-border);
}
.q-calendar-agenda__day:last-child {
  border-right: none !important;
}
.q-calendar-agenda__day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-agenda__day-interval {
  width: 100%;
  border-top: var(--calendar-border);
}
.q-calendar-agenda__day-interval.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-agenda__day-interval.q-range-first, .q-calendar-agenda__day-interval.q-range-last, .q-calendar-agenda__day-interval.q-range {
  color: var(--calendar-range-color);
  background: var(--calendar-range-background);
}
.q-calendar-agenda__day-interval--section {
  border-top: var(--calendar-border-section);
}
.q-calendar-agenda__day-interval--section.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-agenda__day-interval--section.q-range-first, .q-calendar-agenda__day-interval--section.q-range-last, .q-calendar-agenda__day-interval--section.q-range {
  color: var(--calendar-range-color);
  background: var(--calendar-range-background);
}
.q-calendar-agenda__day-interval:first-child {
  border-top: none !important;
}
.q-calendar-agenda__day-interval:last-child {
  border-bottom: none !important;
}

.q-dark div .q-calendar-agenda__head,
.body--dark div .q-calendar-agenda__head,
.q-calendar--dark .q-calendar-agenda__head {
  border-bottom: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-agenda__interval,
.body--dark div .q-calendar-agenda__interval,
.q-calendar--dark .q-calendar-agenda__interval {
  border-bottom: var(--calendar-background-dark) 1px solid;
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-agenda__head--intervals,
.body--dark div .q-calendar-agenda__head--intervals,
.q-calendar--dark .q-calendar-agenda__head--intervals {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-agenda__head--day,
.body--dark div .q-calendar-agenda__head--day,
.q-calendar--dark .q-calendar-agenda__head--day {
  border-right: var(--calendar-border-dark);
  font-weight: var(--calendar-head-font-weight);
}
.q-dark div .q-calendar-agenda__head--day:last-child,
.body--dark div .q-calendar-agenda__head--day:last-child,
.q-calendar--dark .q-calendar-agenda__head--day:last-child {
  border-right: none;
}
.q-dark div .q-calendar-agenda__head--day.q-active-date .q-calendar__button,
.body--dark div .q-calendar-agenda__head--day.q-active-date .q-calendar__button,
.q-calendar--dark .q-calendar-agenda__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color-dark);
  background: var(--calendar-active-date-background-dark);
}
.q-dark div .q-calendar-agenda__head--day.q-current-day .q-calendar__button,
.body--dark div .q-calendar-agenda__head--day.q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-agenda__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark);
}
.q-dark div .q-calendar-agenda__head--day__event,
.body--dark div .q-calendar-agenda__head--day__event,
.q-calendar--dark .q-calendar-agenda__head--day__event {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-agenda__head--day.q-disabled-day,
.body--dark div .q-calendar-agenda__head--day.q-disabled-day,
.q-calendar--dark .q-calendar-agenda__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-agenda__column-header--before,
.body--dark div .q-calendar-agenda__column-header--before,
.q-calendar--dark .q-calendar-agenda__column-header--before {
  border-bottom: var(--calendar-border-dark);
}
.q-dark div .q-calendar-agenda__column-header--after,
.body--dark div .q-calendar-agenda__column-header--after,
.q-calendar--dark .q-calendar-agenda__column-header--after {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-agenda__intervals-column,
.body--dark div .q-calendar-agenda__intervals-column,
.q-calendar--dark .q-calendar-agenda__intervals-column {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-agenda__day,
.body--dark div .q-calendar-agenda__day,
.q-calendar--dark .q-calendar-agenda__day {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-agenda__day:last-child,
.body--dark div .q-calendar-agenda__day:last-child,
.q-calendar--dark .q-calendar-agenda__day:last-child {
  border-right: none !important;
}
.q-dark div .q-calendar-agenda__day.q-disabled-day,
.body--dark div .q-calendar-agenda__day.q-disabled-day,
.q-calendar--dark .q-calendar-agenda__day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-dark div .q-calendar-agenda__day-interval,
.body--dark div .q-calendar-agenda__day-interval,
.q-calendar--dark .q-calendar-agenda__day-interval {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-agenda__day-interval.q-selected,
.body--dark div .q-calendar-agenda__day-interval.q-selected,
.q-calendar--dark .q-calendar-agenda__day-interval.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-agenda__day-interval.q-range-first, .q-dark div .q-calendar-agenda__day-interval.q-range-last, .q-dark div .q-calendar-agenda__day-interval.q-range,
.body--dark div .q-calendar-agenda__day-interval.q-range-first,
.body--dark div .q-calendar-agenda__day-interval.q-range-last,
.body--dark div .q-calendar-agenda__day-interval.q-range,
.q-calendar--dark .q-calendar-agenda__day-interval.q-range-first,
.q-calendar--dark .q-calendar-agenda__day-interval.q-range-last,
.q-calendar--dark .q-calendar-agenda__day-interval.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}
.q-dark div .q-calendar-agenda__day-interval:first-child,
.body--dark div .q-calendar-agenda__day-interval:first-child,
.q-calendar--dark .q-calendar-agenda__day-interval:first-child {
  border-top: none !important;
}
.q-dark div .q-calendar-agenda__day-interval:last-child,
.body--dark div .q-calendar-agenda__day-interval:last-child,
.q-calendar--dark .q-calendar-agenda__day-interval:last-child {
  border-bottom: none !important;
}
.q-dark div .q-calendar-agenda__day-interval--section,
.body--dark div .q-calendar-agenda__day-interval--section,
.q-calendar--dark .q-calendar-agenda__day-interval--section {
  border-top: var(--calendar-border-section-dark);
}
.q-dark div .q-calendar-agenda__day-interval--section.q-selected,
.body--dark div .q-calendar-agenda__day-interval--section.q-selected,
.q-calendar--dark .q-calendar-agenda__day-interval--section.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-agenda__day-interval--section.q-range-first, .q-dark div .q-calendar-agenda__day-interval--section.q-range-last, .q-dark div .q-calendar-agenda__day-interval--section.q-range,
.body--dark div .q-calendar-agenda__day-interval--section.q-range-first,
.body--dark div .q-calendar-agenda__day-interval--section.q-range-last,
.body--dark div .q-calendar-agenda__day-interval--section.q-range,
.q-calendar--dark .q-calendar-agenda__day-interval--section.q-range-first,
.q-calendar--dark .q-calendar-agenda__day-interval--section.q-range-last,
.q-calendar--dark .q-calendar-agenda__day-interval--section.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}

.q-calendar-day {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
}
.q-calendar-day__head {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
}
.q-calendar-day__head--intervals {
  flex: none;
  display: flex;
  vertical-align: bottom;
}
.q-calendar-day__head--days__column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-day__head--days__weekdays {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-day__head--days__event {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
}
.q-calendar-day__head--days__events {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  bottom: 0;
  left: 0;
  right: 0;
}
.q-calendar-day__head--day {
  position: relative;
  flex: 1 1 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 0;
  outline: 0;
}
.q-calendar-day__head--day__event {
  position: relative;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  overflow: hidden;
}
.q-calendar-day__head--weekday, .q-calendar-day__head--date, .q-calendar-day__column-header--before, .q-calendar-day__column-header--after {
  display: flex;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-day__head--weekday, .q-calendar-day__head--date {
  margin: 2px;
  flex: 1 0 0;
}
.q-calendar-day__head--day__label {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.q-calendar-day__body {
  flex: 1 1 60%;
  overflow: hidden;
  display: flex;
  position: relative;
}
.q-calendar-day__scroll-area {
  overflow: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}
.q-calendar-day__pane {
  width: 100%;
  overflow: hidden;
  flex: none;
  display: flex;
  align-items: flex-start;
}
.q-calendar-day__day-container {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.q-calendar-day__intervals-column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-day__interval {
  text-align: left;
  outline: 0;
}
.q-calendar-day__interval--section {
  position: relative;
  text-align: left;
  outline: 0;
}
.q-calendar-day__interval--text {
  display: block;
  position: relative;
  top: -6px;
  font-size: 10px;
  width: 100%;
  text-align: center;
}
.q-calendar-day__day {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 0;
}
.q-calendar-day__day-interval {
  position: relative;
  outline: 0;
}
.q-calendar-day__day-interval--section {
  position: relative;
  outline: 0;
}

.q-calendar-day__intervals-column.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 1;
}

.q-calendar-day__head.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-day__head--intervals.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 3;
}

.q-calendar-day__head {
  border-bottom: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-day__interval, .q-calendar-day__interval--section {
  border-bottom: var(--calendar-background) 1px solid;
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-day__head--intervals {
  border-right: var(--calendar-border);
  min-width: var(--calendar-intervals-width);
  max-width: var(--calendar-intervals-width);
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-day__head--day {
  font-weight: var(--calendar-head-font-weight);
  border-right: var(--calendar-border);
}
.q-calendar-day__head--day:last-child {
  border-right: none;
}
.q-calendar-day__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color);
  background: var(--calendar-active-date-background);
}
.q-calendar-day__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current);
}
.q-calendar-day__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-day__head--day__event {
  border-right: var(--calendar-border);
}
.q-calendar-day__head--day__event:last-child {
  border-right: none;
}
.q-calendar-day__column-header--before {
  border-bottom: var(--calendar-border);
}
.q-calendar-day__column-header--after {
  border-top: var(--calendar-border);
}
.q-calendar-day__intervals-column {
  border-right: var(--calendar-border);
  min-width: var(--calendar-intervals-width);
  max-width: var(--calendar-intervals-width);
}
.q-calendar-day__day {
  border-right: var(--calendar-border);
}
.q-calendar-day__day:last-child {
  border-right: none !important;
}
.q-calendar-day__day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-day__day-interval {
  width: 100%;
  border-top: var(--calendar-border);
}
.q-calendar-day__day-interval.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-day__day-interval.q-range-first, .q-calendar-day__day-interval.q-range-last, .q-calendar-day__day-interval.q-range {
  color: var(--calendar-range-color);
  background: var(--calendar-range-background);
}
.q-calendar-day__day-interval--section {
  border-top: var(--calendar-border-section);
}
.q-calendar-day__day-interval--section.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-day__day-interval--section.q-range-first, .q-calendar-day__day-interval--section.q-range-last, .q-calendar-day__day-interval--section.q-range {
  color: var(--calendar-range-color);
  background: var(--calendar-range-background);
}
.q-calendar-day__day-interval:first-child {
  border-top: none !important;
}
.q-calendar-day__day-interval:last-child {
  border-bottom: none !important;
}

.q-dark div .q-calendar-day__head,
.body--dark div .q-calendar-day__head,
.q-calendar--dark .q-calendar-day__head {
  border-bottom: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-day__interval, .q-dark div .q-calendar-day__interval--section,
.body--dark div .q-calendar-day__interval,
.body--dark div .q-calendar-day__interval--section,
.q-calendar--dark .q-calendar-day__interval,
.q-calendar--dark .q-calendar-day__interval--section {
  border-bottom: var(--calendar-background-dark) 1px solid;
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-day__head--intervals,
.body--dark div .q-calendar-day__head--intervals,
.q-calendar--dark .q-calendar-day__head--intervals {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-day__head--day,
.body--dark div .q-calendar-day__head--day,
.q-calendar--dark .q-calendar-day__head--day {
  border-right: var(--calendar-border-dark);
  font-weight: var(--calendar-head-font-weight);
}
.q-dark div .q-calendar-day__head--day:last-child,
.body--dark div .q-calendar-day__head--day:last-child,
.q-calendar--dark .q-calendar-day__head--day:last-child {
  border-right: none;
}
.q-dark div .q-calendar-day__head--day.q-active-date .q-calendar__button,
.body--dark div .q-calendar-day__head--day.q-active-date .q-calendar__button,
.q-calendar--dark .q-calendar-day__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color-dark);
  background: var(--calendar-active-date-background-dark);
}
.q-dark div .q-calendar-day__head--day.q-current-day .q-calendar__button,
.body--dark div .q-calendar-day__head--day.q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-day__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark);
}
.q-dark div .q-calendar-day__head--day__event,
.body--dark div .q-calendar-day__head--day__event,
.q-calendar--dark .q-calendar-day__head--day__event {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-day__head--day.q-disabled-day,
.body--dark div .q-calendar-day__head--day.q-disabled-day,
.q-calendar--dark .q-calendar-day__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-day__column-header--before,
.body--dark div .q-calendar-day__column-header--before,
.q-calendar--dark .q-calendar-day__column-header--before {
  border-bottom: var(--calendar-border-dark);
}
.q-dark div .q-calendar-day__column-header--after,
.body--dark div .q-calendar-day__column-header--after,
.q-calendar--dark .q-calendar-day__column-header--after {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-day__intervals-column,
.body--dark div .q-calendar-day__intervals-column,
.q-calendar--dark .q-calendar-day__intervals-column {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-day__day,
.body--dark div .q-calendar-day__day,
.q-calendar--dark .q-calendar-day__day {
  border-right: var --calendar-border-dark;
}
.q-dark div .q-calendar-day__day:last-child,
.body--dark div .q-calendar-day__day:last-child,
.q-calendar--dark .q-calendar-day__day:last-child {
  border-right: none !important;
}
.q-dark div .q-calendar-day__day.q-disabled-day,
.body--dark div .q-calendar-day__day.q-disabled-day,
.q-calendar--dark .q-calendar-day__day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-dark div .q-calendar-day__day-interval,
.body--dark div .q-calendar-day__day-interval,
.q-calendar--dark .q-calendar-day__day-interval {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-day__day-interval.q-selected,
.body--dark div .q-calendar-day__day-interval.q-selected,
.q-calendar--dark .q-calendar-day__day-interval.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-day__day-interval.q-range-first, .q-dark div .q-calendar-day__day-interval.q-range-last, .q-dark div .q-calendar-day__day-interval.q-range,
.body--dark div .q-calendar-day__day-interval.q-range-first,
.body--dark div .q-calendar-day__day-interval.q-range-last,
.body--dark div .q-calendar-day__day-interval.q-range,
.q-calendar--dark .q-calendar-day__day-interval.q-range-first,
.q-calendar--dark .q-calendar-day__day-interval.q-range-last,
.q-calendar--dark .q-calendar-day__day-interval.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}
.q-dark div .q-calendar-day__day-interval:first-child,
.body--dark div .q-calendar-day__day-interval:first-child,
.q-calendar--dark .q-calendar-day__day-interval:first-child {
  border-top: none !important;
}
.q-dark div .q-calendar-day__day-interval:last-child,
.body--dark div .q-calendar-day__day-interval:last-child,
.q-calendar--dark .q-calendar-day__day-interval:last-child {
  border-bottom: none !important;
}
.q-dark div .q-calendar-day__day-interval--section,
.body--dark div .q-calendar-day__day-interval--section,
.q-calendar--dark .q-calendar-day__day-interval--section {
  border-top: var(--calendar-border-section-dark);
}
.q-dark div .q-calendar-day__day-interval--section.q-selected,
.body--dark div .q-calendar-day__day-interval--section.q-selected,
.q-calendar--dark .q-calendar-day__day-interval--section.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-day__day-interval--section.q-range-first, .q-dark div .q-calendar-day__day-interval--section.q-range-last, .q-dark div .q-calendar-day__day-interval--section.q-range,
.body--dark div .q-calendar-day__day-interval--section.q-range-first,
.body--dark div .q-calendar-day__day-interval--section.q-range-last,
.body--dark div .q-calendar-day__day-interval--section.q-range,
.q-calendar--dark .q-calendar-day__day-interval--section.q-range-first,
.q-calendar--dark .q-calendar-day__day-interval--section.q-range-last,
.q-calendar--dark .q-calendar-day__day-interval--section.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}

.q-calendar-task {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
}
.q-calendar-task__head {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: column;
}
.q-calendar-task__head--tasks {
  position: relative;
  display: flex;
}
.q-calendar-task__head--days {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-task__head--day {
  position: relative;
  flex: 1 1 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 0;
  outline: 0;
}
.q-calendar-task__title {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: row;
}
.q-calendar-task__title--task {
  position: relative;
  display: flex;
}
.q-calendar-task__title--days {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-task__title--day {
  position: relative;
  flex: 1 1 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 0;
  outline: 0;
}
.q-calendar-task__head--weekday, .q-calendar-task__head--date {
  display: flex;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  margin: 2px;
  flex: 1 0 0;
}
.q-calendar-task__container {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.q-calendar-task__body {
  position: relative;
  display: flex;
  flex: 1 1 60%;
  overflow: hidden;
}
.q-calendar-task__scroll-area {
  overflow: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}
.q-calendar-task__task {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: row;
  width: 100%;
}
.q-calendar-task__task--section {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: row;
  width: 100%;
}
.q-calendar-task__task--container {
  position: relative;
  min-height: 22px;
}
.q-calendar-task__task--item {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: row;
}
.q-calendar-task__task--days-row {
  position: relative;
  display: flex;
  flex: none;
}
.q-calendar-task__task--day {
  display: flex;
  justify-content: center;
  align-items: center;
}
.q-calendar-task__footer {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: column;
}
.q-calendar-task__footer--wrapper {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: row;
}
.q-calendar-task__footer--task, .q-calendar-task__footer--day-wrapper {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: row;
}

.q-calendar-task__head.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-task__head--tasks.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-task__title--task.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-task__task--container.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 1;
}

.q-calendar-task__task--item.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 1;
}

.q-calendar-task__footer.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  bottom: 0;
  z-index: 1;
}

.q-calendar-task__footer--task.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  bottom: 0;
  z-index: 2;
}

.q-calendar-task__footer--day.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 2;
}

.q-calendar-task__head {
  color: var(--calendar-color);
  background: var(--calendar-background);
  border-bottom: var(--calendar-border);
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-task__head--tasks {
  color: var(--calendar-color);
  background: var(--calendar-background);
  border-right: var(--calendar-border);
}
.q-calendar-task__head--day {
  border-right: var(--calendar-border);
}
.q-calendar-task__head--day:last-child {
  border-right: none;
}
.q-calendar-task__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color);
  background: var(--calendar-active-date-background);
}
.q-calendar-task__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current);
}
.q-calendar-task__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-task__title {
  color: var(--calendar-color);
  background: var(--calendar-background);
  border-top: var(--calendar-border);
}
.q-calendar-task__title--task {
  color: var(--calendar-color);
  background: var(--calendar-background);
  border-right: var(--calendar-border);
}
.q-calendar-task__title--day {
  border-right: var(--calendar-border);
}
.q-calendar-task__title--day:last-child {
  border-right: none;
}
.q-calendar-task__title--day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-task__task {
  border-bottom: var(--calendar-border);
}
.q-calendar-task__task:last-child {
  border-bottom: none !important;
}
.q-calendar-task__task--section {
  border-bottom: var(--calendar-border-section);
}
.q-calendar-task__task--item {
  background: var(--calendar-background);
  border-right: var(--calendar-border);
}
.q-calendar-task__task--day {
  border-right: var(--calendar-border);
}
.q-calendar-task__task--day:last-child {
  border-right: none;
}
.q-calendar-task__footer {
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-task__footer--wrapper {
  border-top: var(--calendar-border);
}
.q-calendar-task__footer--task {
  background: var(--calendar-background);
  border-right: var(--calendar-border);
}
.q-calendar-task__footer--day {
  background: var(--calendar-background);
  border-right: var(--calendar-border);
}
.q-calendar-task__footer--day:last-child {
  border-right: none;
}

.q-dark div .q-calendar-task__head,
.body--dark div .q-calendar-task__head,
.q-calendar--dark .q-calendar-task__head {
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
  border-bottom: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__head--tasks,
.body--dark div .q-calendar-task__head--tasks,
.q-calendar--dark .q-calendar-task__head--tasks {
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__head--day,
.body--dark div .q-calendar-task__head--day,
.q-calendar--dark .q-calendar-task__head--day {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__head--day.q-active-date .q-calendar__button,
.body--dark div .q-calendar-task__head--day.q-active-date .q-calendar__button,
.q-calendar--dark .q-calendar-task__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color-dark);
  background: var(--calendar-active-date-background-dark);
}
.q-dark div .q-calendar-task__head--day.q-current-day .q-calendar__button,
.body--dark div .q-calendar-task__head--day.q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-task__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark);
}
.q-dark div .q-calendar-task__head--day.q-disabled-day,
.body--dark div .q-calendar-task__head--day.q-disabled-day,
.q-calendar--dark .q-calendar-task__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-task__title,
.body--dark div .q-calendar-task__title,
.q-calendar--dark .q-calendar-task__title {
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__title--task,
.body--dark div .q-calendar-task__title--task,
.q-calendar--dark .q-calendar-task__title--task {
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__title--day,
.body--dark div .q-calendar-task__title--day,
.q-calendar--dark .q-calendar-task__title--day {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__title--day.q-disabled-day,
.body--dark div .q-calendar-task__title--day.q-disabled-day,
.q-calendar--dark .q-calendar-task__title--day.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-task__task,
.body--dark div .q-calendar-task__task,
.q-calendar--dark .q-calendar-task__task {
  border-bottom: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__task--section,
.body--dark div .q-calendar-task__task--section,
.q-calendar--dark .q-calendar-task__task--section {
  border-bottom: var(--calendar-border-section-dark);
}
.q-dark div .q-calendar-task__task--item,
.body--dark div .q-calendar-task__task--item,
.q-calendar--dark .q-calendar-task__task--item {
  background: var(--calendar-background-dark);
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__task--day,
.body--dark div .q-calendar-task__task--day,
.q-calendar--dark .q-calendar-task__task--day {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__footer--wrapper,
.body--dark div .q-calendar-task__footer--wrapper,
.q-calendar--dark .q-calendar-task__footer--wrapper {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__footer--task,
.body--dark div .q-calendar-task__footer--task,
.q-calendar--dark .q-calendar-task__footer--task {
  background: var(--calendar-background-dark);
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-task__footer--day,
.body--dark div .q-calendar-task__footer--day,
.q-calendar--dark .q-calendar-task__footer--day {
  background: var(--calendar-background-dark);
  border-right: var(--calendar-border-dark);
}

.q-calendar-month {
  display: flex;
  flex: 1 0 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
}
.q-calendar-month__head {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
}
.q-calendar-month__head--wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
}
.q-calendar-month__head--workweek {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  -webkit-user-select: none;
          user-select: none;
  padding: 0;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
.q-calendar-month__head--weekdays {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-month__head--events {
  position: relative;
  display: flex;
  flex: 1 1 100%;
  flex-direction: row;
  flex-wrap: nowrap;
}
.q-calendar-month__head--weekday {
  position: relative;
  display: flex;
  flex: 1 0 100%;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  overflow: hidden;
  -webkit-user-select: none;
          user-select: none;
  outline: 0;
}
.q-calendar-month__body {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.q-calendar-month__week {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex: 10000 1 0%;
}
.q-calendar-month__week--wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
  min-width: 100%;
  transition: height 0.3s;
}
.q-calendar-month__week--auto-height {
  flex: 1 1 auto;
}
.q-calendar-month__week--days {
  position: relative;
  height: auto;
  display: flex;
  flex: 1 0 auto;
  flex-wrap: nowrap;
  padding: 0;
}
.q-calendar-month__week--events {
  position: absolute;
  margin-top: 28px;
  width: 100%;
  overflow: hidden;
}
.q-calendar-month__workweek {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  -webkit-user-select: none;
          user-select: none;
  padding: 0;
  align-items: center;
}
.q-calendar-month__day {
  position: relative;
  display: flex;
  flex: 1 0 100%;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  -webkit-user-select: none;
          user-select: none;
  outline: 0;
}
.q-calendar-month__day--content {
  position: relative;
  width: 100%;
  height: auto;
  flex: 1 0 auto;
  flex-direction: column;
  min-width: 100%;
}
.q-calendar-month__day--label {
  text-decoration: none;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-month__day--label__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 100%;
  min-height: 22px;
}
.q-calendar-month__day--month {
  position: relative;
  text-decoration: none;
  -webkit-user-select: none;
          user-select: none;
  padding: 1px;
  font-size: 0.75em;
  line-height: 22px;
  transition: font-size 0.3s;
}
.q-calendar-month__day--day-of-year {
  position: relative;
  text-decoration: none;
  -webkit-user-select: none;
          user-select: none;
  box-shadow: none;
  font-size: 0.6rem;
  padding: 1px;
}

.q-calendar-month__head {
  border-bottom: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
}
.q-calendar-month__head--workweek {
  font-size: var(--calendar-work-week-font-size);
  border-right: var(--calendar-border);
  max-width: var(--calendar-work-week-width);
  min-width: var(--calendar-work-week-width);
}
.q-calendar-month__head--weekday {
  border-right: var(--calendar-border);
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-month__head--weekday:last-child {
  border-right: none !important;
}
.q-calendar-month__head--event {
  border-right: var(--calendar-border);
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-month__head--event:last-child {
  border-right: none !important;
}
.q-calendar-month__head--event.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-month__workweek {
  font-size: var(--calendar-work-week-font-size);
  border-right: var(--calendar-border);
  max-width: var(--calendar-work-week-width);
  min-width: var(--calendar-work-week-width);
}
.q-calendar-month__workweek.q-current-day {
  color: var(--calendar-current-color);
}
.q-calendar-month__week--wrapper {
  border-bottom: var(--calendar-border);
}
.q-calendar-month__week--wrapper:last-child {
  border-bottom: none !important;
}
.q-calendar-month__day {
  border-right: var(--calendar-border);
}
.q-calendar-month__day:last-child {
  border-right: none !important;
}
.q-calendar-month__day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color);
  background: var(--calendar-active-date-background);
}
.q-calendar-month__day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current);
}
.q-calendar-month__day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-month__day.q-outside {
  color: var(--calendar-outside-color) !important;
  background: var(--calendar-outside-background);
}
.q-calendar-month__day.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-month__day.q-selected .q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark) !important;
}
.q-calendar-month__day.q-range-first, .q-calendar-month__day.q-range-last, .q-calendar-month__day.q-range {
  color: var(--calendar-range-color);
  background: var(--calendar-range-background);
}
.q-calendar-month__day.q-range-first .q-current-day .q-calendar__button, .q-calendar-month__day.q-range-last .q-current-day .q-calendar__button, .q-calendar-month__day.q-range .q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark) !important;
}

.q-dark div .q-calendar-month__head,
.body--dark div .q-calendar-month__head,
.q-calendar--dark .q-calendar-month__head {
  border-bottom: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-month__head--workweek,
.body--dark div .q-calendar-month__head--workweek,
.q-calendar--dark .q-calendar-month__head--workweek {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-month__head--weekday,
.body--dark div .q-calendar-month__head--weekday,
.q-calendar--dark .q-calendar-month__head--weekday {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-month__head--weekday:last-child,
.body--dark div .q-calendar-month__head--weekday:last-child,
.q-calendar--dark .q-calendar-month__head--weekday:last-child {
  border-right: none !important;
}
.q-dark div .q-calendar-month__head--weekday.q-disabled-day,
.body--dark div .q-calendar-month__head--weekday.q-disabled-day,
.q-calendar--dark .q-calendar-month__head--weekday.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-month__workweek,
.body--dark div .q-calendar-month__workweek,
.q-calendar--dark .q-calendar-month__workweek {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-month__workweek.q-current-day,
.body--dark div .q-calendar-month__workweek.q-current-day,
.q-calendar--dark .q-calendar-month__workweek.q-current-day {
  color: var(--calendar-current-color-dark);
}
.q-dark div .q-calendar-month__week--wrapper,
.body--dark div .q-calendar-month__week--wrapper,
.q-calendar--dark .q-calendar-month__week--wrapper {
  border-bottom: var(--calendar-border-dark);
}
.q-dark div .q-calendar-month__week--wrapper:last-child,
.body--dark div .q-calendar-month__week--wrapper:last-child,
.q-calendar--dark .q-calendar-month__week--wrapper:last-child {
  border-bottom: none !important;
}
.q-dark div .q-calendar-month__day,
.body--dark div .q-calendar-month__day,
.q-calendar--dark .q-calendar-month__day {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-month__day:last-child,
.body--dark div .q-calendar-month__day:last-child,
.q-calendar--dark .q-calendar-month__day:last-child {
  border-right: none !important;
}
.q-dark div .q-calendar-month__day.q-active-date .q-calendar__button,
.body--dark div .q-calendar-month__day.q-active-date .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color-dark);
  background: var(--calendar-active-date-background-dark) !important;
}
.q-dark div .q-calendar-month__day.q-current-day .q-calendar__button,
.body--dark div .q-calendar-month__day.q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark);
}
.q-dark div .q-calendar-month__day.q-current-day,
.body--dark div .q-calendar-month__day.q-current-day,
.q-calendar--dark .q-calendar-month__day.q-current-day {
  color: var(--calendar-current-color-dark) !important;
  background: var(--calendar-current-background-dark);
}
.q-dark div .q-calendar-month__day.q-current-day .q-calendar__button,
.body--dark div .q-calendar-month__day.q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark) !important;
  background: var(--calendar-current-background-dark);
}
.q-dark div .q-calendar-month__day.q-disabled-day,
.body--dark div .q-calendar-month__day.q-disabled-day,
.q-calendar--dark .q-calendar-month__day.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-month__day.q-outside,
.body--dark div .q-calendar-month__day.q-outside,
.q-calendar--dark .q-calendar-month__day.q-outside {
  color: var(--calendar-outside-color-dark) !important;
  background: var(--calendar-outside-background-dark);
}
.q-dark div .q-calendar-month__day.q-selected,
.body--dark div .q-calendar-month__day.q-selected,
.q-calendar--dark .q-calendar-month__day.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-month__day.q-selected .q-current-day .q-calendar__button,
.body--dark div .q-calendar-month__day.q-selected .q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-selected .q-current-day .q-calendar__button {
  border: var(--calendar-border-current) !important;
}
.q-dark div .q-calendar-month__day.q-range-first, .q-dark div .q-calendar-month__day.q-range-last, .q-dark div .q-calendar-month__day.q-range,
.body--dark div .q-calendar-month__day.q-range-first,
.body--dark div .q-calendar-month__day.q-range-last,
.body--dark div .q-calendar-month__day.q-range,
.q-calendar--dark .q-calendar-month__day.q-range-first,
.q-calendar--dark .q-calendar-month__day.q-range-last,
.q-calendar--dark .q-calendar-month__day.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}
.q-dark div .q-calendar-month__day.q-range-first .q-current-day .q-calendar__button, .q-dark div .q-calendar-month__day.q-range-last .q-current-day .q-calendar__button, .q-dark div .q-calendar-month__day.q-range .q-current-day .q-calendar__button,
.body--dark div .q-calendar-month__day.q-range-first .q-current-day .q-calendar__button,
.body--dark div .q-calendar-month__day.q-range-last .q-current-day .q-calendar__button,
.body--dark div .q-calendar-month__day.q-range .q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-range-first .q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-range-last .q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-month__day.q-range .q-current-day .q-calendar__button {
  border: var(--calendar-border-current) !important;
}

.q-day-event:first-child {
  margin-top: 0em;
}

.q-calendar-resource {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
}
.q-calendar-resource__head--intervals {
  display: flex;
  flex-direction: row;
}
.q-calendar-resource__head {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
}
.q-calendar-resource__head--intervals {
  display: flex;
  flex-direction: row;
}
.q-calendar-resource__head--interval {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 10px;
  -webkit-user-select: none;
          user-select: none;
  width: 100%;
  height: 100%;
}
.q-calendar-resource__body {
  position: relative;
  display: flex;
  flex: 1 1 60%;
  flex-direction: column;
  overflow: hidden;
}
.q-calendar-resource__scroll-area {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  overflow: auto;
}
.q-calendar-resource__day--container {
  position: relative;
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  flex-direction: column;
}
.q-calendar-resource__resource--head {
  display: flex;
  flex-direction: row;
  flex: 1;
  position: relative;
  font-size: 10px;
}
.q-calendar-resource__resources--body {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
}
.q-calendar-resource__resource--row {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 1;
}
.q-calendar-resource__resource {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  vertical-align: middle;
  outline: 0;
}
.q-calendar-resource__resource--interval {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  vertical-align: middle;
  outline: 0;
}
.q-calendar-resource__resource--section {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  vertical-align: middle;
  outline: 0;
}
.q-calendar-resource__resource--text {
  display: flex;
  position: relative;
  font-size: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 2px;
}
.q-calendar-resource__resource--intervals {
  display: flex;
  position: relative;
}

.q-calendar-resource__resource.q-calendar__sticky,
.q-calendar-resource__resource--section.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 1;
}

.q-calendar-resource__head.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-resource__head--resources.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 10;
}

.q-calendar-resource__head {
  color: var(--calendar-color);
  background: var(--calendar-background);
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-resource__head--resources {
  border-right: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  min-width: var(--calendar-resources-width);
  max-width: var(--calendar-resources-width);
}
.q-calendar-resource__head--resources:last-child {
  border-bottom: none;
}
.q-calendar-resource__head--interval {
  border-right: var(--calendar-border);
}
.q-calendar-resource__head--interval:last-child {
  border-right: none;
}
.q-calendar-resource__resource {
  border-right: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  min-width: var(--calendar-resources-width);
  max-width: var(--calendar-resources-width);
}
.q-calendar-resource__resource:last-child {
  border-right: none;
}
.q-calendar-resource__resource--row {
  border-top: var(--calendar-border);
}
.q-calendar-resource__resource--row:first-child {
  border-top: none;
}
.q-calendar-resource__resource--section {
  border-right: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  min-width: var(--calendar-resources-width);
  max-width: var(--calendar-resources-width);
}
.q-calendar-resource__resource--interval {
  border-right: var(--calendar-border);
}
.q-calendar-resource__resource--interval:last-child {
  border-right: none;
}
.q-calendar-resource .q-calendar__child--expanded > .q-calendar-resource__resource--row {
  border-top: var(--calendar-border) !important;
}

.q-dark div .q-calendar-resource__head,
.body--dark div .q-calendar-resource__head,
.q-calendar--dark .q-calendar-resource__head {
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-resource__head--resources,
.body--dark div .q-calendar-resource__head--resources,
.q-calendar--dark .q-calendar-resource__head--resources {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-resource__head--interval,
.body--dark div .q-calendar-resource__head--interval,
.q-calendar--dark .q-calendar-resource__head--interval {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-resource__resource,
.body--dark div .q-calendar-resource__resource,
.q-calendar--dark .q-calendar-resource__resource {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-resource__resource--row,
.body--dark div .q-calendar-resource__resource--row,
.q-calendar--dark .q-calendar-resource__resource--row {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-resource__resource--section,
.body--dark div .q-calendar-resource__resource--section,
.q-calendar--dark .q-calendar-resource__resource--section {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-resource__resource--interval,
.body--dark div .q-calendar-resource__resource--interval,
.q-calendar--dark .q-calendar-resource__resource--interval {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-resource .q-calendar__child--expanded > .q-calendar-resource__resource--row,
.body--dark div .q-calendar-resource .q-calendar__child--expanded > .q-calendar-resource__resource--row,
.q-calendar--dark .q-calendar-resource .q-calendar__child--expanded > .q-calendar-resource__resource--row {
  border-top: var(--calendar-border-dark) !important;
}

.q-calendar-scheduler {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
}
.q-calendar-scheduler__head {
  position: relative;
  flex: none;
  display: flex;
  flex-direction: row;
}
.q-calendar-scheduler__head--resources {
  display: flex;
  flex-direction: row;
}
.q-calendar-scheduler__head--days__body {
  position: relative;
  display: flex;
  flex-direction: row;
  flex: 10000 1 0%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-scheduler__head--days__column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-scheduler__head--days__weekdays {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-scheduler__head--days__event {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
}
.q-calendar-scheduler__head--days__events {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  bottom: 0;
  left: 0;
  right: 0;
}
.q-calendar-scheduler__head--day {
  position: relative;
  flex: 1 1 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 0;
  outline: 0;
}
.q-calendar-scheduler__head--day__event {
  position: relative;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  overflow: hidden;
}
.q-calendar-scheduler__head--weekday, .q-calendar-scheduler__head--date, .q-calendar-scheduler__column-header--before, .q-calendar-scheduler__column-header--after {
  display: flex;
  flex-wrap: nowrap;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1rem;
}
.q-calendar-scheduler__head--weekday, .q-calendar-scheduler__head--date {
  margin: 2px;
  flex: 1 0 0;
}
.q-calendar-scheduler__head--day__label {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.q-calendar-scheduler__body {
  flex: 1 1 60%;
  overflow: hidden;
  display: flex;
  position: relative;
}
.q-calendar-scheduler__scroll-area {
  overflow: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}
.q-calendar-scheduler__pane {
  width: 100%;
  overflow: hidden;
  flex: none;
  display: flex;
  align-items: flex-start;
}
.q-calendar-scheduler__day--container {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.q-calendar-scheduler__resources--column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  -webkit-user-select: none;
          user-select: none;
}
.q-calendar-scheduler__resource {
  position: relative;
  display: flex;
  align-items: center;
  outline: 0;
}
.q-calendar-scheduler__resource--interval {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  vertical-align: middle;
  outline: 0;
}
.q-calendar-scheduler__resource--section {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  vertical-align: middle;
  outline: 0;
}
.q-calendar-scheduler__resource--text {
  position: relative;
  display: block;
  font-size: 12px;
  text-align: left;
  margin-left: 2px;
}
.q-calendar-scheduler__resource--row {
  position: relative;
  display: flex;
  flex: 1 0 100%;
}
.q-calendar-scheduler__resource--days {
  flex: 1 1 60%;
  overflow: hidden;
  display: flex;
  position: relative;
}
.q-calendar-scheduler__day {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  outline: 0;
}
.q-calendar-scheduler__day--section {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  outline: 0;
}
.q-calendar-scheduler__day--resource {
  position: relative;
  width: 100%;
  outline: 0;
  overflow: hidden;
}
.q-calendar-scheduler__day--resource__section {
  position: relative;
  width: 100%;
  outline: 0;
  overflow: hidden;
}

.q-calendar-scheduler__resource.q-calendar__sticky,
.q-calendar-scheduler__resource--section.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  z-index: 1;
}

.q-calendar-scheduler__head.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 2;
}

.q-calendar-scheduler__head--resources.q-calendar__sticky {
  position: sticky;
  left: 0; /* rtl:ignore */
  top: 0;
  z-index: 3;
}

.q-calendar-scheduler__head {
  border-bottom: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-scheduler__head--resources {
  border-right: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  min-width: var(--calendar-resources-width);
  max-width: var(--calendar-resources-width);
}
.q-calendar-scheduler__resource {
  border-right: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  min-width: var(--calendar-resources-width);
  max-width: var --calendar-resources-width;
}
.q-calendar-scheduler__resource--section {
  border-right: var(--calendar-border);
  color: var(--calendar-color);
  background: var(--calendar-background);
  min-width: var(--calendar-resources-width);
  max-width: var(--calendar-resources-width);
}
.q-calendar-scheduler__head--day {
  border-right: var(--calendar-border);
  font-weight: var(--calendar-head-font-weight);
}
.q-calendar-scheduler__head--day:last-child {
  border-right: none;
}
.q-calendar-scheduler__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color);
  background: var(--calendar-active-date-background);
}
.q-calendar-scheduler__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current);
}
.q-calendar-scheduler__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-scheduler__head--day__event {
  border-right: var(--calendar-border);
}
.q-calendar-scheduler__head--day__event:last-child {
  border-right: none;
}
.q-calendar-scheduler__column-header--before {
  border-bottom: var(--calendar-border);
}
.q-calendar-scheduler__column-header--after {
  border-top: var(--calendar-border);
}
.q-calendar-scheduler__resources--column {
  border-right: var(--calendar-border);
  min-width: var(--calendar-resources-width);
  max-width: var(--calendar-resources-width);
}
.q-calendar-scheduler__resource--row {
  border-top: var(--calendar-border);
}
.q-calendar-scheduler__resource--row:first-child {
  border-top: none !important;
}
.q-calendar-scheduler__day, .q-calendar-scheduler__day--section {
  border-right: var(--calendar-border);
}
.q-calendar-scheduler__day:last-child, .q-calendar-scheduler__day--section:last-child {
  border-right: none;
}
.q-calendar-scheduler__day.q-disabled-day, .q-calendar-scheduler__day--section.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-calendar-scheduler__day--resource {
  border-top: var(--calendar-border);
}
.q-calendar-scheduler__day--resource.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-scheduler__day--resource.q-range-first, .q-calendar-scheduler__day--resource.q-range-last, .q-calendar-scheduler__day--resource.q-range {
  color: var(--calendar-range-color);
  background: var(--calendar-range-background);
}
.q-calendar-scheduler__day--resource__section {
  border-top: var(--calendar-border-section);
}
.q-calendar-scheduler__day--resource__section.q-selected {
  color: var(--calendar-selected-color);
  background: var(--calendar-selected-background);
}
.q-calendar-scheduler__day--resource__section.q-range-first, .q-calendar-scheduler__day--resource__section.q-range-last, .q-calendar-scheduler__day--resource__section.q-range {
  color: var(--calendar-range-color);
  background: var --calendar-range-background;
}
.q-calendar-scheduler__day--resource__section:first-child {
  border-top: none !important;
}
.q-calendar-scheduler__day--resource__section:last-child {
  border-bottom: none !important;
}
.q-calendar-scheduler .q-calendar__child--expanded > .q-calendar-scheduler__resource--row {
  border-top: var(--calendar-border) !important;
}

.q-dark div .q-calendar-scheduler__head,
.body--dark div .q-calendar-scheduler__head,
.q-calendar--dark .q-calendar-scheduler__head {
  border-bottom: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-scheduler__resource,
.body--dark div .q-calendar-scheduler__resource,
.q-calendar--dark .q-calendar-scheduler__resource {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-scheduler__resource--section,
.body--dark div .q-calendar-scheduler__resource--section,
.q-calendar--dark .q-calendar-scheduler__resource--section {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-scheduler__head--resources,
.body--dark div .q-calendar-scheduler__head--resources,
.q-calendar--dark .q-calendar-scheduler__head--resources {
  border-right: var(--calendar-border-dark);
  color: var(--calendar-color-dark);
  background: var(--calendar-background-dark);
}
.q-dark div .q-calendar-scheduler__head--day,
.body--dark div .q-calendar-scheduler__head--day,
.q-calendar--dark .q-calendar-scheduler__head--day {
  border-right: var(--calendar-border-dark);
  font-weight: var(--calendar-head-font-weight);
}
.q-dark div .q-calendar-scheduler__head--day:last-child,
.body--dark div .q-calendar-scheduler__head--day:last-child,
.q-calendar--dark .q-calendar-scheduler__head--day:last-child {
  border-right: none;
}
.q-dark div .q-calendar-scheduler__head--day.q-active-date .q-calendar__button,
.body--dark div .q-calendar-scheduler__head--day.q-active-date .q-calendar__button,
.q-calendar--dark .q-calendar-scheduler__head--day.q-active-date .q-calendar__button {
  color: var(--calendar-active-date-color-dark);
  background: var(--calendar-active-date-background-dark);
}
.q-dark div .q-calendar-scheduler__head--day.q-current-day .q-calendar__button,
.body--dark div .q-calendar-scheduler__head--day.q-current-day .q-calendar__button,
.q-calendar--dark .q-calendar-scheduler__head--day.q-current-day .q-calendar__button {
  border: var(--calendar-border-current-dark);
}
.q-dark div .q-calendar-scheduler__head--day__event,
.body--dark div .q-calendar-scheduler__head--day__event,
.q-calendar--dark .q-calendar-scheduler__head--day__event {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__head--day.q-disabled-day,
.body--dark div .q-calendar-scheduler__head--day.q-disabled-day,
.q-calendar--dark .q-calendar-scheduler__head--day.q-disabled-day {
  color: var(--calendar-disabled-date-color-dark);
  background: var(--calendar-disabled-date-background-dark) !important;
}
.q-dark div .q-calendar-scheduler__column-header--before,
.body--dark div .q-calendar-scheduler__column-header--before,
.q-calendar--dark .q-calendar-scheduler__column-header--before {
  border-bottom: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__column-header--after,
.body--dark div .q-calendar-scheduler__column-header--after,
.q-calendar--dark .q-calendar-scheduler__column-header--after {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__resources--column,
.body--dark div .q-calendar-scheduler__resources--column,
.q-calendar--dark .q-calendar-scheduler__resources--column {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__resource--row,
.body--dark div .q-calendar-scheduler__resource--row,
.q-calendar--dark .q-calendar-scheduler__resource--row {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__day, .q-dark div .q-calendar-scheduler__day--section,
.body--dark div .q-calendar-scheduler__day,
.body--dark div .q-calendar-scheduler__day--section,
.q-calendar--dark .q-calendar-scheduler__day,
.q-calendar--dark .q-calendar-scheduler__day--section {
  border-right: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__day:last-child, .q-dark div .q-calendar-scheduler__day--section:last-child,
.body--dark div .q-calendar-scheduler__day:last-child,
.body--dark div .q-calendar-scheduler__day--section:last-child,
.q-calendar--dark .q-calendar-scheduler__day:last-child,
.q-calendar--dark .q-calendar-scheduler__day--section:last-child {
  border-right: none;
}
.q-dark div .q-calendar-scheduler__day.q-disabled-day, .q-dark div .q-calendar-scheduler__day--section.q-disabled-day,
.body--dark div .q-calendar-scheduler__day.q-disabled-day,
.body--dark div .q-calendar-scheduler__day--section.q-disabled-day,
.q-calendar--dark .q-calendar-scheduler__day.q-disabled-day,
.q-calendar--dark .q-calendar-scheduler__day--section.q-disabled-day {
  color: var(--calendar-disabled-date-color);
  background: var(--calendar-disabled-date-background) !important;
}
.q-dark div .q-calendar-scheduler__day--resource,
.body--dark div .q-calendar-scheduler__day--resource,
.q-calendar--dark .q-calendar-scheduler__day--resource {
  border-top: var(--calendar-border-dark);
}
.q-dark div .q-calendar-scheduler__day--resource.q-selected,
.body--dark div .q-calendar-scheduler__day--resource.q-selected,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-scheduler__day--resource.q-range-first, .q-dark div .q-calendar-scheduler__day--resource.q-range-last, .q-dark div .q-calendar-scheduler__day--resource.q-range,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last,
.body--dark div .q-calendar-scheduler__day--resource.q-range,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}
.q-dark div .q-calendar-scheduler__day--resource.q-range-first:first-child, .q-dark div .q-calendar-scheduler__day--resource.q-range-last:first-child, .q-dark div .q-calendar-scheduler__day--resource.q-range:first-child,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first:first-child,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last:first-child,
.body--dark div .q-calendar-scheduler__day--resource.q-range:first-child,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first:first-child,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last:first-child,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range:first-child {
  border-top: none !important;
}
.q-dark div .q-calendar-scheduler__day--resource.q-range-first:last-child, .q-dark div .q-calendar-scheduler__day--resource.q-range-last:last-child, .q-dark div .q-calendar-scheduler__day--resource.q-range:last-child,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first:last-child,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last:last-child,
.body--dark div .q-calendar-scheduler__day--resource.q-range:last-child,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first:last-child,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last:last-child,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range:last-child {
  border-bottom: none !important;
}
.q-dark div .q-calendar-scheduler__day--resource.q-range-first__section, .q-dark div .q-calendar-scheduler__day--resource.q-range-last__section, .q-dark div .q-calendar-scheduler__day--resource.q-range__section,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first__section,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last__section,
.body--dark div .q-calendar-scheduler__day--resource.q-range__section,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first__section,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last__section,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range__section {
  border-top: var(--calendar-border-section-dark);
}
.q-dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-selected, .q-dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-selected, .q-dark div .q-calendar-scheduler__day--resource.q-range__section.q-selected,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-selected,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-selected,
.body--dark div .q-calendar-scheduler__day--resource.q-range__section.q-selected,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first__section.q-selected,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last__section.q-selected,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range__section.q-selected {
  color: var(--calendar-selected-color-dark);
  background: var(--calendar-selected-background-dark);
}
.q-dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-range-first, .q-dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-range-last, .q-dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-range, .q-dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-range-first, .q-dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-range-last, .q-dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-range, .q-dark div .q-calendar-scheduler__day--resource.q-range__section.q-range-first, .q-dark div .q-calendar-scheduler__day--resource.q-range__section.q-range-last, .q-dark div .q-calendar-scheduler__day--resource.q-range__section.q-range,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-range-first,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-range-last,
.body--dark div .q-calendar-scheduler__day--resource.q-range-first__section.q-range,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-range-first,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-range-last,
.body--dark div .q-calendar-scheduler__day--resource.q-range-last__section.q-range,
.body--dark div .q-calendar-scheduler__day--resource.q-range__section.q-range-first,
.body--dark div .q-calendar-scheduler__day--resource.q-range__section.q-range-last,
.body--dark div .q-calendar-scheduler__day--resource.q-range__section.q-range,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first__section.q-range-first,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first__section.q-range-last,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-first__section.q-range,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last__section.q-range-first,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last__section.q-range-last,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range-last__section.q-range,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range__section.q-range-first,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range__section.q-range-last,
.q-calendar--dark .q-calendar-scheduler__day--resource.q-range__section.q-range {
  color: var(--calendar-range-color-dark);
  background: var(--calendar-range-background-dark);
}
.q-dark div .q-calendar-scheduler .q-calendar__child--expanded > .q-calendar-scheduler__resource--row,
.body--dark div .q-calendar-scheduler .q-calendar__child--expanded > .q-calendar-scheduler__resource--row,
.q-calendar--dark .q-calendar-scheduler .q-calendar__child--expanded > .q-calendar-scheduler__resource--row {
  border-top: var(--calendar-border-dark) !important;
}
/* Overlay */
.global-loader-overlay[data-v-365b0232] {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 18, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Card */
.global-loader-container[data-v-365b0232] {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem 2.5rem 1.75rem;
  text-align: center;
  min-width: 200px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 24px 56px rgba(46, 125, 50, 0.14);
}

/* Top accent bar (matches login card) */
.accent-bar[data-v-365b0232] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1b5e20 0%, #43a047 50%, #81c784 100%);
  margin: -2rem -2.5rem 0;
}

/* SVG spinner */
.spinner-wrap[data-v-365b0232] {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.spinner-svg[data-v-365b0232] {
  width: 52px;
  height: 52px;
  animation: spin-365b0232 1.6s linear infinite;
}
.spinner-track[data-v-365b0232] {
  fill: none;
  stroke: #e8f5e9;
  stroke-width: 4;
}
.spinner-arc[data-v-365b0232] {
  fill: none;
  stroke: url(#spinnerGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 138;
  stroke-dashoffset: 104;
  animation: arc-dash-365b0232 1.6s ease-in-out infinite;
}
@keyframes spin-365b0232 {
to { transform: rotate(360deg);
}
}
@keyframes arc-dash-365b0232 {
0%   { stroke-dashoffset: 115;
}
50%  { stroke-dashoffset: 28;
}
100% { stroke-dashoffset: 115;
}
}

/* Message */
.loading-message[data-v-365b0232] {
  color: #444;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Fade transition */
.fade-enter-active[data-v-365b0232],
.fade-leave-active[data-v-365b0232] {
  transition: opacity 0.2s ease;
}
.fade-enter-from[data-v-365b0232],
.fade-leave-to[data-v-365b0232] {
  opacity: 0;
}

.erp-chat-widget[data-v-8b112784] {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --brand-1: #1565c0;
  --brand-2: #1e88e5;
  --brand-3: #64b5f6;
  --surface-1: #f5f8ff;
  --surface-2: #ffffff;
  --text-main: #14213d;
  --text-subtle: #5f6e85;
}
.chat-fab[data-v-8b112784] {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(140deg, var(--brand-2), var(--brand-1));
  border: none;
  box-shadow: 0 24px 34px rgba(21, 101, 192, 0.28);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease;
}
.chat-fab[data-v-8b112784]:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 28px 36px rgba(21, 101, 192, 0.34);
}
.fab-ping[data-v-8b112784] {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(100, 181, 246, 0.45);
  animation: pulse-ring-8b112784 2.2s infinite;
}
.fab-label[data-v-8b112784] {
  position: absolute;
  right: 80px;
  background: rgba(20, 33, 61, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 7px 10px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: all 0.2s ease;
}
.chat-fab:hover .fab-label[data-v-8b112784] {
  opacity: 1;
  transform: translateX(0);
}
.icon-chat[data-v-8b112784] {
  width: 30px;
  height: 30px;
  color: white;
}
.chat-window[data-v-8b112784] {
  width: min(430px, calc(100vw - 24px));
  height: min(700px, 84vh);
  background: linear-gradient(180deg, #f7faff, #edf4ff 58%, #eaf2ff);
  border-radius: 24px;
  box-shadow: 0 34px 64px rgba(15, 23, 42, 0.24);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(150, 185, 232, 0.35);
  backdrop-filter: blur(18px);
}
.chat-header[data-v-8b112784] {
  padding: 16px 18px;
  background: linear-gradient(132deg, #0b4fa5, #1a73d9 65%, #3b9cff);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.header-glow[data-v-8b112784] {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
  pointer-events: none;
}
.header-left[data-v-8b112784] {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.avatar-bot[data-v-8b112784] {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(6px);
}
.header-info h3[data-v-8b112784] {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.header-subtitle[data-v-8b112784] {
  margin: 1px 0 4px;
  font-size: 12px;
  opacity: 0.82;
}
.status-indicator[data-v-8b112784] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.95;
}
.status-dot[data-v-8b112784] {
  width: 8px;
  height: 8px;
  background-color: #90f0a9;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(144, 240, 169, 0.2);
  animation: pulse-dot-8b112784 1.6s infinite;
}
.close-btn[data-v-8b112784] {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1;
}
.close-btn[data-v-8b112784]:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}
.chat-messages[data-v-8b112784] {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.94), transparent 42%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(236, 244, 255, 0.95));
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 141, 193, 0.42) transparent;
}
.chat-messages[data-v-8b112784]::-webkit-scrollbar {
  width: 7px;
}
.chat-messages[data-v-8b112784]::-webkit-scrollbar-thumb {
  background: rgba(108, 141, 193, 0.45);
  border-radius: 999px;
}
.empty-state[data-v-8b112784] {
  text-align: center;
  margin-top: 14%;
  color: var(--text-subtle);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(195, 213, 244, 0.7);
  border-radius: 22px;
  padding: 24px 16px;
  box-shadow: 0 12px 30px rgba(70, 114, 176, 0.13);
}
.empty-icon[data-v-8b112784] {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: linear-gradient(160deg, #e1efff, #ffffff);
  color: #1565c0;
}
.empty-icon svg[data-v-8b112784] {
  width: 27px;
  height: 27px;
}
.empty-title[data-v-8b112784] {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
}
.empty-subtitle[data-v-8b112784] {
  margin: 8px auto 0;
  max-width: 240px;
  font-size: 13px;
}
.suggestions-grid[data-v-8b112784] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.suggestion-chip[data-v-8b112784] {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d2e4ff;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #35547a;
  cursor: pointer;
  transition: all 0.22s ease;
}
.suggestion-chip[data-v-8b112784]:hover {
  background: linear-gradient(180deg, #f4f9ff, #deedff);
  border-color: #91bbf2;
  color: #164d87;
  transform: translateY(-1px);
}
.message-row[data-v-8b112784] {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.user-row[data-v-8b112784] {
  justify-content: flex-end;
}
.bot-row[data-v-8b112784] {
  justify-content: flex-start;
}
.message-avatar[data-v-8b112784] {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(140deg, #d9ebff, #eff6ff);
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.message-bubble[data-v-8b112784] {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 6px 22px rgba(50, 84, 139, 0.1);
}
.user-bubble[data-v-8b112784] {
  background: linear-gradient(134deg, #1b72d6, #0f5ec4);
  color: white;
  border-bottom-right-radius: 6px;
}
.bot-bubble[data-v-8b112784] {
  background: rgba(255, 255, 255, 0.98);
  color: #1e3858;
  border-bottom-left-radius: 6px;
  border: 1px solid #d6e5fb;
}
.message-content[data-v-8b112784] {
  white-space: pre-wrap;
  word-break: break-word;
}
.message-meta[data-v-8b112784] {
  font-size: 10px;
  margin-top: 5px;
  opacity: 0.74;
  text-align: right;
}
.data-table-wrapper[data-v-8b112784] {
  margin-top: 10px;
  background: #f8fbff;
  border-radius: 10px;
  overflow-x: auto;
  border: 1px solid #dce9fb;
}
.data-table[data-v-8b112784] {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 300px;
}
.data-table th[data-v-8b112784] {
  background: #edf4ff;
  padding: 8px 10px;
  text-align: left;
  color: #35547a;
  font-weight: 600;
}
.data-table td[data-v-8b112784] {
  padding: 8px 10px;
  border-top: 1px solid #dfebfd;
  color: #24415f;
}
.table-footer[data-v-8b112784] {
  padding: 6px;
  text-align: center;
  font-size: 11px;
  color: #4e6788;
  background: #edf4ff;
}
.typing-bubble[data-v-8b112784] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.typing-label[data-v-8b112784] {
  font-size: 12px;
  font-weight: 600;
  color: #4b6384;
}
.typing-dots[data-v-8b112784] {
  display: flex;
  gap: 4px;
  padding: 2px 0;
}
.typing-dots span[data-v-8b112784] {
  width: 7px;
  height: 7px;
  background: #7f9ec8;
  border-radius: 50%;
  animation: bounce-8b112784 1.4s infinite ease-in-out both;
}
.typing-dots span[data-v-8b112784]:nth-child(1) { animation-delay: -0.32s;
}
.typing-dots span[data-v-8b112784]:nth-child(2) { animation-delay: -0.16s;
}
@keyframes bounce-8b112784 {
0%, 80%, 100% { transform: scale(0);
}
40% { transform: scale(1);
}
}
.chat-input-area[data-v-8b112784] {
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(235, 245, 255, 0.95));
  border-top: 1px solid rgba(168, 196, 237, 0.4);
  display: flex;
  gap: 10px;
}
.input-shell[data-v-8b112784] {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d3e4fb;
  border-radius: 14px;
  padding: 0 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.input-shell[data-v-8b112784]:focus-within {
  border-color: #59a0f0;
  box-shadow: 0 0 0 4px rgba(94, 161, 239, 0.18);
}
.input-shell.is-disabled[data-v-8b112784] {
  opacity: 0.72;
}
.input-icon[data-v-8b112784] {
  width: 16px;
  height: 16px;
  color: #6f87a8;
}
.chat-input-area input[data-v-8b112784] {
  flex: 1;
  height: 44px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #153250;
  background: transparent;
}
.chat-input-area input[data-v-8b112784]::placeholder {
  color: #8195b1;
}
.send-btn[data-v-8b112784] {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: none;
  background: #ddeafc;
  color: #7f98ba;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.send-btn.active[data-v-8b112784] {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: white;
  box-shadow: 0 12px 20px rgba(20, 102, 193, 0.34);
}
.send-btn[data-v-8b112784]:hover:not(:disabled) {
  transform: translateY(-1px);
}
.send-btn[data-v-8b112784]:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
.send-btn svg[data-v-8b112784] {
  width: 19px;
  height: 19px;
}
.scale-fade-enter-active[data-v-8b112784], .scale-fade-leave-active[data-v-8b112784] {
  transition: all 0.26s ease;
}
.scale-fade-enter-from[data-v-8b112784], .scale-fade-leave-to[data-v-8b112784] {
  opacity: 0;
  transform: scale(0.8);
}
.slide-up-enter-active[data-v-8b112784], .slide-up-leave-active[data-v-8b112784] {
  transition: all 0.34s cubic-bezier(0.18, 0.9, 0.26, 1);
}
.slide-up-enter-from[data-v-8b112784], .slide-up-leave-to[data-v-8b112784] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
}
.message-in-enter-active[data-v-8b112784] {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.message-in-leave-active[data-v-8b112784] {
  transition: all 0.2s ease;
  position: absolute;
}
.message-in-enter-from[data-v-8b112784] {
  opacity: 0;
  transform: translateY(10px);
}
.message-in-leave-to[data-v-8b112784] {
  opacity: 0;
  transform: scale(0.98);
}
@keyframes pulse-dot-8b112784 {
0%, 100% { transform: scale(1);
}
50% { transform: scale(0.82);
}
}
@keyframes pulse-ring-8b112784 {
0%, 100% { transform: scale(1); opacity: 0.95;
}
50% { transform: scale(1.05); opacity: 0.45;
}
}
@media (max-width: 680px) {
.erp-chat-widget[data-v-8b112784] {
    right: 12px;
    bottom: 12px;
}
.chat-window[data-v-8b112784] {
    width: calc(100vw - 24px);
    height: min(78vh, 640px);
    border-radius: 20px;
}
.chat-messages[data-v-8b112784] {
    padding: 14px;
}
.message-bubble[data-v-8b112784] {
    max-width: 88%;
}
.fab-label[data-v-8b112784] {
    display: none;
}
}

/* No styles needed - this is just a conditional wrapper */

.q-drawer[data-v-114b2532] {
  width: 280px; /* Increased width to accommodate submenus */
}
.q-item[data-v-114b2532] {
  transition: all 0.3s ease;
}
.q-item[data-v-114b2532]:hover:not(.q-item--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}
.q-item--disabled[data-v-114b2532] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-114b2532] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-114b2532] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-114b2532]:hover {
  background-color: #1da237 !important;
}

/* Inventory Submenu Styles */
.inv-expansion-header[data-v-114b2532] {
  background-color: rgba(76, 175, 80, 0.1);
  border-left: 3px solid #4caf50;
}
.inv-submenu-item[data-v-114b2532] {
  padding-left: 16px;
  transition: all 0.2s ease;
}
.inv-submenu-item[data-v-114b2532]:hover {
  background-color: rgba(76, 175, 80, 0.05);
}
.inv-submenu-item--active[data-v-114b2532] {
  background-color: rgba(76, 175, 80, 0.15);
  border-left: 3px solid #4caf50;
  color: #2e7d32;
  font-weight: 500;
}
.inv-submenu-item--active .q-item__section--avatar[data-v-114b2532] {
  color: #4caf50;
}

/* Expansion item styles */
.q-expansion-item__header[data-v-114b2532] {
  font-weight: 600;
}
.q-expansion-item__header[data-v-114b2532]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Submenu section headers */
.q-item-label[data-v-114b2532] {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 4px;
}
.q-item-label[data-v-114b2532]::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: #e0e0e0;
  margin-top: 4px;
}

/* Separator styling */
.q-separator[data-v-114b2532] {
  margin: 8px 0;
  background-color: #e0e0e0;
}

/* Global styles for the layout can be added here */
.q-layout[data-v-22477958] {
  transition: all 0.3s ease;
}
.q-page-container[data-v-22477958] {
  transition: opacity 0.3s ease;
}

/* Loading state styles */
.q-page-container--loading[data-v-22477958] {
  opacity: 0.7;
  pointer-events: none;
}

/* Custom styles for the sidebar */
.q-drawer[data-v-a9128250] {
  width: 280px;
  position: relative;
}

/* Style for expansion item headers */
.q-expansion-item__header[data-v-a9128250] {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 4px;
  color: #000;
}

/* Style for submenu items */
.q-expansion-item .q-item[data-v-a9128250] {
  padding-left: 32px;
  min-height: 40px;
}

/* Hover effect for menu items */
.q-item[data-v-a9128250]:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Active state for menu items */
.q-item--active[data-v-a9128250] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item--active .q-icon[data-v-a9128250] {
  color: white !important;
}

/* Disabled state for navigation items */
.q-item--disabled[data-v-a9128250] {
  opacity: 0.6;
  cursor: not-allowed;
}
.q-item--disabled[data-v-a9128250]:hover {
  background-color: transparent;
}

/* Expansion item icon styling */
.q-expansion-item__icon[data-v-a9128250] {
  color: #000;
}

/* Submenu item icons */
.q-expansion-item .q-item .q-icon[data-v-a9128250] {
  color: #000;
}

/* Logout button positioning */
.logout-item[data-v-a9128250] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
}

/* Ensure proper spacing for logout */
.q-drawer .q-list[data-v-a9128250] {
  padding-bottom: 80px;
}

.store-selector[data-v-8815d82e] {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.store-indicator[data-v-8815d82e] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}
.store-indicator.clickable[data-v-8815d82e]:hover {
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.store-indicator[data-v-8815d82e]:not(.clickable) {
  cursor: default;
}
.store-info[data-v-8815d82e] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.store-name[data-v-8815d82e] {
  font-size: 14px;
  font-weight: 500;
  color: #424242;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store-menu[data-v-8815d82e] {
  min-width: 280px;
}
.store-selected[data-v-8815d82e] {
  background-color: rgba(0, 123, 255, 0.1);
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
.store-indicator[data-v-8815d82e] {
    background: rgba(0, 0, 0, 0.2);
}
.store-indicator[data-v-8815d82e]:hover {
    background: rgba(0, 0, 0, 0.3);
}
.store-name[data-v-8815d82e] {
    color: white;
}
}

.q-drawer[data-v-01a2f6c1] {
  width: 280px;
}
.q-expansion-item[data-v-01a2f6c1] {
  border-radius: 8px;
  margin: 4px 8px;
}
.q-expansion-item--expanded[data-v-01a2f6c1] {
  background-color: rgba(0, 0, 0, 0.05);
}
.q-item[data-v-01a2f6c1] {
  border-radius: 8px;
  margin: 2px 8px;
  transition: all 0.3s ease;
}
.q-item[data-v-01a2f6c1]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-01a2f6c1] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-01a2f6c1] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-01a2f6c1]:hover {
  background-color: #1da237 !important;
}

/* Custom styles for the sidebar */
.q-drawer[data-v-78caa1b1] {
  width: 280px;
}
.q-item-label[data-v-78caa1b1] {
  font-weight: bold;
  color: #1976d2;
  margin-top: 16px;
  margin-bottom: 8px;
}
.q-expansion-item[data-v-78caa1b1] {
  margin-bottom: 4px;
}
.q-expansion-item .q-item[data-v-78caa1b1] {
  padding-left: 16px;
}
.q-item[data-v-78caa1b1] {
  border-radius: 8px;
  margin: 2px 8px;
}
.q-item[data-v-78caa1b1]:hover {
  background-color: #f5f5f5;
}
.q-item.q-router-link-active[data-v-78caa1b1] {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-78caa1b1] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-78caa1b1] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-78caa1b1]:hover {
  background-color: #1da237 !important;
}

.q-drawer[data-v-2b040dc0] { width: 270px;
}
.q-item[data-v-2b040dc0] {
  transition: all 0.3s ease;
}
.q-item[data-v-2b040dc0]:hover:not(.q-item--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-2b040dc0] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-2b040dc0] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-2b040dc0]:hover {
  background-color: #1da237 !important;
}

.q-drawer[data-v-8fb8fbe0] {
  width: 250px;
}
.q-item[data-v-8fb8fbe0] {
  transition: all 0.3s ease;
}
.q-item[data-v-8fb8fbe0]:hover:not(.q-item--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}
.q-item--disabled[data-v-8fb8fbe0] {
  opacity: 0.6;
  cursor: not-allowed;
}
.q-expansion-item[data-v-8fb8fbe0] {
  margin-bottom: 4px;
}
.q-expansion-item__content[data-v-8fb8fbe0] {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-8fb8fbe0] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-8fb8fbe0] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-8fb8fbe0]:hover {
  background-color: #1da237 !important;
}

.message-context-menu[data-v-afc8b7b0] {
  z-index: 10000;
}
.menu-item[data-v-afc8b7b0] {
  transition: background-color 0.2s ease;
}
.menu-item[data-v-afc8b7b0]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.message-bubble-wrapper[data-v-4a7667f4] {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 0 8px;
}
.message-sender[data-v-4a7667f4] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 2px;
  margin-left: 12px;
  align-self: flex-start;
}
.message-own .message-sender[data-v-4a7667f4] {
  align-self: flex-end;
  margin-right: 12px;
  margin-left: 0;
}
.message-bubble[data-v-4a7667f4] {
  max-width: 70%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.message-own .message-bubble[data-v-4a7667f4] {
  align-self: flex-end;
}
.message-content[data-v-4a7667f4] {
  background-color: var(--q-grey-1);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  color: var(--q-dark); /* Ensure text is dark on light background */
}
.message-own .message-content[data-v-4a7667f4] {
  background-color: var(--q-green-1); /* Subtle green for own messages */
  border-bottom-right-radius: 4px;
}
.message-text[data-v-4a7667f4] {
  font-size: 14px;
  line-height: 1.4;
  color: var(--q-dark); /* Ensure text is dark on light background */
  word-wrap: break-word;
  margin-bottom: 4px;
}
.message-own .message-text[data-v-4a7667f4] {
  color: var(--q-dark); /* Ensure text is dark on light background */
}
.message-meta[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-height: 16px;
}
.message-time[data-v-4a7667f4] {
  font-size: 11px;
  color: #8e8e8e;
  font-weight: 400;
}
.message-status[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.2s ease;
}
.message-status[data-v-4a7667f4]:hover {
  transform: scale(1.1);
}
.status-icon[data-v-4a7667f4] {
  margin-left: 2px;
}

/* Message Tail (WhatsApp-style bubble tail) */
.message-tail[data-v-4a7667f4] {
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right-color: var(--q-grey-1); /* Match received message background */
  border-bottom-color: var(--q-grey-1);
}
.message-own .message-tail[data-v-4a7667f4] {
  left: auto;
  right: -8px;
  border-right-color: var(--q-green-1); /* Match own message background */
  border-bottom-color: var(--q-green-1);
}

/* Hover effects */
.message-bubble:hover .message-content[data-v-4a7667f4] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Animations for new messages */
@keyframes messageSlideInLeft-4a7667f4 {
from {
    opacity: 0;
    transform: translateX(-20px) translateY(10px);
}
to {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
}
@keyframes messageSlideInRight-4a7667f4 {
from {
    opacity: 0;
    transform: translateX(20px) translateY(10px);
}
to {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
}
@keyframes messagePulse-4a7667f4 {
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.02);
}
}
@keyframes fadeIn-4a7667f4 {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes reactionPop-4a7667f4 {
0% {
    transform: scale(0);
    opacity: 0;
}
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
.message-bubble-wrapper[data-v-4a7667f4] {
  animation: fadeIn-4a7667f4 0.3s ease-out;
}
.message-bubble-wrapper[data-v-4a7667f4]:not(.message-own) {
  animation: messageSlideInLeft-4a7667f4 0.4s ease-out;
}
.message-bubble-wrapper.message-own[data-v-4a7667f4] {
  animation: messageSlideInRight-4a7667f4 0.4s ease-out;
}

/* Pulse animation for newly received messages */
.message-bubble-wrapper.message-new[data-v-4a7667f4] {
  animation: messageSlideInLeft-4a7667f4 0.4s ease-out,messagePulse-4a7667f4 0.6s ease-out 0.4s;
}
.message-bubble-wrapper.message-own.message-new[data-v-4a7667f4] {
  animation: messageSlideInRight-4a7667f4 0.4s ease-out,messagePulse-4a7667f4 0.6s ease-out 0.4s;
}

/* Reaction animations */
.message-reactions .reaction-item[data-v-4a7667f4] {
  animation: reactionPop-4a7667f4 0.3s ease-out;
  transition: transform 0.2s ease;
}
.message-reactions .reaction-item[data-v-4a7667f4]:hover {
  transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.message-bubble[data-v-4a7667f4] {
    max-width: 85%;
}
.message-content[data-v-4a7667f4] {
    padding: 10px 14px;
}
.message-text[data-v-4a7667f4] {
    font-size: 13px;
}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.message-content[data-v-4a7667f4] {
    background-color: #2d2d2d;
    color: #ffffff;
}
.message-own .message-content[data-v-4a7667f4] {
    background-color: #056162;
}
.message-text[data-v-4a7667f4] {
    color: #ffffff;
}
.message-tail[data-v-4a7667f4] {
    border-right-color: #2d2d2d;
    border-bottom-color: #2d2d2d;
}
.message-own .message-tail[data-v-4a7667f4] {
    border-right-color: #056162;
    border-bottom-color: #056162;
}
}

/* File Attachment Styles */
.message-attachment[data-v-4a7667f4] {
  margin-top: 8px;
}

/* Audio Attachment Styles */
.audio-attachment[data-v-4a7667f4] {
  margin: 4px 0;
}
.audio-player[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--q-grey-1);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 200px;
  max-width: 300px;
}
.message-own .audio-player[data-v-4a7667f4] {
  background-color: var(--q-green-1);
}
.audio-play-button[data-v-4a7667f4] {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}
.audio-play-button[data-v-4a7667f4]:hover {
  background-color: white;
  color: black;
}
.message-own .audio-play-button[data-v-4a7667f4] {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}
.message-own .audio-play-button[data-v-4a7667f4]:hover {
  background-color: white;
  color: black;
}
.audio-info[data-v-4a7667f4] {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.audio-duration[data-v-4a7667f4] {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}
.message-own .audio-duration[data-v-4a7667f4] {
  color: var(--q-dark);
}
.audio-progress-slider[data-v-4a7667f4] {
  width: 100%;
}
.audio-progress-slider[data-v-4a7667f4] .q-slider__track {
  height: 4px;
}
.audio-progress-slider[data-v-4a7667f4] .q-slider__thumb {
  width: 12px;
  height: 12px;
}

/* Image with text layout */
.message-text + .message-attachment[data-v-4a7667f4] {
  margin-top: 12px;
}
.image-attachment[data-v-4a7667f4] {
  max-width: 320px;
  max-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 4px 0;
  position: relative;
}
.image-attachment[data-v-4a7667f4]:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.image-wrapper[data-v-4a7667f4] {
  position: relative;
  width: 100%;
  height: 100%;
}
.attachment-image[data-v-4a7667f4] {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.image-actions[data-v-4a7667f4] {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.image-attachment:hover .image-actions[data-v-4a7667f4] {
  opacity: 1;
}
.image-action-btn[data-v-4a7667f4] {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0.9;
}
.image-action-btn[data-v-4a7667f4]:hover {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.file-attachment[data-v-4a7667f4] {
  background-color: var(--q-grey-2); /* Lighter background for attachments */
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.file-attachment[data-v-4a7667f4]:hover {
  background-color: var(--q-grey-3); /* Slightly darker on hover */
}
.file-info[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-icon[data-v-4a7667f4] {
  flex-shrink: 0;
}
.file-details[data-v-4a7667f4] {
  flex: 1;
  min-width: 0;
}
.file-name[data-v-4a7667f4] {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  word-break: break-word;
  margin-bottom: 2px;
}
.file-size[data-v-4a7667f4] {
  font-size: 12px;
  color: #666;
}
.download-icon[data-v-4a7667f4] {
  flex-shrink: 0;
  opacity: 0.7;
}
.message-own .file-attachment[data-v-4a7667f4] {
  background-color: var(--q-green-1); /* Subtle green for own message attachments */
  border-color: var(--q-green-2);
}
.message-own .file-attachment[data-v-4a7667f4]:hover {
  background-color: var(--q-green-2); /* Slightly darker on hover */
}
.message-own .file-name[data-v-4a7667f4] {
  color: var(--q-dark);
}
.message-own .file-size[data-v-4a7667f4] {
  color: var(--q-grey-7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.image-attachment[data-v-4a7667f4] {
    max-width: 280px;
    max-height: 350px;
}
.file-attachment[data-v-4a7667f4] {
    padding: 10px;
}
.file-info[data-v-4a7667f4] {
    gap: 8px;
}
}
@media (max-width: 480px) {
.image-attachment[data-v-4a7667f4] {
    max-width: 240px;
    max-height: 300px;
}
}

/* Image Viewer Modal */
.image-viewer-modal[data-v-4a7667f4] {
  position: relative;
  background: rgba(0, 0, 0, 0.9);
  width: 90%;
  max-width: 95%;
  height: 100vh;
  max-height: 90vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
  border-radius: 8px;
}
.image-viewer-header[data-v-4a7667f4] {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1000;
}
.close-button[data-v-4a7667f4] {
  background: rgba(0, 0, 0, 0.5);
}
.image-viewer-content[data-v-4a7667f4] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}
.viewer-image[data-v-4a7667f4] {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* PDF Preview Styles */
.pdf-attachment[data-v-4a7667f4] {
  margin: 4px 0;
}
.pdf-preview[data-v-4a7667f4] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--q-grey-1); /* Light background for PDF preview */
  border: 2px solid var(--q-primary); /* Green border accent */
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}
.pdf-preview[data-v-4a7667f4]:hover {
  background-color: var(--q-grey-2);
  border-color: var(--q-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Lighter shadow */
}
.pdf-preview-content[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.pdf-icon[data-v-4a7667f4] {
  flex-shrink: 0;
}
.pdf-info[data-v-4a7667f4] {
  flex: 1;
  min-width: 0;
}
.pdf-hint[data-v-4a7667f4] {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-style: italic;
}
.pdf-actions[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
}
.pdf-action-btn[data-v-4a7667f4] {
  opacity: 0.8;
  transition: opacity 0.2s ease;
  color: var(--q-primary); /* Green accent for PDF action buttons */
}
.pdf-action-btn[data-v-4a7667f4]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* PDF Viewer Modal */
.pdf-viewer-modal[data-v-4a7667f4] {
  position: relative;
  background: rgba(0, 0, 0, 0.95);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.pdf-viewer-header[data-v-4a7667f4] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
.pdf-viewer-title[data-v-4a7667f4] {
  color: white;
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 16px;
}
.pdf-viewer-actions[data-v-4a7667f4] {
  display: flex;
  gap: 8px;
}
.action-button[data-v-4a7667f4] {
  background: rgba(255, 255, 255, 0.1);
}
.pdf-viewer-content[data-v-4a7667f4] {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding-top: 60px;
  position: relative;
}
.pdf-viewer-embed[data-v-4a7667f4] {
  width: 100%;
  height: 100%;
  border: none;
  background: white;
  min-height: 0;
  flex: 1;
}
.pdf-viewer-fallback[data-v-4a7667f4] {
  position: absolute;
  top: 80px;
  right: 20px;
  z-index: 1001;
}
.open-pdf-button[data-v-4a7667f4] {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 16px;
}

/* Phase 1: Reply Preview */
.reply-preview[data-v-4a7667f4] {
  border-left: 3px solid var(--q-primary); /* Green accent for reply border */
  background-color: var(--q-grey-2); /* Light background for reply preview */
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: var(--q-dark);
}
.reply-preview[data-v-4a7667f4]:hover {
  background-color: var(--q-grey-3); /* Slightly darker on hover */
}
.reply-preview-content[data-v-4a7667f4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reply-preview-sender[data-v-4a7667f4] {
  font-size: 12px;
  font-weight: 600;
  color: var(--q-primary); /* Green accent for sender name */
}
.reply-preview-text[data-v-4a7667f4] {
  font-size: 13px;
  color: var(--q-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.message-own .reply-preview[data-v-4a7667f4] {
  border-left-color: var(--q-secondary); /* A different subtle color for own replies */
  background-color: var(--q-green-1);
}
.message-own .reply-preview-sender[data-v-4a7667f4] {
  color: var(--q-secondary); /* A different subtle color for own replies sender */
}

/* Phase 1: Forwarded Indicator */
.forwarded-indicator[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  font-style: italic;
}

/* Phase 1: Deleted Message */
.deleted-message[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #999;
  font-style: italic;
  padding: 8px 0;
}

/* Phase 1: Edited Indicator */
.edited-indicator[data-v-4a7667f4] {
  font-size: 11px;
  color: #999;
  font-style: italic;
  margin-left: 4px;
}

/* Phase 1: Message Reactions */
.message-reactions[data-v-4a7667f4] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.reaction-item[data-v-4a7667f4] {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 2px 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.reaction-item[data-v-4a7667f4]:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.reaction-own[data-v-4a7667f4] {
  background-color: var(--q-green-2); /* Subtle green for own reactions */
  color: var(--q-dark);
}
.reaction-emoji[data-v-4a7667f4] {
  font-size: 14px;
}
.reaction-count[data-v-4a7667f4] {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}
.message-own .reaction-item[data-v-4a7667f4] {
  background-color: var(--q-green-1);
}
.message-own .reaction-item[data-v-4a7667f4]:hover {
  background-color: var(--q-green-2);
}

.typing-indicator[data-v-e9c509e1] {
  padding: 8px 16px;
  margin-bottom: 16px;
}
.typing-bubble[data-v-e9c509e1] {
  background-color: white;
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 120px;
}
.typing-dots[data-v-e9c509e1] {
  display: flex;
  gap: 4px;
}
.dot[data-v-e9c509e1] {
  width: 8px;
  height: 8px;
  background-color: #8e8e8e;
  border-radius: 50%;
  animation: typingBounce-e9c509e1 1.4s infinite ease-in-out;
}
.dot[data-v-e9c509e1]:nth-child(1) {
  animation-delay: -0.32s;
}
.dot[data-v-e9c509e1]:nth-child(2) {
  animation-delay: -0.16s;
}
.dot[data-v-e9c509e1]:nth-child(3) {
  animation-delay: 0s;
}
@keyframes typingBounce-e9c509e1 {
0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
}
40% {
    transform: scale(1);
    opacity: 1;
}
}
.typing-text[data-v-e9c509e1] {
  font-size: 12px;
  color: #8e8e8e;
  font-style: italic;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.typing-bubble[data-v-e9c509e1] {
    background-color: #2d2d2d;
}
.typing-text[data-v-e9c509e1] {
    color: #b0b0b0;
}
}

.conversation-item-whatsapp[data-v-09ed30af] {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.conversation-item-whatsapp[data-v-09ed30af]:hover {
  background-color: #f5f5f5;
  transform: translateX(2px);
}
.conversation-item-whatsapp[data-v-09ed30af]:active {
  transform: translateX(1px);
}
.conversation-selected[data-v-09ed30af] {
  background-color: #e8f5e8;
  border-left: 4px solid #4caf50;
}
.conversation-content[data-v-09ed30af] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.conversation-avatar[data-v-09ed30af] {
  position: relative;
  flex-shrink: 0;
}
.avatar-circle[data-v-09ed30af] {
  border: 2px solid #e0e0e0;
}
.online-indicator[data-v-09ed30af] {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #4caf50;
  border: 2px solid white;
  border-radius: 50%;
}
.online-indicator.pulse[data-v-09ed30af] {
  animation: pulse-09ed30af 2s infinite;
}
.offline-indicator[data-v-09ed30af] {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #8e8e8e;
  border: 2px solid white;
  border-radius: 50%;
}

/* Pulse animation for online indicator */
@keyframes pulse-09ed30af {
0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}
70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
}
}
.conversation-details[data-v-09ed30af] {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.conversation-header[data-v-09ed30af] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.conversation-title[data-v-09ed30af] {
  font-weight: 600;
  font-size: 14px;
  color: #303030;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.conversation-time[data-v-09ed30af] {
  font-size: 11px;
  color: #8e8e8e;
  flex-shrink: 0;
  margin-left: 8px;
}
.conversation-preview[data-v-09ed30af] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-text[data-v-09ed30af] {
  font-size: 13px;
  color: #8e8e8e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 8px;
}
.search-match-preview[data-v-09ed30af] {
  display: inline-flex;
  align-items: center;
  color: var(--q-primary);
  font-weight: 500;
}
.match-count-badge[data-v-09ed30af] {
  margin-left: 4px;
  font-size: 11px;
  color: var(--q-primary);
  font-weight: 600;
}
.preview-text[data-v-09ed30af] mark {
  background-color: #fff3cd;
  color: #856404;
  padding: 1px 2px;
  border-radius: 2px;
  font-weight: 600;
}

/* Search Match List Styles */
.search-match-list[data-v-09ed30af] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.search-match-item[data-v-09ed30af] {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.search-match-text[data-v-09ed30af] {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.search-match-item[data-v-09ed30af] mark {
  background-color: #fff3cd;
  color: #856404;
  padding: 1px 2px;
  border-radius: 2px;
  font-weight: 600;
}
.unread-badge[data-v-09ed30af] {
  background-color: #4caf50;
  color: white;
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  flex-shrink: 0;
}
.conversation-actions[data-v-09ed30af] {
  position: relative;
  flex-shrink: 0;
}
.action-btn[data-v-09ed30af] {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.conversation-item-whatsapp:hover .action-btn[data-v-09ed30af] {
  opacity: 1;
}
.conversation-menu[data-v-09ed30af] {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Animation for new conversations */
@keyframes conversationSlideIn-09ed30af {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.conversation-item-whatsapp[data-v-09ed30af] {
  animation: conversationSlideIn-09ed30af 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.conversation-item-whatsapp[data-v-09ed30af] {
    padding: 10px 12px;
}
.conversation-title[data-v-09ed30af] {
    font-size: 13px;
}
.preview-text[data-v-09ed30af] {
    font-size: 12px;
}
.action-btn[data-v-09ed30af] {
    opacity: 1;
}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.conversation-item-whatsapp[data-v-09ed30af] {
    border-bottom-color: #404040;
}
.conversation-item-whatsapp[data-v-09ed30af]:hover {
    background-color: #2a2a2a;
}
.conversation-selected[data-v-09ed30af] {
    background-color: #1b3a1b;
}
.conversation-title[data-v-09ed30af] {
    color: #ffffff;
}
.preview-text[data-v-09ed30af] {
    color: #b0b0b0;
}
.conversation-time[data-v-09ed30af] {
    color: #808080;
}
}

.online-users-container[data-v-b456a56a] {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
}
.online-users-header[data-v-b456a56a] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.search-section[data-v-b456a56a] {
  border-bottom: 1px solid #e0e0e0;
}
.search-input[data-v-b456a56a] {
  background-color: #f5f5f5;
}
.users-list[data-v-b456a56a] {
  flex: 1;
  overflow-y: auto;
}
.users-section[data-v-b456a56a] {
  margin-bottom: 16px;
}
.section-header[data-v-b456a56a] {
  border-bottom: 1px solid #e0e0e0;
}
.users-items[data-v-b456a56a] {
  background-color: white;
}
.user-item[data-v-b456a56a] {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}
.user-item[data-v-b456a56a]:hover {
  background-color: #f5f5f5;
  transform: translateX(2px);
}
.user-item[data-v-b456a56a]:active {
  transform: translateX(1px);
}
.user-avatar-container[data-v-b456a56a] {
  position: relative;
}
.online-indicator[data-v-b456a56a] {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #4caf50;
  border: 2px solid white;
  border-radius: 50%;
  animation: pulse-b456a56a 2s infinite;
}
.offline-indicator[data-v-b456a56a] {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #9e9e9e;
  border: 2px solid white;
  border-radius: 50%;
}
.offline-avatar[data-v-b456a56a] {
  opacity: 0.7;
}
.user-info[data-v-b456a56a] {
  min-width: 0;
  overflow: hidden;
}
.user-name[data-v-b456a56a] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.user-status[data-v-b456a56a] {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.chat-btn[data-v-b456a56a] {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.user-item:hover .chat-btn[data-v-b456a56a] {
  opacity: 1;
}
.empty-state[data-v-b456a56a] {
  color: #9e9e9e;
}
.refresh-section[data-v-b456a56a] {
  border-top: 1px solid #e0e0e0;
}

/* Pulse animation for online indicator */
@keyframes pulse-b456a56a {
0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}
70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
}
}

/* Scrollbar styling */
.users-list[data-v-b456a56a]::-webkit-scrollbar {
  width: 4px;
}
.users-list[data-v-b456a56a]::-webkit-scrollbar-track {
  background: transparent;
}
.users-list[data-v-b456a56a]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}
.users-list[data-v-b456a56a]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.user-item[data-v-b456a56a] {
    padding: 10px 12px;
}
.user-name[data-v-b456a56a] {
    font-size: 13px;
}
.user-status[data-v-b456a56a] {
    font-size: 11px;
}
.chat-btn[data-v-b456a56a] {
    opacity: 1;
}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.online-users-container[data-v-b456a56a] {
    background-color: #1a1a1a;
}
.users-items[data-v-b456a56a] {
    background-color: #2d2d2d;
}
.user-item[data-v-b456a56a] {
    border-bottom-color: #404040;
}
.user-item[data-v-b456a56a]:hover {
    background-color: #3a3a3a;
}
.section-header[data-v-b456a56a] {
    background-color: #2a2a2a;
    border-bottom-color: #404040;
}
.refresh-section[data-v-b456a56a] {
    background-color: #2a2a2a;
    border-top-color: #404040;
}
}

.voice-note-button-container[data-v-8522944d] {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.voice-note-button[data-v-8522944d] {
  transition: all 0.3s ease;
}
.voice-note-button.recording[data-v-8522944d] {
  background-color: rgba(244, 67, 54, 0.1) !important;
}
.voice-note-button.pulsing[data-v-8522944d] {
  animation: pulse-8522944d 1.5s ease-in-out infinite;
}
@keyframes pulse-8522944d {
0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
}
50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(244, 67, 54, 0);
}
}
.recording-indicator[data-v-8522944d] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 1;
}
.recording-dot[data-v-8522944d] {
  width: 8px;
  height: 8px;
  background-color: #f44336;
  border-radius: 50%;
  animation: blink-8522944d 1s ease-in-out infinite;
}
@keyframes blink-8522944d {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.3;
}
}
.recording-timer[data-v-8522944d] {
  font-size: 10px;
  font-weight: 600;
  color: #f44336;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 10px;
  white-space: nowrap;
}

.voice-to-text-button-container[data-v-8f7fbc98] {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.voice-to-text-button[data-v-8f7fbc98] {
  transition: all 0.3s ease;
}
.voice-to-text-button.recording[data-v-8f7fbc98] {
  background-color: rgba(33, 150, 243, 0.1) !important;
}
.voice-to-text-button.pulsing[data-v-8f7fbc98] {
  animation: pulse-8f7fbc98 1.5s ease-in-out infinite;
}
@keyframes pulse-8f7fbc98 {
0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
}
50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(33, 150, 243, 0);
}
}
.recording-indicator[data-v-8f7fbc98] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 1;
}
.recording-dot[data-v-8f7fbc98] {
  width: 8px;
  height: 8px;
  background-color: #2196F3;
  border-radius: 50%;
  animation: blink-8f7fbc98 1s ease-in-out infinite;
}
@keyframes blink-8f7fbc98 {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.3;
}
}
.recording-timer[data-v-8f7fbc98] {
  font-size: 10px;
  font-weight: 600;
  color: #2196F3;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 10px;
  white-space: nowrap;
}

/* Transcription Preview Overlay - Fixed positioning for better visibility */
.transcription-preview-overlay[data-v-8f7fbc98] {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
  max-width: 90vw;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.transcription-preview-card[data-v-8f7fbc98] {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.95) 0%, rgba(25, 118, 210, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 600px;
  width: 100%;
  animation: slideUp-8f7fbc98 0.3s ease-out;
}
@keyframes slideUp-8f7fbc98 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.transcription-header[data-v-8f7fbc98] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.listening-indicator[data-v-8f7fbc98] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.listening-dot[data-v-8f7fbc98] {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  animation: pulse-dot-8f7fbc98 1.5s ease-in-out infinite;
}
@keyframes pulse-dot-8f7fbc98 {
0%, 100% {
    opacity: 1;
    transform: scale(1);
}
50% {
    opacity: 0.5;
    transform: scale(1.2);
}
}
.listening-text[data-v-8f7fbc98] {
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.recording-time[data-v-8f7fbc98] {
  color: white;
  font-size: 12px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
}
.transcription-content[data-v-8f7fbc98] {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}
.transcription-content[data-v-8f7fbc98]::-webkit-scrollbar {
  width: 6px;
}
.transcription-content[data-v-8f7fbc98]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.transcription-content[data-v-8f7fbc98]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.transcription-content[data-v-8f7fbc98]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.listening-placeholder[data-v-8f7fbc98] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
}
.listening-icon[data-v-8f7fbc98] {
  animation: pulse-icon-8f7fbc98 2s ease-in-out infinite;
}
@keyframes pulse-icon-8f7fbc98 {
0%, 100% {
    transform: scale(1);
    opacity: 0.8;
}
50% {
    transform: scale(1.1);
    opacity: 1;
}
}
.transcription-text-wrapper[data-v-8f7fbc98] {
  color: white;
  font-size: 18px;
  line-height: 1.6;
  word-wrap: break-word;
  min-height: 24px;
}
.transcription-final[data-v-8f7fbc98] {
  color: white;
  font-weight: 400;
}
.transcription-interim[data-v-8f7fbc98] {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-weight: 300;
}
.transcription-cursor[data-v-8f7fbc98] {
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: white;
  margin-left: 2px;
  animation: cursor-blink-8f7fbc98 1s infinite;
  vertical-align: middle;
}
@keyframes cursor-blink-8f7fbc98 {
0%, 50% {
    opacity: 1;
}
51%, 100% {
    opacity: 0;
}
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.transcription-preview-overlay[data-v-8f7fbc98] {
    bottom: 80px;
    padding: 0 12px;
}
.transcription-preview-card[data-v-8f7fbc98] {
    padding: 16px 20px;
    border-radius: 12px;
}
.transcription-text-wrapper[data-v-8f7fbc98] {
    font-size: 16px;
}
.transcription-content[data-v-8f7fbc98] {
    max-height: 150px;
}
}
@media (max-width: 480px) {
.transcription-preview-overlay[data-v-8f7fbc98] {
    bottom: 70px;
    padding: 0 8px;
}
.transcription-preview-card[data-v-8f7fbc98] {
    padding: 14px 16px;
}
.transcription-text-wrapper[data-v-8f7fbc98] {
    font-size: 15px;
}
.transcription-content[data-v-8f7fbc98] {
    max-height: 120px;
}
}

.sticky-note-card[data-v-b533fcb1] {
  min-width: 600px;
  width: 90%;
  max-width: 95%;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sticky-note-card.full-width[data-v-b533fcb1] {
  min-width: 100%;
  max-width: 100%;
  max-height: 100vh;
}
.sticky-note-content[data-v-b533fcb1] {
  padding: 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  max-height: calc(95vh - 140px); /* Account for header and actions */
}
.canvas-container[data-v-b533fcb1] {
  border: 2px dashed #ccc;
  border-radius: 8px;
  overflow: hidden; /* Use hidden to clip border-radius, but canvas will fill inside */
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: block;
  width: 100%;
  min-height: 300px;
  height: 100%; /* Fill available height */
  max-height: calc(95vh - 250px); /* Increased height for more canvas space */
  position: relative; /* For proper canvas positioning */
  padding: 0; /* Ensure no padding constrains drawing area */
  margin: 0; /* Ensure no margin constrains drawing area */
}
.drawing-canvas[data-v-b533fcb1] {
  display: block;
  touch-action: none;
  cursor: crosshair;
  position: absolute; /* Position absolutely within container */
  top: 0;
  left: 0;
  /* Width and height are set via JavaScript to exact pixel values */
  /* Using explicit width/height instead of right/bottom to ensure 1:1 coordinate mapping */
  /* This ensures 1:1 coordinate mapping - no CSS scaling */
  transform: none; /* Ensure no transforms affect coordinate mapping */
  transform-origin: top left;
}
.drawing-controls[data-v-b533fcb1] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  overflow: visible;
  min-height: 0;
}
.controls-row[data-v-b533fcb1] {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.control-group[data-v-b533fcb1] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.color-control-group[data-v-b533fcb1] {
  flex: 0 0 auto;
}
.action-buttons[data-v-b533fcb1] {
  flex: 0 0 auto;
  flex-direction: row !important; /* Override control-group column direction */
  justify-content: flex-start;
  margin-left: auto;
  gap: 8px;
}
.control-label[data-v-b533fcb1] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.color-picker[data-v-b533fcb1] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.color-btn[data-v-b533fcb1] {
  width: 36px;
  height: 36px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.color-btn.active[data-v-b533fcb1] {
  border-color: #1976D2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
  transform: scale(1.1);
}
.color-btn[data-v-b533fcb1]:hover {
  transform: scale(1.05);
}
.thickness-control-group[data-v-b533fcb1] {
  margin-left: 8px;
}
.thickness-slider[data-v-b533fcb1] {
  width: 100%;
}
.dialog-actions[data-v-b533fcb1] {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
.sticky-note-card[data-v-b533fcb1] {
    margin: 0;
    border-radius: 0;
    height: 100vh;
    width: 100%;
    max-width: 100%;
}
.sticky-note-content[data-v-b533fcb1] {
    padding: 8px 0;
}
.canvas-container[data-v-b533fcb1] {
    margin: 0 -16px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: calc(100% + 32px);
}
.controls-row[data-v-b533fcb1] {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}
.action-buttons[data-v-b533fcb1] {
    margin-left: 0;
    justify-content: center;
}
}

.date-separator[data-v-882205bc] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  position: relative;
}
.date-separator-line[data-v-882205bc] {
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
}
.date-separator-text[data-v-882205bc] {
  padding: 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  background-color: #e5ddd5;
  white-space: nowrap;
}

/* Dark mode support */
.body--dark .date-separator-line[data-v-882205bc] {
  background-color: rgba(255, 255, 255, 0.12);
}
.body--dark .date-separator-text[data-v-882205bc] {
  color: rgba(255, 255, 255, 0.6);
  background-color: #2b2b2b;
}

.chat-module-container.whatsapp-layout[data-v-44674f7b] {
  height: 100%; /* Use 100% of parent container (not viewport) */
  max-height: 100%; /* Don't exceed parent */
  display: flex;
  flex-direction: row; /* Explicit row direction */
  background-color: #f0f2f5;
  overflow: hidden; /* Prevent any overflow */
}

/* Left Sidebar - Conversations */
.conversations-sidebar[data-v-44674f7b] {
  width: 350px;
  min-width: 350px;
  max-width: 400px;
  height: 100%;
  background-color: white;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}
.sidebar-header[data-v-44674f7b] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Tab styling */
.sidebar-tabs[data-v-44674f7b] {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.tab-panels[data-v-44674f7b] {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Allow flex shrinking */
  overflow: hidden; /* Prevent overflow */
}
.tab-panels .q-tab-panel[data-v-44674f7b] {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.search-input[data-v-44674f7b] {
  background-color: rgba(255, 255, 255, 0.1);
}
.conversations-list[data-v-44674f7b] {
  flex: 1;
  overflow-y: auto;
}

/* Right Side - Main Chat Area */
.chat-main-area[data-v-44674f7b] {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0; /* Allow flex shrinking */
  overflow: hidden; /* Prevent overflow */
}
.chat-area[data-v-44674f7b] {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #e5ddd5;
  height: 100%;
  min-height: 0; /* Allow flex shrinking */
  overflow: hidden; /* Prevent overflow */
}
.chat-container[data-v-44674f7b] {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 0; /* Allow flex shrinking */
  overflow: hidden; /* Prevent container from growing */
  position: relative; /* For proper positioning */
}
.chat-header[data-v-44674f7b] {
  flex-shrink: 0; /* Prevent header from shrinking */
  background-color: #f0f2f5;
  border-left: 1px solid #e0e0e0;
}
.messages-container[data-v-44674f7b] {
  flex: 1 1 auto; /* Grow and shrink as needed */
  min-height: 0; /* Allow flex shrinking */
  max-height: 100%; /* Don't exceed container */
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white; /* Changed to white */
  padding: 16px;
  position: relative; /* For scroll button positioning */
  /* Ensure smooth scrolling */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.message-input-container[data-v-44674f7b] {
  flex-shrink: 0;
  flex-grow: 0;
  background-color: #ffffff;
  border-top: 1px solid #eef2f7;
  position: relative;
  z-index: 10;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03);
  padding: 12px 16px !important;
}
.message-input-field[data-v-44674f7b] {
  background-color: #f8fafc;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.message-input-field[data-v-44674f7b] .q-field__control {
  border-radius: 24px !important;
  background-color: #f8fafc !important;
  padding: 0 16px !important;
  border: 1px solid transparent !important;
  min-height: 44px !important;
}
.message-input-field[data-v-44674f7b] .q-field__control:before {
  border: none !important;
}
.message-input-field[data-v-44674f7b] .q-field__control:after {
  display: none !important;
}
.message-input-field.q-field--focused[data-v-44674f7b] .q-field__control {
  background-color: #ffffff !important;
  border-color: #25d366 !important;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1) !important;
}
.message-input-field[data-v-44674f7b] .q-field__native {
  padding: 8px 0 !important;
  font-size: 15px;
  color: #334155;
}
.message-input-field[data-v-44674f7b] .q-field__prepend,
.message-input-field[data-v-44674f7b] .q-field__append {
  padding: 0 !important;
}

/* Phase 1: Reply Preview Bar */
.reply-preview-bar[data-v-44674f7b] {
  background-color: #f1f5f9;
  border-left: 4px solid #25d366;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.reply-preview-content[data-v-44674f7b] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reply-preview-label[data-v-44674f7b] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #25d366;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reply-preview-text[data-v-44674f7b] {
  font-size: 14px;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* Phase 1: Edit Indicator Bar */
.edit-indicator-bar[data-v-44674f7b] {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.edit-indicator-content[data-v-44674f7b] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.send-button[data-v-44674f7b] {
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.send-button[data-v-44674f7b]:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}
.send-button[data-v-44674f7b]:active {
  transform: scale(0.95);
}
.send-button[data-v-44674f7b] .q-icon {
  font-size: 22px;
}
.welcome-screen[data-v-44674f7b] {
  background-color: #f0f2f5;
}
.new-conversation-dialog[data-v-44674f7b] {
  border-radius: 12px;
}

/* Message bubbles styling */
.message-wrapper[data-v-44674f7b] {
  display: flex;
  margin-bottom: 16px;
}
.message-own[data-v-44674f7b] {
  flex-direction: row-reverse;
}
.message-bubble[data-v-44674f7b] {
  max-width: 70%;
  border-radius: 18px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
.message-own .message-bubble[data-v-44674f7b] {
  background-color: #dcf8c6;
  border-bottom-right-radius: 4px;
}
.message-own .message-bubble[data-v-44674f7b]::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: #dcf8c6;
  border-bottom-color: #dcf8c6;
}
.message-bubble[data-v-44674f7b]::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right-color: white;
  border-bottom-color: white;
}
.message-own .message-bubble[data-v-44674f7b]::before {
  display: none;
}
.message-time[data-v-44674f7b] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Scrollbar styling */
.conversations-list[data-v-44674f7b]::-webkit-scrollbar,
.messages-container[data-v-44674f7b]::-webkit-scrollbar {
  width: 6px;
}
.conversations-list[data-v-44674f7b]::-webkit-scrollbar-track,
.messages-container[data-v-44674f7b]::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.conversations-list[data-v-44674f7b]::-webkit-scrollbar-thumb,
.messages-container[data-v-44674f7b]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.conversations-list[data-v-44674f7b]::-webkit-scrollbar-thumb:hover,
.messages-container[data-v-44674f7b]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Scroll to Bottom Button */
.scroll-to-bottom-btn[data-v-44674f7b] {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.scroll-to-bottom-btn[data-v-44674f7b]:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Fade transition for scroll button */
.fade-enter-active[data-v-44674f7b],
.fade-leave-active[data-v-44674f7b] {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-enter-from[data-v-44674f7b],
.fade-leave-to[data-v-44674f7b] {
  opacity: 0;
  transform: translateY(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.conversations-sidebar[data-v-44674f7b] {
    width: 100%;
    max-width: none;
}
.chat-main-area[data-v-44674f7b] {
    display: none;
}
.whatsapp-layout[data-v-44674f7b] {
    flex-direction: column;
}
}
.border-bottom[data-v-44674f7b] {
  border-bottom: 1px solid #e0e0e0;
}
.border-top[data-v-44674f7b] {
  border-top: 1px solid #e0e0e0;
}

/* New Chat Dialog Styles */
.new-chat-dialog[data-v-44674f7b] {
  width: 90vw;
  max-width: 450px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
}
.dialog-header[data-v-44674f7b] {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.search-section[data-v-44674f7b] {
  border-bottom: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}
.search-input[data-v-44674f7b] {
  background-color: white;
}
.content-section[data-v-44674f7b] {
  max-height: 60vh;
  overflow-y: auto;
}

/* Users List */
.users-list[data-v-44674f7b] {
  max-height: 400px;
  overflow-y: auto;
}
.user-item[data-v-44674f7b] {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.user-item[data-v-44674f7b]:hover {
  background-color: #f8f9fa;
}
.user-item[data-v-44674f7b]:last-child {
  border-bottom: none;
}
.user-info[data-v-44674f7b] {
  min-width: 0;
}
.user-email[data-v-44674f7b] {
  word-break: break-all;
}

/* Group Creation */
.group-creation[data-v-44674f7b] {
  padding: 20px;
}
.group-avatar[data-v-44674f7b] {
  margin: 0 auto;
  border: 3px solid #e0e0e0;
}
.selected-participants[data-v-44674f7b] {
  margin-bottom: 20px;
}
.participants-list[data-v-44674f7b] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.add-participants[data-v-44674f7b] {
  margin-top: 20px;
}
.available-users-list[data-v-44674f7b] {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 12px;
}
.available-user-item[data-v-44674f7b] {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}
.available-user-item[data-v-44674f7b]:hover {
  background-color: #f8f9fa;
}
.available-user-item[data-v-44674f7b]:last-child {
  border-bottom: none;
}

/* Dialog Actions */
.dialog-actions[data-v-44674f7b] {
  border-top: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}

/* Responsive adjustments for dialog */
@media (max-width: 600px) {
.new-chat-dialog[data-v-44674f7b] {
    width: 95vw;
    max-height: 95vh;
}
.content-section[data-v-44674f7b] {
    max-height: 50vh;
}
.users-list[data-v-44674f7b],
  .available-users-list[data-v-44674f7b] {
    max-height: 300px;
}
}

/* Search Info */
.search-info[data-v-44674f7b] {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

/* Load More Button */
.load-more-container[data-v-44674f7b] {
  border-top: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}
.load-more-btn[data-v-44674f7b] {
  min-width: 150px;
}

/* Enhanced User Items */
.user-item[data-v-44674f7b] {
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.user-item[data-v-44674f7b]:hover {
  background-color: #f8f9fa;
  transform: translateX(2px);
}
.user-item[data-v-44674f7b]:last-child {
  border-bottom: none;
}

/* Online Status Indicator */
.online-indicator[data-v-44674f7b] {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #4caf50;
}

/* Search Input Enhancements */
.search-input[data-v-44674f7b] {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.2s ease; /* Keep existing transition */
}
.search-input[data-v-44674f7b]:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.search-input.q-field--focused[data-v-44674f7b] {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-color: var(--q-primary); /* Green border on focus */
}
.search-input[data-v-44674f7b] .q-field__native::placeholder {
  color: black;
  opacity: 1; /* Ensure placeholder is not transparent */
}
.search-input[data-v-44674f7b] .q-field__control-container {
  color: black; /* Ensure typed text is black */
}
.search-input[data-v-44674f7b] .q-field__control {
  color: black;
  background-color: white; /* Explicitly set background for control */
}

/* Search Highlighting */
mark[data-v-44674f7b] {
  background-color: #fff3cd;
  color: #856404;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* Animation for dialog */
.q-dialog__inner--minimized > .new-chat-dialog[data-v-44674f7b] {
  animation: slideIn-44674f7b 0.3s ease-out;
}
@keyframes slideIn-44674f7b {
from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
}
to {
    opacity: 1;
    transform: scale(1) translateY(0);
}
}

/* File Upload Styles */
.file-preview[data-v-44674f7b] {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background-color: white;
}
.image-preview[data-v-44674f7b] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  max-height: 300px;
  overflow: hidden;
}
.preview-image[data-v-44674f7b] {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}
.file-info[data-v-44674f7b] {
  padding: 8px 12px;
}
.file-info .text-weight-medium[data-v-44674f7b] {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}
.file-info .text-caption[data-v-44674f7b] {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* Upload progress */
.q-linear-progress[data-v-44674f7b] {
  margin-top: 8px;
  border-radius: 2px;
}

/* Responsive file upload */
@media (max-width: 768px) {
.file-preview[data-v-44674f7b] {
    margin: 0 8px;
}
.image-preview[data-v-44674f7b] {
    min-height: 120px;
    max-height: 250px;
}
.preview-image[data-v-44674f7b] {
    max-height: 250px;
}
}

/* Chat Header Search - Inline WhatsApp Style */
.chat-header.search-mode[data-v-44674f7b] {
  min-height: 64px;
}
.search-input-inline[data-v-44674f7b] {
  flex: 1;
}
.search-navigation[data-v-44674f7b] {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.search-result-count[data-v-44674f7b] {
  white-space: nowrap;
  min-width: 50px;
  text-align: center;
}

/* Search Results in Messages Area */
.search-results-header[data-v-44674f7b] {
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.empty-search-state[data-v-44674f7b] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* Message Highlighting */
.message-bubble-wrapper.message-highlight[data-v-44674f7b] {
  animation: highlightPulse-44674f7b 2s ease-in-out;
  border-radius: 8px;
  padding: 4px;
  margin: -4px;
}
@keyframes highlightPulse-44674f7b {
0% {
    background-color: rgba(76, 175, 80, 0.3);
}
50% {
    background-color: rgba(76, 175, 80, 0.5);
}
100% {
    background-color: transparent;
}
}

/* Search term highlighting in message text */
.message-text[data-v-44674f7b] mark {
  background-color: #fff3cd;
  color: #856404;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

.q-item__section--avatar[data-v-04fabb22] {
  min-width: 40px;
}
.q-item[data-v-04fabb22] {
  transition: all 0.3s ease;
}
.q-item[data-v-04fabb22]:hover:not(.q-item--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-04fabb22] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-04fabb22] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-04fabb22]:hover {
  background-color: #1da237 !important;
}

/* Backdrop - Blurs and covers the entire ERP background */
.password-modal-backdrop[data-v-6ac8cdba] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2998;
  pointer-events: all;
}

/* Modern Modal Card */
.password-modal-card[data-v-6ac8cdba] {
  width: 100%;
  max-width: 420px;
  min-width: 320px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2999;
  position: relative;
  margin: auto;
}

/* Header Section */
.password-modal-header[data-v-6ac8cdba] {
  background: white;
  text-align: center;
  padding: 32px 24px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.password-modal-icon-wrapper[data-v-6ac8cdba] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(25, 118, 210, 0.1);
  border-radius: 50%;
  margin-bottom: 8px;
}
.password-title[data-v-6ac8cdba] {
  color: #000;
  margin: 0;
}
.password-modal-header .text-body2[data-v-6ac8cdba] {
  color: #616161;
}

/* Body Section */
.password-modal-body[data-v-6ac8cdba] {
  padding: 32px 24px;
  background: white;
}
.password-form[data-v-6ac8cdba] {
  width: 100%;
}

/* Input Styling */
[data-v-6ac8cdba] .q-field--outlined .q-field__control {
  border-radius: 8px;
}
[data-v-6ac8cdba] .q-field--dense .q-field__control {
  min-height: 48px;
}
[data-v-6ac8cdba] .q-field__label {
  font-weight: 500;
  color: #424242;
}
.password-input-error[data-v-6ac8cdba] .q-field__control {
  border-color: #f44336;
}

/* Error Message */
.error-message[data-v-6ac8cdba] {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #ffebee;
  border-left: 4px solid #f44336;
  border-radius: 4px;
  color: #c62828;
  font-size: 14px;
}

/* Actions */
.password-modal-actions[data-v-6ac8cdba] {
  margin-top: 8px;
}
.password-submit-btn[data-v-6ac8cdba] {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 600px) {
.password-modal-card[data-v-6ac8cdba] {
    max-width: 90%;
    margin: 20px;
}
.password-modal-header[data-v-6ac8cdba] {
    padding: 24px 20px 20px;
}
.password-modal-body[data-v-6ac8cdba] {
    padding: 24px 20px;
}
.password-modal-icon-wrapper[data-v-6ac8cdba] {
    width: 56px;
    height: 56px;
}
}

/* Animation */
.password-modal-card[data-v-6ac8cdba] {
  animation: slideUp-6ac8cdba 0.3s ease-out;
}
@keyframes slideUp-6ac8cdba {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Specific styles for password change dialog backdrop only */
.password-change-dialog .q-dialog__backdrop {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  z-index: 2997 !important;
}

/* Ensure password change dialog content is above backdrop */
.password-change-dialog .q-dialog__inner {
  z-index: 2999 !important;
}

/* Modern Modal Card */
.change-password-modal-card[data-v-81d9e7f5] {
  width: 100%;
  max-width: 420px;
  min-width: 320px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2999;
  position: relative;
  margin: auto;
}

/* Header Section */
.change-password-modal-header[data-v-81d9e7f5] {
  background: white;
  text-align: center;
  padding: 32px 24px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.change-password-icon-wrapper[data-v-81d9e7f5] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(25, 118, 210, 0.1);
  border-radius: 50%;
  margin-bottom: 8px;
}
.password-title[data-v-81d9e7f5] {
  color: #000;
  margin: 0;
}
.change-password-modal-header .text-body2[data-v-81d9e7f5] {
  color: #616161;
}

/* Body Section */
.change-password-modal-body[data-v-81d9e7f5] {
  padding: 32px 24px;
  background: white;
}
.password-form[data-v-81d9e7f5] {
  width: 100%;
}

/* Input Styling */
[data-v-81d9e7f5] .q-field--outlined .q-field__control {
  border-radius: 8px;
}
[data-v-81d9e7f5] .q-field--dense .q-field__control {
  min-height: 48px;
}
[data-v-81d9e7f5] .q-field__label {
  font-weight: 500;
  color: #424242;
}
.password-input-error[data-v-81d9e7f5] .q-field__control {
  border-color: #f44336;
}

/* Error Message */
.error-message[data-v-81d9e7f5] {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #ffebee;
  border-left: 4px solid #f44336;
  border-radius: 4px;
  color: #c62828;
  font-size: 14px;
}

/* Actions */
.change-password-modal-actions[data-v-81d9e7f5] {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.password-submit-btn[data-v-81d9e7f5] {
  min-width: 140px;
  height: 48px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 600px) {
.change-password-modal-card[data-v-81d9e7f5] {
    max-width: 90%;
    margin: 20px;
}
.change-password-modal-header[data-v-81d9e7f5] {
    padding: 24px 20px 20px;
}
.change-password-modal-body[data-v-81d9e7f5] {
    padding: 24px 20px;
}
.change-password-icon-wrapper[data-v-81d9e7f5] {
    width: 56px;
    height: 56px;
}
}

/* Animation */
.change-password-modal-card[data-v-81d9e7f5] {
  animation: slideUp-81d9e7f5 0.3s ease-out;
}
@keyframes slideUp-81d9e7f5 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.notification-drawer[data-v-cc6c3081] {
  background-color: #f8fafc;
}
.notification-header[data-v-cc6c3081] {
  border-bottom: 1px solid #e2e8f0;
  background-color: #fff;
}
.notification-content[data-v-cc6c3081] {
  background-color: #f8fafc;
}
.notification-group-header[data-v-cc6c3081] {
  margin: 8px 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  transition: all 0.2s ease;
}
.notification-group-header[data-v-cc6c3081]:hover {
  border-color: var(--q-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.notification-group-header.workflow[data-v-cc6c3081] {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}
.notification-item[data-v-cc6c3081] {
  margin: 4px 12px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.notification-item[data-v-cc6c3081]:hover {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
}
.notification-item.unread[data-v-cc6c3081] {
  border-left: 4px solid var(--q-primary);
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(var(--q-primary-rgb), 0.08);
}
.notification-message[data-v-cc6c3081] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  color: #475569;
}
.notification-time[data-v-cc6c3081] {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
.notification-drawer[data-v-cc6c3081] {
    width: 100vw !important;
}
}

.ask-hybrid-chat[data-v-24e82743] {
  min-height: 420px;
  height: 100%;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.chat-layout[data-v-24e82743] {
  height: 100%;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.chat-layout.full-page-mode[data-v-24e82743] {
  min-height: 0;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.chat-layout.sidebar-collapsed[data-v-24e82743] {
  grid-template-columns: 72px minmax(0, 1fr);
}
.sidebar-backdrop[data-v-24e82743] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 10;
}
.chat-sidebar[data-v-24e82743] {
  background: #fbfcfb;
  color: var(--q-dark);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  z-index: 12;
  transition: width 0.25s ease, transform 0.25s ease;
}
.chat-sidebar.collapsed[data-v-24e82743] {
  width: 72px;
}
.sidebar-top[data-v-24e82743] {
  padding: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sidebar-actions[data-v-24e82743] {
  justify-content: space-between;
}
.new-chat-btn[data-v-24e82743] {
  background: transparent;
  color: var(--q-primary);
  border: 1px solid rgba(46, 125, 50, 0.55);
  font-weight: 600;
}
.new-chat-btn[data-v-24e82743]:hover {
  background: rgba(46, 125, 50, 0.08);
}
.collapse-btn[data-v-24e82743] {
  color: var(--q-primary);
}
.sidebar-history[data-v-24e82743] {
  flex: 1;
}
.history-list[data-v-24e82743] {
  padding: 10px;
}
.history-item[data-v-24e82743] {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid transparent;
  color: var(--q-dark);
  border-radius: 8px;
  padding: 11px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.chat-sidebar.collapsed .history-item[data-v-24e82743] {
  display: grid;
  place-items: center;
  padding: 10px 0;
}
.history-item[data-v-24e82743]:hover {
  background: rgba(46, 125, 50, 0.07);
  border-color: rgba(46, 125, 50, 0.25);
}
.history-item.active[data-v-24e82743] {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.35);
}
.history-item[data-v-24e82743]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.history-title[data-v-24e82743] {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.history-preview[data-v-24e82743] {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.8;
}
.history-time[data-v-24e82743] {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.65;
}
.chat-main[data-v-24e82743] {
  min-width: 0;
  background: #fbfcfd;
}
.chat-header[data-v-24e82743] {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.96);
}
.header-status[data-v-24e82743] .q-chip {
  font-size: 11px;
  font-weight: 700;
}
.sidebar-toggle[data-v-24e82743] {
  display: none;
}
.header-icon[data-v-24e82743] {
  color: var(--q-primary);
}
.header-copy[data-v-24e82743] {
  display: flex;
  flex-direction: column;
}
.header-title[data-v-24e82743] {
  font-size: 15px;
  font-weight: 700;
  color: var(--q-dark);
}
.header-subtitle[data-v-24e82743] {
  font-size: 11px;
  color: var(--q-primary);
  font-weight: 600;
}
.chat-body[data-v-24e82743] {
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.chat-body.empty[data-v-24e82743] {
  justify-content: center;
  padding: 3vh 22px 5vh;
}
.message-tools-row[data-v-24e82743] {
  margin: -2px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto;
}
.message-mode-toggle[data-v-24e82743] {
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}
.message-tools-actions[data-v-24e82743] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.copy-selected-btn[data-v-24e82743] {
  color: var(--q-primary);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  background: rgba(46, 125, 50, 0.06);
}
.message-copy-btn[data-v-24e82743],
.message-export-btn[data-v-24e82743],
.header-export-btn[data-v-24e82743] {
  color: var(--q-primary);
  flex-shrink: 0;
}
.export-menu[data-v-24e82743] {
  min-width: 230px;
}
.empty-stage[data-v-24e82743] {
  text-align: center;
  margin-bottom: 14px;
  width: min(860px, 100%);
  margin-inline: auto;
}
.empty-orb[data-v-24e82743] {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: #fff;
  background: linear-gradient(135deg, #2e7d32, #1565c0);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.22);
}
.empty-title[data-v-24e82743] {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--q-dark);
}
.empty-subtitle[data-v-24e82743] {
  margin: 10px auto 0;
  max-width: 620px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.suggestions-row[data-v-24e82743] {
  margin-top: 20px;
}
.suggestion-chip[data-v-24e82743] {
  min-height: 42px;
  border: 1px solid rgba(46, 125, 50, 0.22);
  border-radius: 10px;
  color: var(--q-primary);
  background: #fff;
  padding: 8px 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.suggestion-chip[data-v-24e82743]:hover {
  background: rgba(46, 125, 50, 0.08);
  border-color: rgba(46, 125, 50, 0.38);
  transform: translateY(-1px);
}
.conversation-area[data-v-24e82743] {
  background: linear-gradient(180deg, #fbfcfd 0%, #f7faf8 100%);
}
.conversation-content[data-v-24e82743] {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 22px;
}
.message-stack[data-v-24e82743] {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.message-row[data-v-24e82743] {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.user-row[data-v-24e82743] {
  justify-content: flex-end;
}
.assistant-row[data-v-24e82743] {
  justify-content: flex-start;
}
.assistant-avatar[data-v-24e82743] {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--q-primary);
  flex-shrink: 0;
}
.chat-bubble[data-v-24e82743] {
  max-width: min(86%, 860px);
  border-radius: 12px;
  padding: 13px 15px;
  word-break: break-word;
}
.full-page-mode .chat-bubble[data-v-24e82743] {
  max-width: min(88%, 920px);
}
.user-bubble[data-v-24e82743] {
  background: #eef7f0;
  color: var(--q-dark);
  border-bottom-right-radius: 6px;
  border: 1px solid rgba(46, 125, 50, 0.18);
}
.assistant-bubble[data-v-24e82743] {
  background: #fff;
  color: var(--q-dark);
  border-bottom-left-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}
.message-text[data-v-24e82743] {
  font-size: 14px;
  line-height: 1.55;
}
.executive-answer[data-v-24e82743] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.answer-title[data-v-24e82743] {
  font-size: 15px;
  font-weight: 800;
  color: var(--q-dark);
  line-height: 1.35;
}
.answer-metric[data-v-24e82743] {
  border: 1px solid rgba(46, 125, 50, 0.18);
  background: rgba(46, 125, 50, 0.06);
  border-radius: 8px;
  padding: 9px 10px;
}
.answer-metric-label[data-v-24e82743] {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 700;
  text-transform: uppercase;
}
.answer-metric-value[data-v-24e82743] {
  margin-top: 3px;
  font-size: 16px;
  color: var(--q-primary);
  font-weight: 800;
  line-height: 1.35;
}
.answer-section[data-v-24e82743] {
  border-left: 3px solid rgba(46, 125, 50, 0.35);
  padding-left: 10px;
}
.answer-section-title[data-v-24e82743] {
  font-size: 12px;
  color: var(--q-primary);
  font-weight: 800;
}
.answer-section-text[data-v-24e82743],
.answer-paragraph[data-v-24e82743],
.answer-list[data-v-24e82743] {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.82);
}
.answer-list[data-v-24e82743] {
  margin: 0;
  padding-left: 18px;
}
.answer-list li + li[data-v-24e82743] {
  margin-top: 4px;
}
.answer-sources[data-v-24e82743] {
  padding-top: 2px;
}
.answer-actions[data-v-24e82743] {
  padding-top: 2px;
}
.immediate-actions[data-v-24e82743] {
  margin-bottom: 2px;
}
.follow-up-prompts[data-v-24e82743] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.follow-up-chip[data-v-24e82743] {
  color: var(--q-primary);
  background: rgba(46, 125, 50, 0.06);
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: 999px;
}
.follow-up-chip[data-v-24e82743]:hover {
  background: rgba(46, 125, 50, 0.1);
}
.mode-empty[data-v-24e82743] {
  border: 1px dashed rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: 14px;
  color: rgba(15, 23, 42, 0.62);
  background: #fbfcfd;
  font-size: 13px;
}
.action-grid[data-v-24e82743] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}
.action-tile[data-v-24e82743] {
  min-height: 42px;
  border-radius: 8px;
}
.source-list[data-v-24e82743] {
  display: grid;
  gap: 8px;
}
.source-card[data-v-24e82743] {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
}
.source-card[data-v-24e82743]:hover {
  border-color: rgba(46, 125, 50, 0.35);
  background: rgba(46, 125, 50, 0.04);
}
.source-card strong[data-v-24e82743],
.source-card small[data-v-24e82743] {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.source-card small[data-v-24e82743] {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.58);
  font-size: 11px;
}
.stream-cursor[data-v-24e82743] {
  display: inline-block;
  margin-left: 1px;
  color: var(--q-primary);
  animation: cursor-blink-24e82743 0.9s steps(1) infinite;
  font-weight: 700;
}
.message-time[data-v-24e82743] {
  margin-top: 5px;
  font-size: 10px;
  opacity: 0.68;
  text-align: right;
}
.white-space-pre-wrap[data-v-24e82743] {
  white-space: pre-wrap;
}
.typing-wrap[data-v-24e82743] {
  min-height: 20px;
}
.typing-text[data-v-24e82743] {
  font-size: 12px;
  color: var(--q-primary);
  font-weight: 700;
}
.typing-dot[data-v-24e82743] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--q-primary);
  opacity: 0.8;
  animation: typing-24e82743 1.4s ease-in-out infinite both;
}
.typing-dot[data-v-24e82743]:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot[data-v-24e82743]:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing-24e82743 {
0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
}
40% {
    transform: scale(1);
    opacity: 1;
}
}
.table-card[data-v-24e82743] {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.response-table[data-v-24e82743] {
  font-size: 12px;
}
.response-table[data-v-24e82743] .q-table {
  background: #fff;
}
.response-table[data-v-24e82743] thead tr {
  background: rgba(46, 125, 50, 0.1);
}
.response-table[data-v-24e82743] .q-table__bottom {
  display: none;
}
.response-chart[data-v-24e82743] {
  min-width: 260px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
.input-area[data-v-24e82743] {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transition: all 0.22s ease;
}
.input-area.centered[data-v-24e82743] {
  border-top: none;
  background: transparent;
  width: min(760px, 100%);
  margin: 18px auto 0;
  padding: 0;
}
.input-wrap[data-v-24e82743] {
  border: 1px solid rgba(46, 125, 50, 0.28);
  border-radius: 12px;
  padding: 6px 7px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-wrap[data-v-24e82743]:focus-within {
  border-color: var(--q-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.14);
}
.input-field[data-v-24e82743] .q-field__control {
  min-height: 38px;
}
.input-field[data-v-24e82743] .q-field__prepend {
  color: var(--q-primary);
}
.voice-btn[data-v-24e82743] {
  margin-bottom: 2px;
  position: relative;
  overflow: visible;
}
.voice-btn.listening[data-v-24e82743] {
  background: rgba(198, 40, 40, 0.08);
}
.voice-pulse[data-v-24e82743] {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(198, 40, 40, 0.42);
  pointer-events: none;
  animation: voice-pulse-24e82743 1.6s ease-out infinite;
}
.voice-pulse-two[data-v-24e82743] {
  animation-delay: 0.55s;
}
.voice-listening-row[data-v-24e82743] {
  padding: 7px 10px 0 46px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  min-height: 24px;
}
.voice-wave[data-v-24e82743] {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}
.voice-wave i[data-v-24e82743] {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--q-negative);
  animation: voice-wave-24e82743 0.9s ease-in-out infinite;
}
.voice-wave i[data-v-24e82743]:nth-child(2) {
  animation-delay: 0.12s;
}
.voice-wave i[data-v-24e82743]:nth-child(3) {
  animation-delay: 0.24s;
}
.voice-wave i[data-v-24e82743]:nth-child(4) {
  animation-delay: 0.36s;
}
.send-btn[data-v-24e82743] {
  background: var(--q-primary);
  color: #fff;
  margin-bottom: 5px;
}
.send-btn.disabled[data-v-24e82743] {
  opacity: 0.72;
}
.send-btn[data-v-24e82743] .q-spinner {
  color: #fff;
}
.msg-in-enter-active[data-v-24e82743] {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.msg-in-enter-from[data-v-24e82743] {
  opacity: 0;
  transform: translateY(8px);
}
@keyframes cursor-blink-24e82743 {
0%, 45% {
    opacity: 1;
}
46%, 100% {
    opacity: 0;
}
}
@keyframes voice-pulse-24e82743 {
0% {
    opacity: 0.72;
    transform: scale(0.82);
}
100% {
    opacity: 0;
    transform: scale(1.45);
}
}
@keyframes voice-wave-24e82743 {
0%, 100% {
    height: 6px;
    opacity: 0.55;
}
50% {
    height: 16px;
    opacity: 1;
}
}
@media (max-width: 1024px) {
.chat-layout[data-v-24e82743] {
    grid-template-columns: 1fr;
}
.chat-layout.sidebar-collapsed[data-v-24e82743] {
    grid-template-columns: 1fr;
}
.chat-sidebar[data-v-24e82743] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(84vw, 300px);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 18px rgba(0, 0, 0, 0.14);
}
.chat-sidebar.collapsed[data-v-24e82743] {
    width: min(84vw, 300px);
}
.chat-sidebar.open[data-v-24e82743] {
    transform: translateX(0);
}
.sidebar-toggle[data-v-24e82743] {
    display: inline-flex;
}
.chat-body.empty[data-v-24e82743] {
    padding-bottom: 8vh;
}
}
@media (max-width: 680px) {
.conversation-content[data-v-24e82743] {
    padding: 14px 12px;
}
.chat-bubble[data-v-24e82743] {
    max-width: 92%;
}
.empty-title[data-v-24e82743] {
    font-size: 23px;
}
.empty-subtitle[data-v-24e82743] {
    font-size: 13px;
}
}

.workflow-fab[data-v-b2c85a8c] {
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  transition: all 0.3s ease;
}
.workflow-fab[data-v-b2c85a8c]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.workflow-fab[data-v-b2c85a8c] .q-icon {
  font-size: 20px;
}
.workflow-badge[data-v-b2c85a8c] {
  font-weight: 700;
}
.tracker-dialog[data-v-b2c85a8c] {
  background: #f8fafc;
}
.tracker-header[data-v-b2c85a8c] {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.tracker-eyebrow[data-v-b2c85a8c] {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}
.tracker-title[data-v-b2c85a8c] {
  color: #0f172a;
  line-height: 1.2;
}
.tracker-header-stats[data-v-b2c85a8c] {
  flex-wrap: wrap;
}
.tracker-stat-chip[data-v-b2c85a8c] {
  font-weight: 600;
  background: #fff;
}
.tracker-body[data-v-b2c85a8c] {
  height: calc(100vh - 120px);
  overflow: hidden;
}
.tracker-tabs[data-v-b2c85a8c] {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
}
.tracker-tabs[data-v-b2c85a8c] .q-tab {
  border-radius: 8px;
  min-height: 36px;
}
.tracker-tabs[data-v-b2c85a8c] .q-tab--active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.tracker-search[data-v-b2c85a8c] .q-field__control {
  background: #f8fafc !important;
}
.tracker-list[data-v-b2c85a8c] {
  padding-top: 8px;
}
.tracker-item[data-v-b2c85a8c] {
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.tracker-item[data-v-b2c85a8c]:hover {
  border-color: #e2e8f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.tracker-item--active[data-v-b2c85a8c] {
  background: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}
.tracker-item-avatar[data-v-b2c85a8c] {
  border: 2px solid #fff;
}
.tracker-item-meta[data-v-b2c85a8c] {
  color: #64748b;
  font-size: 0.75rem;
}
.border-right[data-v-b2c85a8c] {
  border-right: 1px solid #e2e8f0;
}
.border-bottom[data-v-b2c85a8c] {
  border-bottom: 1px solid #e2e8f0;
}
.detail-card[data-v-b2c85a8c] {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.main-info-card[data-v-b2c85a8c] {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.detail-grid[data-v-b2c85a8c] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.detail-metric[data-v-b2c85a8c] {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.detail-label[data-v-b2c85a8c] {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 6px;
}
.detail-value[data-v-b2c85a8c] {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
}
.current-stage-banner[data-v-b2c85a8c] {
  border-radius: 16px;
  padding: 16px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
}
.stage-list[data-v-b2c85a8c] {
  display: grid;
  gap: 16px;
}
.stage-card[data-v-b2c85a8c] {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease;
}
.stage-card--completed[data-v-b2c85a8c] {
  border-color: #dcfce7;
  background: #f0fdf4;
}
.stage-card--current[data-v-b2c85a8c] {
  border-color: #fef08a;
  background: #fefce8;
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.08);
}
.stage-card--cancelled[data-v-b2c85a8c] {
  opacity: 0.7;
  background: #f1f5f9;
}
.stage-card--upcoming[data-v-b2c85a8c] {
  border-style: dashed;
  background: #fafafa;
}
.approver-list[data-v-b2c85a8c] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.approver-row[data-v-b2c85a8c] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
}
.stage-meta[data-v-b2c85a8c] {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.75rem;
  color: #64748b;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.action-comment[data-v-b2c85a8c] {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 12px;
  border-left: 4px solid #cbd5e1;
  font-style: italic;
  color: #475569;
}
.payload-preview[data-v-b2c85a8c] {
  margin: 0;
  max-height: 400px;
  overflow: auto;
  padding: 16px;
  border-radius: 12px;
  background: #1e293b;
  color: #e2e8f0;
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.5;
}
.payload-expansion[data-v-b2c85a8c] {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
}
.tracker-state[data-v-b2c85a8c] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}
.scale-fade-enter-active[data-v-b2c85a8c],
.scale-fade-leave-active[data-v-b2c85a8c] {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scale-fade-enter-from[data-v-b2c85a8c],
.scale-fade-leave-to[data-v-b2c85a8c] {
  opacity: 0;
  transform: scale(0.5);
}
@media (max-width: 1023px) {
.tracker-body[data-v-b2c85a8c] {
    height: calc(100vh - 100px);
}
}

.q-drawer[data-v-93ead3fa] {
  box-shadow: none !important;
}
.q-drawer--right[data-v-93ead3fa] {
  width: auto;
}

/* Override global drawer width for chat drawer */
.q-drawer--right.chat-drawer[data-v-93ead3fa] {
  width: 80vw !important;
  min-width: 800px !important;
  max-width: 1400px !important;
}
.GNL__toolbar[data-v-93ead3fa] {
  height: 64px;
}
.GNL__toolbar-input[data-v-93ead3fa] {
  width: 55%;
  background-color: var(--q-grey-7);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0 8px;
}
.q-field__label[data-v-93ead3fa] {
  font-size: 1rem;
}
.q-toolbar__title[data-v-93ead3fa] {
  font-size: 1.25rem;
  font-weight: 500;
}
.q-scroll-area[data-v-93ead3fa] {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.q-mb-md[data-v-93ead3fa] {
  margin-bottom: 16px;
}
.q-pa-md[data-v-93ead3fa] {
  padding: 16px;
}
.main-header[data-v-93ead3fa] {
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.logo-text[data-v-93ead3fa] {
  font-size: 16px;
  letter-spacing: 1px;
  color: #1e293b;
}
.module-badge[data-v-93ead3fa] {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -2px;
}
.header-search-input[data-v-93ead3fa] {
  width: 320px;
  transition: all 0.3s ease;
}
.header-search-input[data-v-93ead3fa] .q-field__control {
  border: 1px solid #e2e8f0;
}
.header-search-input.q-field--focused[data-v-93ead3fa] {
  width: 400px;
}
.header-search-input.q-field--focused[data-v-93ead3fa] .q-field__control {
  border-color: var(--q-primary);
  box-shadow: 0 0 0 3px rgba(var(--q-primary-rgb), 0.1);
}
.user-profile[data-v-93ead3fa] {
  transition: background-color 0.2s ease;
}
.user-profile[data-v-93ead3fa]:hover {
  background-color: #f1f5f9;
}
.action-btn[data-v-93ead3fa] {
  transition: all 0.2s ease;
}
.action-btn[data-v-93ead3fa]:hover {
  color: var(--q-primary) !important;
  background-color: rgba(var(--q-primary-rgb), 0.05);
}
.floating-actions-container[data-v-93ead3fa] {
  position: fixed;
  bottom: 40px;
  right: 32px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 16px;
  z-index: 2000;
}
.floating-action-btn[data-v-93ead3fa] {
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.floating-action-btn[data-v-93ead3fa] .q-icon {
  font-size: 20px;
}
.floating-action-btn[data-v-93ead3fa]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.main-page-container[data-v-93ead3fa] {
  padding-bottom: 80px !important;
}
.suggestion-card[data-v-93ead3fa] {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.suggestion-card[data-v-93ead3fa]:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.suggestion-input[data-v-93ead3fa] {
  font-size: 14px;
}
.suggestion-input .q-field__control[data-v-93ead3fa] {
  border-radius: 8px;
}
.image-upload-section[data-v-93ead3fa] {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}
.upload-area[data-v-93ead3fa] {
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}
.upload-area[data-v-93ead3fa]:hover {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
}
.image-preview[data-v-93ead3fa] {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.02);
}
.ask-hybrid-drawer .ask-hybrid-drawer-content[data-v-93ead3fa] {
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dms-drawer[data-v-93ead3fa] {
  min-width: 70vw !important;
}
.chat-drawer-content[data-v-93ead3fa] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dms-drawer-iframe[data-v-93ead3fa] {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.chat-header[data-v-93ead3fa] {
  border-bottom: 2px solid var(--q-primary);
  color: var(--q-dark);
}
.dms-header[data-v-93ead3fa] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #f5f5f5;
}
.chat-content[data-v-93ead3fa] {
  flex: 1;
  overflow: hidden;
  height: calc(100vh - 80px);
}
.dms-content[data-v-93ead3fa] {
  flex: 1;
  overflow: hidden;
  height: calc(100vh - 80px);
}
.notification-item[data-v-93ead3fa] {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.notification-icon[data-v-93ead3fa] {
  color: #1976d2;
}
.notification-time[data-v-93ead3fa] {
  color: #888;
  font-size: 0.8rem;
}
.user-name[data-v-93ead3fa] {
  font-weight: bold;
}
.q-header[data-v-93ead3fa] {
  box-shadow: none !important;
}

/* Responsive styles for suggestion box */
@media (max-width: 768px) {
.suggestion-box[data-v-93ead3fa] {
    bottom: 70px;
    right: 8px;
    width: calc(100vw - 16px);
    max-width: 360px;
}
.suggestion-card[data-v-93ead3fa] {
    border-radius: 8px;
}
.upload-area[data-v-93ead3fa] {
    padding: 16px;
}
.upload-area .q-icon[data-v-93ead3fa] {
    font-size: 36px !important;
}
}
@media (max-width: 480px) {
.suggestion-box[data-v-93ead3fa] {
    bottom: 60px;
    right: 4px;
    width: calc(100vw - 8px);
}
.upload-area[data-v-93ead3fa] {
    padding: 12px;
}
.upload-area .q-icon[data-v-93ead3fa] {
    font-size: 32px !important;
}
}

/* Non-scoped styles for Quasar drawer override - must be global to affect Quasar components */
/* Use multiple selectors for maximum specificity */
.q-drawer--right.chat-drawer,
.q-drawer.chat-drawer.q-drawer--right,
body .q-drawer--right.chat-drawer {
  width: 50vw !important;
  min-width: 600px !important;
  max-width: 1000px !important;
}

/* Override any inline styles that Quasar might apply */
.q-drawer--right.chat-drawer[style*="width"] {
  width: 50vw !important;
  min-width: 600px !important;
  max-width: 1000px !important;
}

/* Password change overlay to block UI interaction */
.password-change-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5999; /* Below modal (6000) but above everything else */
  pointer-events: auto;
}

.styled-card[data-v-8576a0ee] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-8576a0ee]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.enhanced-approvals-panel[data-v-8576a0ee] {
  min-height: 400px;
}

/* List Styling */
.approvals-list[data-v-8576a0ee] {
  border-radius: 8px;
  overflow: hidden;
}
.approval-item[data-v-8576a0ee] {
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}
.approval-item[data-v-8576a0ee]:hover {
  background: rgba(0, 0, 0, 0.02);
  border-left-color: var(--q-primary);
}
.approval-item.selected[data-v-8576a0ee] {
  background: rgba(var(--q-primary-rgb), 0.08);
  border-left-color: var(--q-primary);
}
.approval-title[data-v-8576a0ee] {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--q-dark);
  margin-bottom: 4px;
}
.approval-subtitle[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--q-grey-7);
}
.module-badge[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  background: rgba(var(--q-primary-rgb), 0.1);
  color: var(--q-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.separator-icon[data-v-8576a0ee] {
  color: var(--q-grey-5);
  margin: 0 4px;
}
.operation-text[data-v-8576a0ee] {
  font-weight: 500;
  color: var(--q-grey-8);
}
.requester-text[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  color: var(--q-grey-7);
}
.approval-meta[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.meta-item[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--q-grey-6);
}
.meta-separator[data-v-8576a0ee] {
  color: var(--q-grey-5);
  margin: 0 4px;
}
.overdue-badge[data-v-8576a0ee] {
  color: var(--q-negative);
  font-weight: 500;
  font-size: 0.75rem;
}
.action-buttons[data-v-8576a0ee] {
  display: flex;
  gap: 4px;
  align-items: center;
}
.action-btn[data-v-8576a0ee] {
  min-width: 32px;
  width: 32px;
  height: 32px;
}

/* Selection Bar */
.selection-bar .q-banner[data-v-8576a0ee] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination-container[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.pagination-info[data-v-8576a0ee] {
  white-space: nowrap;
}

/* Table styling */
.approvals-table[data-v-8576a0ee] {
  border-radius: 8px;
  overflow: hidden;
}
.priority-chip[data-v-8576a0ee], .status-chip[data-v-8576a0ee] {
  font-weight: 500;
  text-transform: capitalize;
}
.due-date-cell[data-v-8576a0ee] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.due-date-text[data-v-8576a0ee] {
  font-weight: 500;
}
.overdue-indicator[data-v-8576a0ee], .due-soon-indicator[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
}
.overdue-text[data-v-8576a0ee] {
  color: #d32f2f;
  font-weight: 500;
}
.due-soon-text[data-v-8576a0ee] {
  color: #f57c00;
  font-weight: 500;
}
.action-buttons[data-v-8576a0ee] {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.action-btn[data-v-8576a0ee] {
  min-width: 32px;
  width: 32px;
  height: 32px;
}

/* Card view styling */
.cards-view[data-v-8576a0ee] {
  padding: 1rem 0;
}
.approval-card[data-v-8576a0ee] {
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.approval-card[data-v-8576a0ee]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.card-header[data-v-8576a0ee] {
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.card-content[data-v-8576a0ee] {
  padding: 16px;
}
.card-title[data-v-8576a0ee] {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #2c3e50;
}
.requester-info[data-v-8576a0ee], .due-date-info[data-v-8576a0ee] {
  display: flex;
  align-items: center;
  color: #5a6c7d;
}
.card-actions[data-v-8576a0ee] {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

/* No data styling */
.no-data-container[data-v-8576a0ee] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.no-data-text[data-v-8576a0ee] {
  margin-top: 1rem;
}

/* Bulk actions bar */
.bulk-actions-bar[data-v-8576a0ee] {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  min-width: 400px;
  max-width: 600px;
}
.bulk-actions-bar .q-banner[data-v-8576a0ee] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Hover effects */
.hover-shadow[data-v-8576a0ee]:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive design */
@media (max-width: 768px) {
.action-buttons[data-v-8576a0ee] {
    flex-wrap: wrap;
}
.cards-view .col-sm-6[data-v-8576a0ee] {
    flex: 0 0 100%;
    max-width: 100%;
}
.bulk-actions-bar[data-v-8576a0ee] {
    left: 1rem;
    right: 1rem;
    transform: none;
    min-width: auto;
}
}

/* Modal Container */
.approval-details-dialog[data-v-3a5340ef] {
  border-radius: 12px;
  overflow: hidden;
}
.modal-card[data-v-3a5340ef] {
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
  width: 60vw;
  max-width: 100vw;
}

/* Header Styles */
.modal-header[data-v-3a5340ef] {
  background: #fff;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}
.module-avatar[data-v-3a5340ef] {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.modal-title[data-v-3a5340ef] {
  font-size: 1.5rem;
  line-height: 1.3;
  color: #2c3e50;
  margin-bottom: 4px;
}
.modal-subtitle[data-v-3a5340ef] {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 4px;
}
.separator-icon[data-v-3a5340ef] {
  color: #95a5a6;
}
.status-chips[data-v-3a5340ef] {
  display: flex;
  gap: 8px;
}
.status-chip[data-v-3a5340ef], .priority-chip[data-v-3a5340ef] {
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.close-btn[data-v-3a5340ef] {
  transition: all 0.2s ease;
}
.close-btn[data-v-3a5340ef]:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transform: scale(1.1);
}

/* Content Layout */
.modal-content[data-v-3a5340ef] {
  padding: 24px;
  height: calc(100vh - 140px);
  overflow-y: auto;
}
.content-grid[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.main-column[data-v-3a5340ef] {
  min-height: 400px;
}
.sidebar-column[data-v-3a5340ef] {
  position: sticky;
  top: 0;
}

/* Content Cards */
.content-card[data-v-3a5340ef] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.content-card[data-v-3a5340ef]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.card-header-section[data-v-3a5340ef] {
  padding: 20px 20px 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.section-title[data-v-3a5340ef] {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.section-subtitle[data-v-3a5340ef] {
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Action Cards */
.action-buttons-section[data-v-3a5340ef] {
  padding: 20px;
}
.action-btn[data-v-3a5340ef] {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.approve-btn[data-v-3a5340ef] {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
}
.approve-btn[data-v-3a5340ef]:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}
.reject-btn[data-v-3a5340ef] {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
}
.reject-btn[data-v-3a5340ef]:hover {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3);
  transform: translateY(-2px);
}
.secondary-actions[data-v-3a5340ef] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.secondary-btn[data-v-3a5340ef] {
  justify-content: flex-start;
  border-radius: 8px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.secondary-btn[data-v-3a5340ef]:hover {
  transform: translateX(4px);
}

/* Status Card */
.status-info[data-v-3a5340ef] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-item[data-v-3a5340ef] {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.status-item[data-v-3a5340ef]:last-child {
  border-bottom: none;
}

/* Footer Styles */
.modal-footer[data-v-3a5340ef] {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.footer-content[data-v-3a5340ef] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-info[data-v-3a5340ef] {
  display: flex;
  align-items: center;
  flex: 1;
}
.request-id[data-v-3a5340ef] {
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: #666;
}
.footer-actions[data-v-3a5340ef] {
  display: flex;
  gap: 12px;
}
.cancel-btn[data-v-3a5340ef] {
  border-radius: 8px;
  text-transform: none;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.2s ease;
}
.cancel-btn[data-v-3a5340ef]:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Delegation dialog */
.delegation-dialog[data-v-3a5340ef] {
  min-width: 400px;
}

/* Responsive Design */
@media (max-width: 1024px) {
.modal-card[data-v-3a5340ef] {
    width: 80vw;
}
.content-grid[data-v-3a5340ef] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.sidebar-column[data-v-3a5340ef] {
    position: static;
}
.modal-header[data-v-3a5340ef] {
    padding: 20px;
}
.modal-content[data-v-3a5340ef] {
    padding: 20px;
}
.modal-title[data-v-3a5340ef] {
    font-size: 1.25rem;
}
}
@media (max-width: 768px) {
.modal-card[data-v-3a5340ef] {
    width: 100vw;
    margin: 0;
}
.modal-header[data-v-3a5340ef] {
    padding: 16px;
}
.modal-content[data-v-3a5340ef] {
    padding: 16px;
    height: calc(100vh - 120px);
}
.title-section[data-v-3a5340ef] {
    flex: 1;
    min-width: 0;
}
.modal-title[data-v-3a5340ef] {
    font-size: 1.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modal-subtitle[data-v-3a5340ef] {
    font-size: 0.8125rem;
}
.status-chips[data-v-3a5340ef] {
    flex-direction: column;
    align-items: flex-start;
}
.footer-content[data-v-3a5340ef] {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}
.footer-info[data-v-3a5340ef] {
    justify-content: center;
}
.footer-actions[data-v-3a5340ef] {
    justify-content: center;
}
}

/* Animations */
@keyframes slideInUp-3a5340ef {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.content-card[data-v-3a5340ef] {
  animation: slideInUp-3a5340ef 0.3s ease-out;
}
.content-card[data-v-3a5340ef]:nth-child(1) { animation-delay: 0.1s;
}
.content-card[data-v-3a5340ef]:nth-child(2) { animation-delay: 0.2s;
}
.content-card[data-v-3a5340ef]:nth-child(3) { animation-delay: 0.3s;
}

/* Keyboard shortcuts styling */
kbd[data-v-3a5340ef] {
  background: #f1f3f4;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  color: #444;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  padding: 2px 4px;
  margin: 0 2px;
  white-space: nowrap;
}

/* Custom scrollbar */
.modal-content[data-v-3a5340ef]::-webkit-scrollbar {
  width: 6px;
}
.modal-content[data-v-3a5340ef]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.modal-content[data-v-3a5340ef]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.modal-content[data-v-3a5340ef]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Info sections */
.info-section[data-v-3a5340ef] {
  margin-bottom: 24px;
}
.section-heading[data-v-3a5340ef] {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-grid[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.info-item[data-v-3a5340ef] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label[data-v-3a5340ef] {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a6c7d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value[data-v-3a5340ef] {
  font-size: 0.875rem;
  color: #2c3e50;
  font-weight: 500;
}

/* Payload styling */
.payload-content[data-v-3a5340ef] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
}
.po-approval-body[data-v-3a5340ef] {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  padding: 20px;
}
.payload-section[data-v-3a5340ef] {
  margin-bottom: 20px;
}
.payload-title[data-v-3a5340ef] {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.payload-grid[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.payload-item[data-v-3a5340ef] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.payload-item.full-width[data-v-3a5340ef] {
  grid-column: 1 / -1;
}
.payload-label[data-v-3a5340ef] {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a6c7d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.payload-value[data-v-3a5340ef] {
  font-size: 0.875rem;
  color: #2c3e50;
  font-weight: 500;
  word-break: break-word;
}
.po-summary-grid[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.po-summary-card[data-v-3a5340ef] {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.po-summary-card--accent[data-v-3a5340ef] {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}
.po-summary-card--accent .po-summary-label[data-v-3a5340ef],
.po-summary-card--accent .po-summary-value[data-v-3a5340ef] {
  color: white;
}
.po-summary-label[data-v-3a5340ef] {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 6px;
}
.po-summary-value[data-v-3a5340ef] {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.po-notes-card[data-v-3a5340ef] {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fffdf1;
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #78350f;
  line-height: 1.6;
}
.po-supplier-grid .payload-item[data-v-3a5340ef],
.po-item-card[data-v-3a5340ef] {
  border-radius: 14px;
}
.po-items-list[data-v-3a5340ef] {
  display: grid;
  gap: 12px;
}
.po-item-card[data-v-3a5340ef] {
  padding: 16px;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}
.po-item-top[data-v-3a5340ef] {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.po-item-title[data-v-3a5340ef] {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.po-item-subtitle[data-v-3a5340ef] {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}
.po-item-metrics[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.po-item-metric[data-v-3a5340ef] {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.po-item-metric span[data-v-3a5340ef] {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}
.po-item-metric strong[data-v-3a5340ef] {
  font-size: 0.95rem;
  color: #0f172a;
}
.po-item-metric--total[data-v-3a5340ef] {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.16);
}

/* Items table */
.items-table[data-v-3a5340ef] {
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.items-header[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 16px;
  background: #f1f3f4;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5a6c7d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.item-row[data-v-3a5340ef] {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.875rem;
  color: #2c3e50;
}
.item-row[data-v-3a5340ef]:last-child {
  border-bottom: none;
}
.item-row[data-v-3a5340ef]:hover {
  background: rgba(0, 0, 0, 0.02);
}
@media (max-width: 768px) {
.po-approval-body[data-v-3a5340ef] {
    padding: 14px;
}
.po-item-top[data-v-3a5340ef] {
    flex-direction: column;
}
.po-item-metrics[data-v-3a5340ef] {
    grid-template-columns: 1fr;
}
}

/* Timeline */
.timeline[data-v-3a5340ef] {
  position: relative;
  padding-left: 24px;
}
.timeline[data-v-3a5340ef]::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}
.timeline-item[data-v-3a5340ef] {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}
.timeline-item[data-v-3a5340ef]:last-child {
  margin-bottom: 0;
}
.timeline-marker[data-v-3a5340ef] {
  position: absolute;
  left: -28px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-content[data-v-3a5340ef] {
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.timeline-title[data-v-3a5340ef] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}
.timeline-subtitle[data-v-3a5340ef] {
  font-size: 0.75rem;
  color: #5a6c7d;
  margin-bottom: 4px;
}
.timeline-description[data-v-3a5340ef] {
  font-size: 0.8125rem;
  color: #7f8c8d;
  line-height: 1.4;
}

/* Action buttons */
.action-buttons-grid[data-v-3a5340ef] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-content[data-v-3a5340ef] {
  text-align: left;
  line-height: 1.2;
}
.btn-title[data-v-3a5340ef] {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.btn-subtitle[data-v-3a5340ef] {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Comments */
.comment-input[data-v-3a5340ef] {
  border-radius: 8px;
}

/* Status info */
.status-info[data-v-3a5340ef] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-item[data-v-3a5340ef] {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.status-item[data-v-3a5340ef]:last-child {
  border-bottom: none;
}

/* JSON view */
.json-view[data-v-3a5340ef] {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 12px;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: #2c3e50;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 300px;
  overflow-y: auto;
}

/* Payload expansion */
.payload-expansion[data-v-3a5340ef] {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.payload-expansion .q-expansion-item__content[data-v-3a5340ef] {
  padding: 0;
}

.item-key[data-v-fd5c82c9] {
  font-weight: 500;
  color: #555;
}
.item-value[data-v-fd5c82c9] {
  font-weight: 400;
}

.payload-list[data-v-98969055] {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
}

.header-section[data-v-d253a19f] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
}
.cursor-pointer[data-v-d253a19f] {
  cursor: pointer;
}
.cursor-pointer[data-v-d253a19f]:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.history-dialog-enhanced[data-v-d253a19f] {
  min-width: 90vw;
  min-height: 90vh;
}
.history-card[data-v-d253a19f] {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.history-card[data-v-d253a19f]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--q-primary);
}
.ellipsis-2-lines[data-v-d253a19f] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.history-details-dialog[data-v-d253a19f] {
  min-width: 90vw;
  min-height: 90vh;
}
pre[data-v-d253a19f] {
  background-color: #f5f5f5;
  padding: 12px;
  border-radius: 4px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.4;
}
.payload-preview[data-v-d253a19f] {
  background: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 400px;
  overflow-y: auto;
}
.history-table .q-td[data-v-d253a19f] {
  cursor: pointer;
}
.history-table .text-caption[data-v-d253a19f] {
  font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.history-dialog-enhanced[data-v-d253a19f] {
    min-width: 95vw;
    min-height: 95vh;
}
.history-card[data-v-d253a19f] {
    margin-bottom: 16px;
}
}

.create-workflow-dialog[data-v-1a6c0bc5] {
  min-height: 72vh;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  width: 72vw;
  max-width: 1180px;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}
.dialog-header[data-v-1a6c0bc5] {
  padding: 24px 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}
.dialog-badge[data-v-1a6c0bc5] {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.dialog-subtitle[data-v-1a6c0bc5] {
  color: rgba(224, 231, 255, 0.9);
}
.dialog-content[data-v-1a6c0bc5] {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 24px 28px;
  height: calc(92vh - 190px);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.dialog-footer[data-v-1a6c0bc5] {
  padding: 16px 24px;
  border-top: 1px solid #e9ecef;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.workflow-stepper[data-v-1a6c0bc5] {
  background: transparent;
}
.workflow-stepper[data-v-1a6c0bc5] .q-stepper__header {
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 8px;
}
.form-pane[data-v-1a6c0bc5],
.review-card[data-v-1a6c0bc5] {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
.form-pane[data-v-1a6c0bc5] {
  padding: 20px;
}
.section-heading[data-v-1a6c0bc5] {
  margin-bottom: 18px;
}
.steps-container[data-v-1a6c0bc5] {
  display: grid;
  gap: 14px;
}
.step-expansion[data-v-1a6c0bc5] {
  border-radius: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(191, 219, 254, 0.9);
}
.step-expansion-header[data-v-1a6c0bc5] {
  background: linear-gradient(180deg, #eff6ff, #ffffff);
}
.setting-item[data-v-1a6c0bc5] {
  height: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.review-grid[data-v-1a6c0bc5] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-item[data-v-1a6c0bc5] {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.review-item span[data-v-1a6c0bc5] {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: #64748b;
}

/* Responsive design */
@media (max-width: 768px) {
.dialog-header[data-v-1a6c0bc5],
  .dialog-content[data-v-1a6c0bc5],
  .dialog-footer[data-v-1a6c0bc5] {
    padding: 16px;
}
.create-workflow-dialog[data-v-1a6c0bc5] {
    width: 95vw;
    max-width: 95vw;
    min-height: 80vh;
    max-height: 92vh;
    border-radius: 22px;
}
.dialog-content[data-v-1a6c0bc5] {
    height: calc(92vh - 176px);
}
.review-grid[data-v-1a6c0bc5] {
    grid-template-columns: 1fr;
}
}

.dialog-header[data-v-b8ce85e8] {
  padding: 12px;
  background-color: white;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.dialog-content[data-v-b8ce85e8] {
  max-height: 70vh;
  overflow-y: auto;
  padding: 12px;
}
.dialog-footer[data-v-b8ce85e8] {
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.02);
}
.info-card[data-v-b8ce85e8],
.steps-card[data-v-b8ce85e8],
.activity-card[data-v-b8ce85e8],
.stats-card[data-v-b8ce85e8],
.actions-card[data-v-b8ce85e8],
.properties-card[data-v-b8ce85e8] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.info-card[data-v-b8ce85e8]:hover,
.steps-card[data-v-b8ce85e8]:hover,
.activity-card[data-v-b8ce85e8]:hover,
.stats-card[data-v-b8ce85e8]:hover,
.actions-card[data-v-b8ce85e8]:hover,
.properties-card[data-v-b8ce85e8]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.step-item[data-v-b8ce85e8] {
  position: relative;
}
.step-item[data-v-b8ce85e8]:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 100%;
  bottom: -12px;
  width: 2px;
  background: #e9ecef;
  z-index: 1;
}
.step-card[data-v-b8ce85e8] {
  position: relative;
  z-index: 2;
}
.step-header[data-v-b8ce85e8] {
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.step-number[data-v-b8ce85e8] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--q-primary);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}
.step-content[data-v-b8ce85e8] {
  padding: 16px;
}
.stats-grid[data-v-b8ce85e8] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-item[data-v-b8ce85e8] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
}
.stat-content[data-v-b8ce85e8] {
  flex: 1;
}
.stat-value[data-v-b8ce85e8] {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--q-dark);
}
.stat-label[data-v-b8ce85e8] {
  font-size: 0.75rem;
  color: var(--q-grey-6);
  text-transform: uppercase;
  font-weight: 500;
}
.properties-list[data-v-b8ce85e8] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.property-item[data-v-b8ce85e8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.property-label[data-v-b8ce85e8] {
  font-weight: 500;
  color: var(--q-grey-7);
}
.property-value[data-v-b8ce85e8] {
  color: var(--q-dark);
}
.full-width[data-v-b8ce85e8] {
  width: 100%;
}
.assignee-card[data-v-b8ce85e8] {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.assignee-card[data-v-b8ce85e8]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}
.assignees-detailed[data-v-b8ce85e8] {
  max-height: 300px;
  overflow-y: auto;
}
.workflow-details-dialog[data-v-b8ce85e8] {
  width: 92vw;
  max-width: 1280px;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}
.dialog-header[data-v-b8ce85e8] {
  padding: 24px 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}
.dialog-badge[data-v-b8ce85e8] {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.dialog-subtitle[data-v-b8ce85e8] {
  color: rgba(224, 231, 255, 0.88);
}
.dialog-content[data-v-b8ce85e8] {
  padding: 20px 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}
.overview-strip[data-v-b8ce85e8] {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.overview-metric[data-v-b8ce85e8] {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}
.overview-metric span[data-v-b8ce85e8] {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 6px;
}
.overview-metric strong[data-v-b8ce85e8] {
  font-size: 1.2rem;
  color: #0f172a;
}
.dialog-footer[data-v-b8ce85e8] {
  padding: 16px 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.content-surface[data-v-b8ce85e8] {
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.96);
}
.section-topper[data-v-b8ce85e8] {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.description-panel[data-v-b8ce85e8] {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.taxonomy-grid[data-v-b8ce85e8] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.taxonomy-card[data-v-b8ce85e8] {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.info-card[data-v-b8ce85e8],
.summary-card[data-v-b8ce85e8],
.steps-card[data-v-b8ce85e8],
.activity-card[data-v-b8ce85e8],
.stats-card[data-v-b8ce85e8],
.actions-card[data-v-b8ce85e8],
.properties-card[data-v-b8ce85e8] {
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.96);
}
.info-card[data-v-b8ce85e8]:hover,
.summary-card[data-v-b8ce85e8]:hover,
.steps-card[data-v-b8ce85e8]:hover,
.activity-card[data-v-b8ce85e8]:hover,
.stats-card[data-v-b8ce85e8]:hover,
.actions-card[data-v-b8ce85e8]:hover,
.properties-card[data-v-b8ce85e8]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}
.summary-grid[data-v-b8ce85e8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.summary-item[data-v-b8ce85e8] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.summary-content[data-v-b8ce85e8] {
  flex: 1;
}
.summary-value[data-v-b8ce85e8] {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--q-dark);
  line-height: 1.2;
}
.summary-label[data-v-b8ce85e8] {
  font-size: 0.75rem;
  color: var(--q-grey-6);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.step-types[data-v-b8ce85e8],
.approval-modes[data-v-b8ce85e8] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.workflow-stage-card[data-v-b8ce85e8] {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.workflow-stage-head[data-v-b8ce85e8] {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.stage-index[data-v-b8ce85e8] {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: white;
  font-weight: 700;
}
.workflow-stage-meta[data-v-b8ce85e8] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.meta-pill[data-v-b8ce85e8] {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.meta-pill span[data-v-b8ce85e8] {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}
.meta-pill strong[data-v-b8ce85e8] {
  color: #0f172a;
  font-size: 0.92rem;
}
.assignees-block[data-v-b8ce85e8] {
  padding-top: 4px;
}
.action-surface[data-v-b8ce85e8] .q-btn {
  min-height: 44px;
  border-radius: 14px;
}

/* Responsive design */
@media (max-width: 1400px) {
.workflow-details-dialog[data-v-b8ce85e8] {
    width: 90vw;
    max-width: 90vw;
}
}
@media (max-width: 1024px) {
.overview-strip[data-v-b8ce85e8],
  .taxonomy-grid[data-v-b8ce85e8],
  .workflow-stage-meta[data-v-b8ce85e8],
  .stats-grid[data-v-b8ce85e8] {
    grid-template-columns: 1fr 1fr;
}
.summary-grid[data-v-b8ce85e8] {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
}
@media (max-width: 1200px) {
.workflow-details-dialog[data-v-b8ce85e8] {
    width: 94vw;
    max-width: 94vw;
}
}
@media (max-width: 768px) {
.workflow-details-dialog[data-v-b8ce85e8] {
    width: 96vw;
    max-width: 96vw;
    border-radius: 22px;
}
.dialog-content[data-v-b8ce85e8] {
    max-height: 60vh;
}
.overview-strip[data-v-b8ce85e8],
  .taxonomy-grid[data-v-b8ce85e8],
  .workflow-stage-meta[data-v-b8ce85e8] {
    grid-template-columns: 1fr;
}
.section-topper[data-v-b8ce85e8],
  .workflow-stage-head[data-v-b8ce85e8] {
    flex-direction: column;
    align-items: flex-start;
}
.step-number[data-v-b8ce85e8] {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}
.summary-grid[data-v-b8ce85e8] {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.summary-item[data-v-b8ce85e8] {
    padding: 12px;
}
.summary-value[data-v-b8ce85e8] {
    font-size: 1.4rem;
}
}

.create-workflow-dialog[data-v-66aa256e] {
  min-height: 72vh;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  width: 72vw;
  max-width: 1180px;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}
.dialog-header[data-v-66aa256e] {
  padding: 24px 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}
.dialog-badge[data-v-66aa256e] {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.dialog-subtitle[data-v-66aa256e] {
  color: rgba(224, 231, 255, 0.9);
}
.dialog-content[data-v-66aa256e] {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 24px 28px;
  height: calc(92vh - 190px);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.dialog-footer[data-v-66aa256e] {
  padding: 16px 24px;
  border-top: 1px solid #e9ecef;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.workflow-stepper[data-v-66aa256e] {
  background: transparent;
}
.workflow-stepper[data-v-66aa256e] .q-stepper__header {
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 8px;
}
.form-pane[data-v-66aa256e],
.review-card[data-v-66aa256e] {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
.form-pane[data-v-66aa256e] {
  padding: 20px;
}
.section-heading[data-v-66aa256e] {
  margin-bottom: 18px;
}
.step-item[data-v-66aa256e] {
  margin-bottom: 14px;
}
.step-card-shell[data-v-66aa256e] {
  border-radius: 18px;
  border: 1px solid rgba(191, 219, 254, 0.9);
}
.setting-item[data-v-66aa256e] {
  height: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

/* Responsive design */
@media (max-width: 1024px) {
.create-workflow-dialog[data-v-66aa256e] {
    width: 90vw;
    max-width: 90vw;
}
}
@media (max-width: 768px) {
.dialog-content[data-v-66aa256e] {
    max-height: 60vh;
}
.create-workflow-dialog[data-v-66aa256e] {
    width: 95vw;
    max-width: 95vw;
    border-radius: 22px;
}
}

.import-export-dialog[data-v-9c5e044c] {
  width: 72vw;
  max-width: 1040px;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fbff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}
.dialog-header[data-v-9c5e044c] {
  padding: 24px 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}
.dialog-badge[data-v-9c5e044c] {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.dialog-subtitle[data-v-9c5e044c] {
  color: rgba(224, 231, 255, 0.88);
}
.dialog-content[data-v-9c5e044c] {
  padding: 24px 28px;
  max-height: 70vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}
.action-card[data-v-9c5e044c] {
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.96);
}
.action-card[data-v-9c5e044c]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}
.upload-area[data-v-9c5e044c] {
  border: 2px dashed #e0e0e0;
  border-radius: 18px;
  padding: 32px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}
.upload-area[data-v-9c5e044c]:hover {
  border-color: var(--q-primary);
  background: rgba(var(--q-primary-rgb), 0.05);
}
.upload-area.dragover[data-v-9c5e044c] {
  border-color: var(--q-primary);
  background: rgba(var(--q-primary-rgb), 0.1);
}
.preview-card[data-v-9c5e044c] {
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.96);
}
.dialog-footer[data-v-9c5e044c] {
  padding: 16px 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.full-width[data-v-9c5e044c] {
  width: 100%;
}
@media (max-width: 1024px) {
.import-export-dialog[data-v-9c5e044c] {
    width: 90vw;
    max-width: 90vw;
}
}
@media (max-width: 768px) {
.import-export-dialog[data-v-9c5e044c] {
    width: 95vw;
    max-width: 95vw;
    border-radius: 22px;
}
.dialog-header[data-v-9c5e044c],
  .dialog-content[data-v-9c5e044c],
  .dialog-footer[data-v-9c5e044c] {
    padding-left: 16px;
    padding-right: 16px;
}
}

.workflow-panel[data-v-60d77ba4] {
  min-height: 100%;
}
.panel-card[data-v-60d77ba4] {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.panel-chip[data-v-60d77ba4] {
  border-radius: 999px;
  font-weight: 600;
}
.toolbar-input[data-v-60d77ba4] .q-field__control,
.toolbar-btn[data-v-60d77ba4] {
  min-height: 42px;
  border-radius: 12px;
}
.workflow-table[data-v-60d77ba4] {
  border-radius: 18px;
  overflow: hidden;
}
.workflow-table[data-v-60d77ba4] thead tr {
  background: #eff4ff;
}
.workflow-table[data-v-60d77ba4] th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #334155;
}
.workflow-table[data-v-60d77ba4] td {
  padding-top: 14px;
  padding-bottom: 14px;
}
.step-pill[data-v-60d77ba4] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}
.status-badge[data-v-60d77ba4] {
  padding: 6px 10px;
  font-weight: 700;
}
.empty-state[data-v-60d77ba4] {
  min-height: 260px;
}
.empty-copy[data-v-60d77ba4] {
  max-width: 360px;
}
@media (max-width: 599px) {
.panel-card[data-v-60d77ba4] {
    border-radius: 20px;
}
}

.panel-card[data-v-5848431c] {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.panel-chip[data-v-5848431c] {
  border-radius: 999px;
  font-weight: 600;
}
.toolbar-input[data-v-5848431c] .q-field__control,
.toolbar-btn[data-v-5848431c] {
  min-height: 42px;
  border-radius: 12px;
}
.policy-table[data-v-5848431c] {
  border-radius: 18px;
  overflow: hidden;
}
.policy-table[data-v-5848431c] thead tr {
  background: #f5f3ff;
}
.policy-table[data-v-5848431c] th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #334155;
}
.condition-code[data-v-5848431c] {
  display: inline-block;
  max-width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
  background: #f6f8fa;
  padding: 4px 8px;
  border-radius: 8px;
  color: #1d4ed8;
}
.priority-pill[data-v-5848431c] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-weight: 700;
}
.empty-state[data-v-5848431c] {
  min-height: 250px;
}
.empty-copy[data-v-5848431c] {
  max-width: 360px;
}
.policy-dialog-card[data-v-5848431c] {
  min-width: 560px;
  max-width: 92vw;
  border-radius: 20px;
}
@media (max-width: 599px) {
.panel-card[data-v-5848431c] {
    border-radius: 20px;
}
.policy-dialog-card[data-v-5848431c] {
    min-width: unset;
    width: calc(100vw - 24px);
}
}

.approval-workflows-page[data-v-55f25956] {
  background:
    radial-gradient(circle at top left, rgba(32, 76, 205, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 23, 42, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f8ff 0%, #eef3fb 100%);
  min-height: 100%;
}
.page-shell[data-v-55f25956] {
  max-width: 1480px;
  margin: 0 auto;
}
.hero-card[data-v-55f25956] {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(24, 70, 171, 0.9)),
    linear-gradient(135deg, #0f172a, #1d4ed8);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}
.hero-badge[data-v-55f25956] {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-copy[data-v-55f25956] {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(224, 231, 255, 0.92);
}
.hero-actions[data-v-55f25956] {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.summary-card[data-v-55f25956] {
  height: 100%;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.summary-value[data-v-55f25956] {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}
.summary-label[data-v-55f25956] {
  margin-top: 4px;
  font-size: 0.85rem;
  color: rgba(224, 231, 255, 0.8);
}
.action-btn[data-v-55f25956] {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 700;
}
.subtle-action[data-v-55f25956] {
  border-color: rgba(255, 255, 255, 0.28);
}
.panel-skeleton[data-v-55f25956] {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.content-grid[data-v-55f25956] {
  align-items: start;
}
@media (max-width: 1023px) {
.hero-card[data-v-55f25956] {
    padding: 22px;
    border-radius: 22px;
}
}
@media (max-width: 599px) {
.approval-workflows-page[data-v-55f25956] {
    padding-left: 8px;
    padding-right: 8px;
}
.hero-card[data-v-55f25956] {
    padding: 18px;
}
}

.password-input[data-v-08f89121] {
  transition: all 0.3s ease;
}
.password-input:hover .q-field__append[data-v-08f89121] {
  opacity: 1;
}
.q-field__append[data-v-08f89121] {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.text-grey-5[data-v-08f89121] {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

.main-container[data-v-98dcb6e6] {
  background:
    radial-gradient(ellipse at 15% 15%, rgba(76, 175, 80, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(129, 199, 132, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, #f1f8e9 0%, #fafffe 60%, #ffffff 100%);
  min-height: 100vh;
  padding: 24px;
}

/* Background Styling */
.transparent-blur-bg[data-v-98dcb6e6] {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.6); */
  background: rgba(224, 232, 224, 0.8);

  backdrop-filter: blur(50px);
}

/* Login Container */
.login-container[data-v-98dcb6e6] {
  width: 420px;
  max-width: 90%;
  text-align: center;
  background: rgb(251, 251, 251);
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(147, 237, 150, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

/* Login page styling */
.login-page[data-v-98dcb6e6] {
  min-height: 100vh;
  padding: 0;
}

/* Login Card - Extended to encompass all components */
.login-card[data-v-98dcb6e6] {
  width: 420px;
  max-width: 92vw;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 24px 64px rgba(46, 125, 50, 0.12);
}
.card-accent-bar[data-v-98dcb6e6] {
  height: 5px;
  background: linear-gradient(90deg, #1b5e20 0%, #43a047 50%, #81c784 100%);
  flex-shrink: 0;
}

/* Glass Effect for Modern Look */
.glass-card[data-v-98dcb6e6] {
  backdrop-filter: blur(10px);
  /* background: rgba(255, 255, 255, 0.6); */

  /* background: rgba(224, 232, 224, 0.8); */
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(237, 241, 238, 0.1);
}

/* Logo Styling */
.login-logo[data-v-98dcb6e6] {
  max-width: 220px;
  height: auto;
}

/* Footer Styling */
.footer[data-v-98dcb6e6] {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
  color: #666;
  text-align: right;
}
.footer-logo[data-v-98dcb6e6] {
  max-width: 50px;
  height: auto;
}

/* Input focus styling */
.q-input__inner[data-v-98dcb6e6]:focus {
  background-color: #1576c6ff;
}

/* Company logo styling */
.company-logo[data-v-98dcb6e6] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.company-logo[data-v-98dcb6e6]:hover {
  transform: scale(1.05);
}

/* Company info section styling - inside card */
.company-info-section[data-v-98dcb6e6] {
  margin-top: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px solid #e0e0e0;
}

/* Company text styling */
.company-text[data-v-98dcb6e6] {
  color: #000000 !important;
  font-weight: 500;
}

/* App title styling */
.app-title[data-v-98dcb6e6] {
  font-weight: 900 !important;
  font-size: 1.5rem;
  color: #1a1a1a !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Version text styling */
.version-text[data-v-98dcb6e6] {
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: #666 !important;
  margin-left: 8px;
}

/* Tagline styling */
.tagline[data-v-98dcb6e6] {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.5px;
}

/* Fingerprint icon styling */
.fingerprint-icon[data-v-98dcb6e6] {
  border-left: 3px solid white;
  padding-left: 12px;
  margin-left: 8px;
  opacity: 0.9;
}

/* PWA install banner */
.pwa-install-banner[data-v-98dcb6e6] {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
}
.pwa-banner-card[data-v-98dcb6e6] {
  background: linear-gradient(135deg, #1b5e20 0%, #43a047 100%);
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.35);
  min-width: 240px;
}

/* Slide-down transition */
.slide-down-enter-active[data-v-98dcb6e6],
.slide-down-leave-active[data-v-98dcb6e6] {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slide-down-enter-from[data-v-98dcb6e6],
.slide-down-leave-to[data-v-98dcb6e6] {
  opacity: 0;
  transform: translateY(-24px);
}

.report-range-selector[data-v-4349bd51] .report-range-select {
  min-width: 180px;
}
.range-summary[data-v-4349bd51] {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
}

.dashboard-bg[data-v-0d2323d3] {
  background: #f8fafc;
  min-height: 100vh;
}

/* Header Styles */
.page-header-card[data-v-0d2323d3] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-0d2323d3]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card h1[data-v-0d2323d3] {
  line-height: 1.2;
}
.header-stat-chip[data-v-0d2323d3] {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 4px 12px;
  height: 36px;
  border-radius: 10px;
}

/* KPI Card Styles */
.kpi-card-modern[data-v-0d2323d3] {
  background: white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
}
.kpi-card-modern[data-v-0d2323d3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.kpi-icon-bg[data-v-0d2323d3] {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.kpi-content[data-v-0d2323d3] {
  flex-grow: 1;
}
.kpi-label[data-v-0d2323d3] {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.kpi-value[data-v-0d2323d3] {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-subtext[data-v-0d2323d3] {
  font-size: 12px;
  color: #94a3b8;
}

/* Module Card Styling */
.module-card[data-v-0d2323d3] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 90px;
  transition: all 0.3s ease;
}
.hover-card[data-v-0d2323d3] {
  transition: all 0.3s ease;
}
.hover-card[data-v-0d2323d3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
  border-color: #e0e0e0;
}
.card-header[data-v-0d2323d3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-0d2323d3] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

/* Quick Action Card */
.quick-action-card[data-v-0d2323d3] {
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
}
.quick-action-card[data-v-0d2323d3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.quick-action-card[data-v-0d2323d3]:active {
  transform: translateY(0);
}
.cursor-pointer[data-v-0d2323d3] {
  cursor: pointer;
}

/* Utility classes */
.line-height-tight[data-v-0d2323d3] {
  line-height: 1.2;
}
.border-grey-3[data-v-0d2323d3] {
  border: 1px solid #e0e0e0;
}

/* Dashboard specific styles */
.price-table[data-v-0d2323d3] {
  max-height: 300px;
  overflow-y: auto;
}
.price-item[data-v-0d2323d3] {
  padding: 12px;
  border-radius: 8px;
  background-color: #f8fafc;
  transition: background-color 0.2s;
  border: 1px solid #f1f5f9;
}
.price-item[data-v-0d2323d3]:hover {
  background-color: #f1f5f9;
}
.recent-orders[data-v-0d2323d3] {
  max-height: 200px;
  overflow-y: auto;
}
.order-item[data-v-0d2323d3] {
  padding: 12px;
  border-radius: 8px;
  background-color: #f8fafc;
  margin-bottom: 8px;
  border: 1px solid #f1f5f9;
}
.alert-list[data-v-0d2323d3] {
  max-height: 200px;
  overflow-y: auto;
}
.alert-item[data-v-0d2323d3] {
  padding: 12px;
  border-radius: 8px;
  background-color: #fffbeb;
  margin-bottom: 8px;
  border-left: 4px solid #f59e0b;
}
.alert-critical[data-v-0d2323d3] {
  background-color: #fef2f2;
  border-left-color: #ef4444;
}

/* Stat Box - Mini cards inside module cards */
.stat-box[data-v-0d2323d3] {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px !important;
}
.stat-box[data-v-0d2323d3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.rounded-borders[data-v-0d2323d3] {
  border-radius: 12px;
}
.transition-bg[data-v-0d2323d3] {
  transition: background-color 0.2s ease;
}
.hover-bg-grey-1[data-v-0d2323d3]:hover {
  background-color: #f8fafc;
}

/* Trend indicators */
.trend-up[data-v-0d2323d3] { color: #10b981;
}
.trend-down[data-v-0d2323d3] { color: #ef4444;
}
.trend-neutral[data-v-0d2323d3] { color: #94a3b8;
}
canvas[data-v-0d2323d3] {
  max-height: 300px;
}

/* Stock information styling */
.stock-info[data-v-0d2323d3] {
  background-color: #f0fdf4;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #166534;
}
.stock-info .q-icon[data-v-0d2323d3] {
  margin-right: 4px;
}

.purchase-orders-table[data-v-bdc7cab4] {
  border-radius: 8px;
  overflow: hidden;
}
.purchase-orders-table .q-table__top[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.purchase-orders-table .q-table__top .q-table__title[data-v-bdc7cab4] {
  color: white;
}
.purchase-orders-table .q-table__top .q-table__separator[data-v-bdc7cab4] {
  background-color: rgba(255, 255, 255, 0.2);
}
.purchase-orders-table .q-table__thead th[data-v-bdc7cab4] {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}
.purchase-orders-table .q-table__tbody tr[data-v-bdc7cab4]:hover {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}
.purchase-orders-table .q-table__tbody td[data-v-bdc7cab4] {
  border-bottom: 1px solid #e9ecef;
  padding: 12px 8px;
}
.items-table[data-v-bdc7cab4] {
  border-radius: 6px;
  overflow: hidden;
}
.items-table .q-table__thead th[data-v-bdc7cab4] {
  background-color: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
}
.items-table .q-table__tbody tr[data-v-bdc7cab4]:nth-child(even) {
  background-color: #fafafa;
}
.items-table .q-table__tbody tr[data-v-bdc7cab4]:hover {
  background-color: #e8f5e8;
}

/* Modal styling */
.q-dialog .q-card[data-v-bdc7cab4] {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced table styling for multiple rows */
.print-section-table .q-table__tbody tr[data-v-bdc7cab4]:nth-child(even) {
  background-color: #f8f9fa;
}
.print-section-table .q-table__tbody tr[data-v-bdc7cab4]:hover {
  background-color: #e3f2fd;
  transition: background-color 0.2s ease;
}
.print-left-pane[data-v-bdc7cab4] {
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.print-section-table .q-table__container[data-v-bdc7cab4] {
  overflow-x: hidden;
}
.print-section-table .q-table__container table[data-v-bdc7cab4] {
  table-layout: fixed;
  width: 100%;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4]:first-child,
.print-section-table .q-table__tbody td[data-v-bdc7cab4]:first-child {
  width: 40%;
  white-space: normal;
  word-break: break-word;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4]:nth-child(2),
.print-section-table .q-table__tbody td[data-v-bdc7cab4]:nth-child(2) {
  width: 60%;
  white-space: normal;
  word-break: break-word;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4] {
  background-color: #1976d2;
  color: white;
  font-weight: 600;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4]:first-child {
  border-top-left-radius: 8px;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4]:last-child {
  border-top-right-radius: 8px;
}
.q-dialog .q-card-section[data-v-bdc7cab4] {
  border-radius: 12px 12px 0 0;
}

/* Status chip styling */
.q-chip[data-v-bdc7cab4] {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Button styling */
.q-btn[data-v-bdc7cab4] {
  border-radius: 6px;
  font-weight: 500;
  text-transform: none;
}
.q-btn--round[data-v-bdc7cab4] {
  border-radius: 50%;
}

/* Form styling */
.q-input[data-v-bdc7cab4],
.q-select[data-v-bdc7cab4] {
  border-radius: 6px;
}
.q-input__control[data-v-bdc7cab4],
.q-select__control[data-v-bdc7cab4] {
  border-radius: 6px;
}
.po-summary-card[data-v-bdc7cab4] {
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
  /* Clean material surface */
  border: 1px solid #e0e0e0;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.po-summary-card__label[data-v-bdc7cab4] {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #757575;
}
.po-summary-card__value[data-v-bdc7cab4] {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
  color: #212121;
}
.po-summary-card__meta[data-v-bdc7cab4] {
  font-size: 13px;
  display: flex;
  align-items: center;
  color: #9e9e9e;
}
.po-panel[data-v-bdc7cab4] {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  /* Flat */
}
.po-view-dialog .modal-header[data-v-bdc7cab4] {
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #e0e0e0;
}
.po-view-dialog .po-view-items-table .q-table__container[data-v-bdc7cab4] {
  overflow-x: hidden;
}
.po-view-dialog .po-view-items-table .q-table__container table[data-v-bdc7cab4] {
  table-layout: fixed;
  width: 100%;
}
.po-view-dialog .po-view-items-table .q-table__thead th[data-v-bdc7cab4],
.po-view-dialog .po-view-items-table .q-table__tbody td[data-v-bdc7cab4] {
  white-space: normal;
  word-break: break-word;
}
.item-fields-row[data-v-bdc7cab4] {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: nowrap;
}
.item-fields-row .item-field[data-v-bdc7cab4] {
  flex: 1;
  min-width: 0;
}

/* Card styling */
.q-card[data-v-bdc7cab4] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-card--bordered[data-v-bdc7cab4] {
  border: 1px solid #e0e0e0;
}

/* Icon styling */
.q-icon[data-v-bdc7cab4] {
  transition: transform 0.2s ease;
}
.q-btn:hover .q-icon[data-v-bdc7cab4] {
  transform: scale(1.1);
}

/* Animation for modals */
.q-dialog__inner--minimized>div[data-v-bdc7cab4] {
  animation: slideIn-bdc7cab4 0.3s ease-out;
}
@keyframes slideIn-bdc7cab4 {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Empty state styling */
.text-center .q-icon[data-v-bdc7cab4] {
  opacity: 0.6;
}

/* Payment status colors */
.payment-status-paid[data-v-bdc7cab4] {
  background-color: #4caf50 !important;
}
.payment-status-unpaid[data-v-bdc7cab4] {
  background-color: #f44336 !important;
}
.payment-status-partially-paid[data-v-bdc7cab4] {
  background-color: #ff9800 !important;
}
.payment-status-overdue[data-v-bdc7cab4] {
  background-color: #9c27b0 !important;
}

/* Card Beautification */
.filter-card[data-v-bdc7cab4] {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3f2fd;
  transition: all 0.3s ease;
}
.filter-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.purchase-orders-card[data-v-bdc7cab4] {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8f5e8;
  transition: all 0.3s ease;
}
.purchase-orders-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.create-dialog-card[data-v-bdc7cab4] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}
.view-dialog-card[data-v-bdc7cab4] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}
.edit-dialog-card[data-v-bdc7cab4] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}
.delete-dialog-card[data-v-bdc7cab4] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}
.approval-dialog-card[data-v-bdc7cab4] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}

/* Card section styling */
.q-card-section[data-v-bdc7cab4] {
  border-radius: inherit;
}

/* Icon styling for cards */
.q-card .q-icon[data-v-bdc7cab4] {
  transition: transform 0.2s ease;
}
.q-card:hover .q-icon[data-v-bdc7cab4] {
  transform: scale(1.1);
}

/* Enhanced table card */
.purchase-orders-table[data-v-bdc7cab4] {
  border-radius: 8px;
  overflow: hidden;
}
.purchase-orders-table .q-table__top[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  padding: 16px;
}
.purchase-orders-table .q-table__top .q-table__title[data-v-bdc7cab4] {
  color: white;
  font-weight: 600;
}

/* Filter card enhancements */
.filter-card .q-card-section[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Action buttons in cards */
.q-card .q-btn[data-v-bdc7cab4] {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.q-card .q-btn[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* View dialog styling */
.view-dialog-card .q-card-section[data-v-bdc7cab4] {
  padding: 12px;
}
.view-dialog-card .q-card[data-v-bdc7cab4] {
  border-radius: 8px;
}
.view-dialog-card .items-table .q-table__thead th[data-v-bdc7cab4] {
  background-color: #f5f5f5;
  font-weight: 600;
  font-size: 0.875rem;
}
.view-dialog-card .items-table .q-table__tbody td[data-v-bdc7cab4] {
  font-size: 0.875rem;
  padding: 8px 12px;
}
.view-dialog-card .q-chip[data-v-bdc7cab4] {
  font-size: 0.75rem;
  font-weight: 500;
}
.view-dialog-card .text-weight-bold[data-v-bdc7cab4] {
  font-weight: 600;
}
.view-dialog-card .text-primary[data-v-bdc7cab4] {
  color: #1976d2;
}

/* Professional Financial Theme Styles */
.page-header-card[data-v-bdc7cab4] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-bdc7cab4] {
  margin-bottom: 8px;
}
.card-header[data-v-bdc7cab4] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card-title[data-v-bdc7cab4] {
  font-weight: 700;
  font-size: 1rem;
  color: #263238;
  margin-bottom: 0;
}

/* Module Card Styling */
.module-card[data-v-bdc7cab4] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  display: flex;
  flex-direction: column;
  min-height: auto;
}

/* Statistics Cards */
.stat-card-small[data-v-bdc7cab4] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 60px;
}
.stat-card-small[data-v-bdc7cab4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.positive-stat[data-v-bdc7cab4] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-bdc7cab4] {
  border-left: 4px solid #f39c12;
}
.negative-stat[data-v-bdc7cab4] {
  border-left: 4px solid #d32f2f;
}
.info-stat[data-v-bdc7cab4] {
  border-left: 4px solid #1976d2;
}
.success-stat[data-v-bdc7cab4] {
  border-left: 4px solid #21ba45;
}

/* Table Styling */
.module-table[data-v-bdc7cab4] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-bdc7cab4] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-bdc7cab4] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-bdc7cab4]:hover {
  background: #f8fafc;
}
.module-table .q-table__thead th[data-v-bdc7cab4],
.module-table .q-table__tbody td[data-v-bdc7cab4] {
  padding: 8px 12px;
}

/* Purchase order table – red text (use :deep so Quasar table internals are styled) */
.purchase-orders-main-table[data-v-bdc7cab4] .q-table__thead th,
.purchase-orders-main-table[data-v-bdc7cab4] .q-table__tbody td {
  color: #c62828 !important;
}
.purchase-orders-main-table[data-v-bdc7cab4] .q-table__tbody tr:hover td {
  color: #b71c1c !important;
}

/* Action Button Styling */
.action-btn[data-v-bdc7cab4] {
  transition: all 0.2s ease;
  opacity: 0.8;
}
.action-btn[data-v-bdc7cab4]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Search Input */
.search-input[data-v-bdc7cab4] {
  transition: all 0.2s ease;
}
.search-input[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
}

/* Modal Styling */
.module-modal[data-v-bdc7cab4] {
  min-width: 600px;
  max-width: 95vw;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 4px 32px 0 rgba(60, 60, 60, 0.1);
  overflow: hidden;
}

/* Quality control failed – bright red background for overview body */
.qc-failed-bg[data-v-bdc7cab4] {
  background: #ffebee !important;
}
.qc-failed-banner[data-v-bdc7cab4] {
  background: #c62828 !important;
  color: #fff !important;
}
.modal-header[data-v-bdc7cab4] {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 12px 24px;
  background: transparent;
}

/* Form Field Styling */
.form-field[data-v-bdc7cab4] {
  transition: all 0.2s ease;
}
.form-field[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
}

/* Controls Container Styling */
.controls-container[data-v-bdc7cab4] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.controls-container[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.controls-container .q-card-section[data-v-bdc7cab4] {
  padding: 16px 20px;
}

/* Enhanced Action Button Styling */
.controls-container .action-btn[data-v-bdc7cab4] {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.controls-container .action-btn[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Filter Controls Spacing */
.controls-container .q-gutter-sm>div[data-v-bdc7cab4] {
  margin-right: 8px;
}
.controls-container .q-gutter-sm>div[data-v-bdc7cab4]:last-child {
  margin-right: 0;
}

/* Enhanced Supplier Column Styling */
.supplier-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.supplier-main[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.supplier-name[data-v-bdc7cab4] {
  font-weight: 500;
  color: #263238;
}
.supplier-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 24px;
}
.supplier-code[data-v-bdc7cab4],
.supplier-email[data-v-bdc7cab4],
.supplier-phone[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  opacity: 0.8;
}
.supplier-code .text-caption[data-v-bdc7cab4],
.supplier-email .text-caption[data-v-bdc7cab4],
.supplier-phone .text-caption[data-v-bdc7cab4] {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Hover effect for supplier info */
.supplier-info:hover .supplier-details[data-v-bdc7cab4] {
  opacity: 1;
}

/* Print Dialog Styling */
.print-section-table[data-v-bdc7cab4] {
  border-radius: 6px;
  overflow: hidden;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4] {
  background-color: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
  font-size: 0.875rem;
}
.print-section-table .q-table__tbody td[data-v-bdc7cab4] {
  font-size: 0.875rem;
  padding: 8px 12px;
}
.print-section-table .q-table__tbody tr[data-v-bdc7cab4]:nth-child(even) {
  background-color: #fafafa;
}
.print-section-table .q-table__tbody tr[data-v-bdc7cab4]:hover {
  background-color: #e8f5e8;
}

/* Print Dialog Header */
.print-dialog-header[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  padding: 16px 24px;
}
.print-dialog-header .text-h6[data-v-bdc7cab4] {
  margin: 0;
  font-weight: 600;
}

/* Print Options Styling */
.print-options-section[data-v-bdc7cab4] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.print-options-section h6[data-v-bdc7cab4] {
  margin-top: 0;
  margin-bottom: 12px;
  color: #263238;
}

/* Data Status Styling */
.data-status-section[data-v-bdc7cab4] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
}
.data-status-section h6[data-v-bdc7cab4] {
  margin-top: 0;
  margin-bottom: 12px;
  color: #263238;
}
.data-status-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 0;
}
.data-status-item .q-icon[data-v-bdc7cab4] {
  margin-right: 8px;
}
.data-status-item .text-caption[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #666;
}

/* Section Headers */
.section-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section-header h6[data-v-bdc7cab4] {
  margin: 0;
  color: #1976d2;
  font-weight: 600;
}
.section-loading[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Print Content Styling */
.print-content[data-v-bdc7cab4] {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 8px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar {
  width: 6px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Responsive Design for Print Dialog */
@media (max-width: 1200px) {
.print-dialog .q-card[data-v-bdc7cab4] {
    max-width: 95vw;
}
.print-dialog .col-8[data-v-bdc7cab4] {
    width: 100%;
    margin-bottom: 16px;
}
.print-dialog .col-4[data-v-bdc7cab4] {
    width: 100%;
    position: static;
}
}
@media (max-width: 768px) {
.print-dialog .q-card[data-v-bdc7cab4] {
    max-width: 98vw;
    margin: 8px;
}
.print-dialog .q-card-section[data-v-bdc7cab4] {
    padding: 12px;
}
.print-content[data-v-bdc7cab4] {
    max-height: 60vh;
}
}
.stat-card-small .stat-value[data-v-bdc7cab4] {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1d2939;
}
.stat-card-small .stat-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}
.stat-card-small .stat-icon[data-v-bdc7cab4] {
  font-size: 24px;
  opacity: 0.6;
  color: inherit;
}
.stage-progress-container[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
}
.stage-step[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  color: #cbd5e1;
  /* Default inactive color */
}
.stage-step.completed .stage-progress-icon[data-v-bdc7cab4] {
  color: #22c55e;
  /* Green for completed */
}
.stage-step.completed .stage-connector[data-v-bdc7cab4] {
  background-color: #22c55e;
}
.stage-step.active .stage-progress-icon[data-v-bdc7cab4] {
  color: #3b82f6;
  /* Blue for active */
  animation: pulse-bdc7cab4 1.5s infinite;
}
.stage-progress-icon[data-v-bdc7cab4] {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid currentColor;
}
.stage-connector[data-v-bdc7cab4] {
  height: 2px;
  width: 20px;
  background-color: #cbd5e1;
  /* Default inactive color */
}
@keyframes pulse-bdc7cab4 {
0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}
50% {
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
}
}

/* Modal styling */
.q-dialog .q-card[data-v-bdc7cab4] {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.modal-header[data-v-bdc7cab4] {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 12px 24px;
  background: transparent;
}

/* Form Field Styling */
.form-field[data-v-bdc7cab4] {
  transition: all 0.2s ease;
}
.form-field[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
}

/* Controls Container Styling */
.controls-container[data-v-bdc7cab4] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.controls-container[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.controls-container .q-card-section[data-v-bdc7cab4] {
  padding: 16px 20px;
}

/* Enhanced Action Button Styling */
.controls-container .action-btn[data-v-bdc7cab4] {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.controls-container .action-btn[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Filter Controls Spacing */
.controls-container .q-gutter-sm>div[data-v-bdc7cab4] {
  margin-right: 8px;
}
.controls-container .q-gutter-sm>div[data-v-bdc7cab4]:last-child {
  margin-right: 0;
}

/* Enhanced Supplier Column Styling */
.supplier-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.supplier-main[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.supplier-name[data-v-bdc7cab4] {
  font-weight: 500;
  color: #263238;
}
.supplier-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 24px;
}
.supplier-code[data-v-bdc7cab4],
.supplier-email[data-v-bdc7cab4],
.supplier-phone[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  opacity: 0.8;
}
.supplier-code .text-caption[data-v-bdc7cab4],
.supplier-email .text-caption[data-v-bdc7cab4],
.supplier-phone .text-caption[data-v-bdc7cab4] {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Hover effect for supplier info */
.supplier-info:hover .supplier-details[data-v-bdc7cab4] {
  opacity: 1;
}

/* Print Dialog Styling */
.print-section-table[data-v-bdc7cab4] {
  border-radius: 6px;
  overflow: hidden;
}
.print-section-table .q-table__thead th[data-v-bdc7cab4] {
  background-color: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
  font-size: 0.875rem;
}
.print-section-table .q-table__tbody td[data-v-bdc7cab4] {
  font-size: 0.875rem;
  padding: 8px 12px;
}
.print-section-table .q-table__tbody tr[data-v-bdc7cab4]:nth-child(even) {
  background-color: #fafafa;
}
.print-section-table .q-table__tbody tr[data-v-bdc7cab4]:hover {
  background-color: #e8f5e8;
}

/* Print Dialog Header */
.print-dialog-header[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  padding: 16px 24px;
}
.print-dialog-header .text-h6[data-v-bdc7cab4] {
  margin: 0;
  font-weight: 600;
}

/* Print Options Styling */
.print-options-section[data-v-bdc7cab4] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.print-options-section h6[data-v-bdc7cab4] {
  margin-top: 0;
  margin-bottom: 12px;
  color: #263238;
}
/* Data Status Styling */
.data-status-section[data-v-bdc7cab4] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
}
.data-status-section h6[data-v-bdc7cab4] {
  margin-top: 0;
  margin-bottom: 12px;
  color: #263238;
}
.data-status-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 0;
}
.data-status-item .q-icon[data-v-bdc7cab4] {
  margin-right: 8px;
}
.data-status-item .text-caption[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #666;
}

/* Section Headers */
.section-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section-header h6[data-v-bdc7cab4] {
  margin: 0;
  color: #1976d2;
  font-weight: 600;
}
.section-loading[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Print Content Styling */
.print-content[data-v-bdc7cab4] {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 8px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar {
  width: 6px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.print-content[data-v-bdc7cab4]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Responsive Design for Print Dialog */
@media (max-width: 1200px) {
.print-dialog .q-card[data-v-bdc7cab4] {
    max-width: 95vw;
}
.print-dialog .col-8[data-v-bdc7cab4] {
    width: 100%;
    margin-bottom: 16px;
}
.print-dialog .col-4[data-v-bdc7cab4] {
    width: 100%;
    position: static;
}
}
@media (max-width: 768px) {
.print-dialog .q-card[data-v-bdc7cab4] {
    max-width: 98vw;
    margin: 8px;
}
.print-dialog .q-card-section[data-v-bdc7cab4] {
    padding: 12px;
}
.print-content[data-v-bdc7cab4] {
    max-height: 60vh;
}
}
.info-item[data-v-bdc7cab4] {
  margin-bottom: 8px;
}
.info-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.info-value[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
}

/* New Section-Based Layout */
.po-left-pane[data-v-bdc7cab4],
.po-right-pane[data-v-bdc7cab4] {
  padding: 12px;
}
.po-left-content[data-v-bdc7cab4],
.po-right-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Minimalistic right pane */
.po-right-pane[data-v-bdc7cab4] {
  overflow-x: hidden;
  max-width: 100%;
}
.po-right-content[data-v-bdc7cab4] {
  max-width: 100%;
  width: 100%;
}
.po-right-content .po-section[data-v-bdc7cab4] {
  margin-bottom: 12px;
  max-width: 100%;
}
.po-right-content .section-content[data-v-bdc7cab4] {
  padding: 12px;
  max-width: 100%;
  overflow-x: hidden;
}
.po-section[data-v-bdc7cab4] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.section-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.section-title[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  flex: 1;
}
.item-count-chip[data-v-bdc7cab4] {
  margin-left: auto;
}
.section-content[data-v-bdc7cab4] {
  padding: 20px;
}
.cost-separator[data-v-bdc7cab4] {
  height: 1px;
  background: #e0e0e0;
  margin: 16px 0;
}
.gate-additional-info[data-v-bdc7cab4] {
  margin-top: 16px;
}
.info-row[data-v-bdc7cab4] {
  margin-bottom: 12px;
}
.info-row[data-v-bdc7cab4]:last-child {
  margin-bottom: 0;
}
.info-item[data-v-bdc7cab4] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.info-icon[data-v-bdc7cab4] {
  color: #6c757d;
  font-size: 18px;
  margin-top: 2px;
}
.info-content[data-v-bdc7cab4] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.info-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #495057;
  font-weight: 500;
}

/* Clean Material UI Purchase Order Modal Styles */
.po-view-dialog[data-v-bdc7cab4] {
  width: 90vw !important;
  max-width: 90vw !important;
  height: 100% !important;
  max-height: 100% !important;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

/* Modal Header Styles */
.po-modal-header[data-v-bdc7cab4] {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 32px;
  position: relative;
}
.order-avatar[data-v-bdc7cab4] {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  margin-right: 16px;
  border: 1px solid #e0e0e0;
}
.status-badges[data-v-bdc7cab4] {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Key Metrics Bar */
.key-metrics-bar[data-v-bdc7cab4] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  border: 1px solid #e0e0e0;
}
.metric-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.metric-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
}
.metric-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.metric-value[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}

/* Stats Overview */
.stats-overview[data-v-bdc7cab4] {
  margin-bottom: 24px;
}
.stats-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.stat-card[data-v-bdc7cab4] {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s ease;
}
.stat-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.stat-primary[data-v-bdc7cab4] {
  border-left: 3px solid #1976d2;
}
.stat-success[data-v-bdc7cab4] {
  border-left: 3px solid #4caf50;
}
.stat-info[data-v-bdc7cab4] {
  border-left: 3px solid #2196f3;
}
.stat-warning[data-v-bdc7cab4] {
  border-left: 3px solid #ff9800;
}
.stat-icon[data-v-bdc7cab4] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}
.stat-primary .stat-icon[data-v-bdc7cab4] {
  background: #e3f2fd;
  border-color: #bbdefb;
}
.stat-success .stat-icon[data-v-bdc7cab4] {
  background: #e8f5e8;
  border-color: #c8e6c9;
}
.stat-info .stat-icon[data-v-bdc7cab4] {
  background: #e3f2fd;
  border-color: #bbdefb;
}
.stat-warning .stat-icon[data-v-bdc7cab4] {
  background: #fff3e0;
  border-color: #ffcc02;
}
.stat-content[data-v-bdc7cab4] {
  flex: 1;
}
.stat-number[data-v-bdc7cab4] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}
.stat-label[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}

/* Card Headers */
.card-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.card-title[data-v-bdc7cab4] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
}

/* Order Summary Card */
.order-summary-card .order-chips[data-v-bdc7cab4] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-timeline[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.timeline-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.timeline-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* Supplier Card */
.supplier-card .supplier-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.supplier-main[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.supplier-avatar[data-v-bdc7cab4] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e0e0e0;
}
.supplier-details[data-v-bdc7cab4] {
  flex: 1;
}
.supplier-name[data-v-bdc7cab4] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}
.supplier-meta[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #64748b;
}
.supplier-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.supplier-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.supplier-item-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.supplier-item-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.supplier-item-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* Cost Breakdown Card */
.cost-breakdown[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cost-item[data-v-bdc7cab4],
.cost-total[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}
.cost-total[data-v-bdc7cab4] {
  background: #ffffff;
  border: 2px solid #1976d2;
  margin-top: 8px;
}
.cost-icon[data-v-bdc7cab4] {
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}
.cost-details[data-v-bdc7cab4] {
  flex: 1;
}
.cost-label[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 4px;
}
.cost-total .cost-label[data-v-bdc7cab4] {
  color: #6c757d;
}
.cost-value[data-v-bdc7cab4] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
}
.cost-total .cost-value[data-v-bdc7cab4] {
  color: #1976d2;
  font-size: 1.25rem;
}

/* Line Items Card */
.line-items-card .item-count-chip[data-v-bdc7cab4] {
  margin-left: auto;
}
.enhanced-table[data-v-bdc7cab4] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.line-items-table .q-table__top[data-v-bdc7cab4] {
  padding: 16px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.material-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.material-name[data-v-bdc7cab4] {
  font-weight: 600;
  color: #1a1a1a;
}
.material-id[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #64748b;
}
.price-unit[data-v-bdc7cab4] {
  font-weight: 500;
  color: #4caf50;
}
.price-total[data-v-bdc7cab4] {
  font-size: 1.125rem;
}
.volume-badge[data-v-bdc7cab4] {
  background: #f8f9fa;
  color: #495057;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}
.empty-state[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: #64748b;
}
.empty-text[data-v-bdc7cab4] {
  margin-top: 16px;
  font-size: 1rem;
}

/* Notes Card */
.notes-card .notes-section[data-v-bdc7cab4] {
  margin-bottom: 16px;
}
.notes-content[data-v-bdc7cab4],
.notes-empty[data-v-bdc7cab4] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}
.notes-empty[data-v-bdc7cab4] {
  background: #ffffff;
  border: 1px dashed #d0d0d0;
}
.notes-text[data-v-bdc7cab4] {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #495057;
}
.audit-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.audit-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audit-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.audit-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.audit-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* Minimalistic Right Column Styles */
.status-compact-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.status-compact-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.status-compact-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.status-compact-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-compact-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  font-weight: 500;
  color: #212529;
}
.key-info-compact[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-compact-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #495057;
}
.vehicles-summary[data-v-bdc7cab4] {
  margin-top: 8px;
}
.vehicles-count[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 8px;
}
.vehicles-list[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vehicle-compact[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  font-size: 0.875rem;
}
.vehicle-number[data-v-bdc7cab4] {
  font-weight: 500;
  color: #212529;
  flex: 1;
}
.vehicle-driver[data-v-bdc7cab4] {
  color: #6c757d;
  font-size: 0.8rem;
}
.vehicle-more[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
  padding: 4px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}
.qc-summary-compact[data-v-bdc7cab4] {
  margin-bottom: 12px;
}
.qc-main-status[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
}
.qc-main-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qc-main-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.qc-main-value[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
.qc-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qc-detail-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #495057;
}
.inspections-compact[data-v-bdc7cab4] {
  margin-top: 8px;
}
.inspections-count[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 8px;
}
.inspections-list[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inspection-compact[data-v-bdc7cab4] {
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.inspection-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.inspection-material[data-v-bdc7cab4] {
  font-weight: 600;
  color: #212529;
  font-size: 0.875rem;
}
.inspection-details[data-v-bdc7cab4] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6c757d;
}
.inspection-grade[data-v-bdc7cab4] {
  font-weight: 500;
}
.inspections-more[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}
.overall-quality-compact[data-v-bdc7cab4] {
  margin-top: 8px;
}
.quality-summary-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.quality-summary-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.quality-summary-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quality-summary-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quality-summary-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  font-weight: 500;
  color: #212529;
}
.quality-notes-compact[data-v-bdc7cab4] {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  font-size: 0.875rem;
  color: #495057;
}
.payment-status-compact[data-v-bdc7cab4] {
  margin-bottom: 12px;
}
.payment-main-status[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
}
.payment-main-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-main-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.payment-main-value[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
.payment-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-detail-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #495057;
}
.expense-summary-compact[data-v-bdc7cab4] {
  margin-bottom: 12px;
}
.expense-main-status[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
}
.expense-main-content[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.expense-main-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.expense-main-value[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
.expense-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.expense-detail-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #495057;
}

/* Enhanced Header Styles */
.page-header-card[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-content[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-main[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.header-icon-wrapper[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}
.header-text[data-v-bdc7cab4] {
  flex: 1;
}
.header-actions[data-v-bdc7cab4] {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Enhanced Modal Header */
.po-modal-header[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 24px;
}
.po-modal-header .header-content[data-v-bdc7cab4] {
  margin-bottom: 0;
}
.po-modal-header .header-main[data-v-bdc7cab4] {
  gap: 12px;
}
.po-modal-header .header-icon-wrapper[data-v-bdc7cab4] {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}
.po-modal-header .header-text .text-h5[data-v-bdc7cab4] {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.po-modal-header .header-text .text-subtitle2[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
}

/* Enhanced Section Styles */
.po-section[data-v-bdc7cab4] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.po-section[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.section-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  color: #212529;
}
.section-content[data-v-bdc7cab4] {
  padding: 20px;
}

/* Enhanced Stats Grid */
.stats-overview[data-v-bdc7cab4] {
  margin-bottom: 20px;
}
.stats-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.stat-card[data-v-bdc7cab4] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.stat-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.stat-icon[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: white;
}
.stat-primary .stat-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.stat-success .stat-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.stat-info .stat-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
}
.stat-warning .stat-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.stat-content[data-v-bdc7cab4] {
  flex: 1;
}
.stat-number[data-v-bdc7cab4] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}
.stat-label[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive adjustments for compact layouts */
@media (max-width: 1200px) {
.status-compact-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
.inspection-details[data-v-bdc7cab4] {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.quality-summary-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
.header-content[data-v-bdc7cab4] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.header-actions[data-v-bdc7cab4] {
    width: 100%;
    justify-content: flex-end;
}
.stats-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
}

/* Workflow Progress Styles */
.workflow-progress[data-v-bdc7cab4] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.progress-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.progress-title[data-v-bdc7cab4] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.progress-bar-container[data-v-bdc7cab4] {
  position: relative;
}
.progress-steps[data-v-bdc7cab4] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  position: relative;
}
.progress-step[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.step-icon[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  transition: all 0.2s ease;
}
.progress-step.completed .step-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}
.progress-step.active .step-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  animation: pulse-bdc7cab4 2s infinite;
}
.step-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.progress-step.completed .step-label[data-v-bdc7cab4] {
  color: #2e7d32;
  font-weight: 600;
}
.progress-step.active .step-label[data-v-bdc7cab4] {
  color: #1976d2;
  font-weight: 600;
}
@keyframes pulse-bdc7cab4 {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
100% {
    transform: scale(1);
}
}

/* Enhanced Table Styles */
.line-items-table[data-v-bdc7cab4],
.weighbridge-table[data-v-bdc7cab4] {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  background: #ffffff;
  max-width: 100%;
}

/* Constrained table for better width control */
.constrained-table[data-v-bdc7cab4] {
  width: 100%;
  table-layout: fixed;
}
.line-items-table .q-table__top[data-v-bdc7cab4],
.weighbridge-table .q-table__top[data-v-bdc7cab4] {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #e0e0e0;
}
.line-items-table .q-table thead th[data-v-bdc7cab4],
.weighbridge-table .q-table thead th[data-v-bdc7cab4] {
  font-weight: 600;
  color: #495057;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #e0e0e0;
  padding: 16px 20px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.line-items-table .q-table tbody td[data-v-bdc7cab4],
.weighbridge-table .q-table tbody td[data-v-bdc7cab4] {
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}
.line-items-table .q-table tbody tr[data-v-bdc7cab4],
.weighbridge-table .q-table tbody tr[data-v-bdc7cab4] {
  transition: all 0.2s ease;
}
.line-items-table .q-table tbody tr[data-v-bdc7cab4]:hover,
.weighbridge-table .q-table tbody tr[data-v-bdc7cab4]:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.line-items-table .q-table tbody tr[data-v-bdc7cab4]:nth-child(even),
.weighbridge-table .q-table tbody tr[data-v-bdc7cab4]:nth-child(even) {
  background: rgba(248, 249, 250, 0.3);
}

/* Enhanced cell styling */
.material-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.material-name[data-v-bdc7cab4] {
  font-weight: 600;
  color: #212529;
  font-size: 0.9rem;
}
.material-id[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}
.price-unit[data-v-bdc7cab4] {
  font-weight: 600;
  color: #1976d2;
  font-size: 0.9rem;
}
.price-total[data-v-bdc7cab4] {
  font-weight: 700;
  color: #2e7d32;
  font-size: 0.95rem;
}
.volume-badge[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

/* Status badges in tables */
.status-badge[data-v-bdc7cab4] {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-badge.completed[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
}
.status-badge.pending[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
  color: white;
}
.status-badge.processing[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
}

/* Table pagination styling */
.line-items-table .q-table__bottom[data-v-bdc7cab4],
.weighbridge-table .q-table__bottom[data-v-bdc7cab4] {
  padding: 16px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

/* Enhanced Cost Breakdown */
.cost-breakdown-enhanced[data-v-bdc7cab4] {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}
.cost-breakdown-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cost-breakdown-title[data-v-bdc7cab4] {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
}
.cost-breakdown-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.cost-item[data-v-bdc7cab4] {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  border: 1px solid #e0e0e0;
}
.cost-item[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.cost-item.primary[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 4px solid #1976d2;
}
.cost-item.secondary[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 4px solid #f57c00;
}
.cost-item.total[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
  border-left: 4px solid #2e7d32;
  grid-column: span 2;
}
.cost-icon-wrapper[data-v-bdc7cab4] {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cost-item.primary .cost-icon-wrapper[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.cost-item.secondary .cost-icon-wrapper[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.cost-item.total .cost-icon-wrapper[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  width: 56px;
  height: 56px;
}
.cost-details[data-v-bdc7cab4] {
  flex: 1;
}
.cost-label[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cost-value[data-v-bdc7cab4] {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}
.cost-item.total .cost-value[data-v-bdc7cab4] {
  font-size: 1.5rem;
  color: #2e7d32;
}
.total-amount[data-v-bdc7cab4] {
  color: #2e7d32 !important;
}

/* Cost calculation visualization */
.cost-calculation[data-v-bdc7cab4] {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
}
.calculation-step[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #495057;
}
.calc-label[data-v-bdc7cab4] {
  background: #e9ecef;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.calc-operator[data-v-bdc7cab4],
.calc-equals[data-v-bdc7cab4] {
  color: #6c757d;
  font-weight: 600;
}
.calc-total[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* Responsive cost breakdown */
@media (max-width: 768px) {
.cost-breakdown-enhanced[data-v-bdc7cab4] {
    padding: 16px;
}
.cost-breakdown-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
    gap: 12px;
}
.cost-item.total[data-v-bdc7cab4] {
    grid-column: span 1;
}
.cost-item[data-v-bdc7cab4] {
    padding: 12px;
}
.cost-icon-wrapper[data-v-bdc7cab4] {
    width: 40px;
    height: 40px;
}
.cost-item.total .cost-icon-wrapper[data-v-bdc7cab4] {
    width: 48px;
    height: 48px;
}
.cost-value[data-v-bdc7cab4] {
    font-size: 1.1rem;
}
.cost-item.total .cost-value[data-v-bdc7cab4] {
    font-size: 1.25rem;
}
.calculation-step[data-v-bdc7cab4] {
    gap: 4px;
    font-size: 0.8rem;
}
}

/* Enhanced Notes Section */
.enhanced-notes-section[data-v-bdc7cab4] {
  margin-bottom: 24px;
}
.notes-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.notes-title[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
.notes-container[data-v-bdc7cab4] {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.notes-card[data-v-bdc7cab4] {
  padding: 16px;
  position: relative;
}
.notes-content-wrapper[data-v-bdc7cab4] {
  position: relative;
  padding-left: 24px;
}
.quote-icon[data-v-bdc7cab4] {
  position: absolute;
  top: -2px;
  left: 0;
  opacity: 0.5;
}
.notes-text[data-v-bdc7cab4] {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #495057;
  margin: 0;
  font-style: italic;
}
.notes-meta[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}
.notes-timestamp[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
}
.notes-empty-state[data-v-bdc7cab4] {
  padding: 32px 16px;
  text-align: center;
}
.empty-notes-icon[data-v-bdc7cab4] {
  margin-bottom: 12px;
  opacity: 0.5;
}
.empty-notes-text h4[data-v-bdc7cab4] {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0 0 4px 0;
  font-weight: 500;
}
.empty-notes-text p[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #adb5bd;
  margin: 0;
}
.section-divider[data-v-bdc7cab4] {
  margin: 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
}

/* Enhanced Audit Timeline */
.audit-timeline-section[data-v-bdc7cab4] {
  margin-bottom: 0;
}
.timeline-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.timeline-title[data-v-bdc7cab4] {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
.timeline-container[data-v-bdc7cab4] {
  position: relative;
}
.timeline-container[data-v-bdc7cab4]::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #e0e0e0 0%, #e0e0e0 100%);
  border-radius: 1px;
}
.timeline-item[data-v-bdc7cab4] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.timeline-item[data-v-bdc7cab4]:last-child {
  margin-bottom: 0;
}
.timeline-marker[data-v-bdc7cab4] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.timeline-marker.created[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.timeline-marker.updated[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.timeline-marker.gate[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.timeline-marker.payment[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}
.timeline-content[data-v-bdc7cab4] {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.timeline-title[data-v-bdc7cab4] {
  font-size: 0.9rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 4px;
}
.timeline-meta[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.timeline-date[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
}
.timeline-user[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
}
.timeline-status[data-v-bdc7cab4] {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline-status.status-cleared[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
}
.timeline-amount[data-v-bdc7cab4] {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Responsive timeline */
@media (max-width: 768px) {
.timeline-container[data-v-bdc7cab4]::before {
    left: 17px;
}
.timeline-marker[data-v-bdc7cab4] {
    width: 34px;
    height: 34px;
}
.timeline-content[data-v-bdc7cab4] {
    padding: 10px 12px;
}
.timeline-meta[data-v-bdc7cab4] {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
}

/* Constrained table responsive design */
@media (max-width: 1200px) {
.constrained-table .q-table[data-v-bdc7cab4] {
    font-size: 0.875rem;
}
.constrained-table .q-table thead th[data-v-bdc7cab4] {
    padding: 10px 12px;
}
.constrained-table .q-table tbody td[data-v-bdc7cab4] {
    padding: 10px 12px;
    word-wrap: break-word;
}
}

/* Responsive table improvements */
@media (max-width: 768px) {
.line-items-table .q-table thead th[data-v-bdc7cab4],
  .weighbridge-table .q-table thead th[data-v-bdc7cab4],
  .constrained-table .q-table thead th[data-v-bdc7cab4] {
    padding: 8px 6px;
    font-size: 0.7rem;
}
.line-items-table .q-table tbody td[data-v-bdc7cab4],
  .weighbridge-table .q-table tbody td[data-v-bdc7cab4],
  .constrained-table .q-table tbody td[data-v-bdc7cab4] {
    padding: 8px 6px;
    font-size: 0.8rem;
}
.line-items-table .q-table__top[data-v-bdc7cab4],
  .weighbridge-table .q-table__top[data-v-bdc7cab4] {
    padding: 12px 16px;
}
.constrained-table[data-v-bdc7cab4] {
    overflow-x: auto;
}
.material-info[data-v-bdc7cab4] {
    min-width: 120px;
}
.price-unit[data-v-bdc7cab4],
  .price-total[data-v-bdc7cab4],
  .volume-badge[data-v-bdc7cab4] {
    white-space: nowrap;
}
}

/* Modern Card Layout */
.modern-right-column[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.info-card[data-v-bdc7cab4] {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.info-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Card Variants */
.primary-card[data-v-bdc7cab4] {
  border-left: 4px solid #1976d2;
}
.success-card[data-v-bdc7cab4] {
  border-left: 4px solid #2e7d32;
}
.info-card[data-v-bdc7cab4] {
  border-left: 4px solid #0288d1;
}
.warning-card[data-v-bdc7cab4] {
  border-left: 4px solid #f57c00;
}
.finance-card[data-v-bdc7cab4] {
  border-left: 4px solid #1976d2;
}
.expense-card[data-v-bdc7cab4] {
  border-left: 4px solid #7b1fa2;
}
.notes-card[data-v-bdc7cab4] {
  border-left: 4px solid #546e7a;
}
.card-header[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e0e0e0;
}
.card-icon[data-v-bdc7cab4] {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.success-card .card-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.info-card .card-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
}
.warning-card .card-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.finance-card .card-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.expense-card .card-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}
.notes-card .card-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #546e7a 0%, #455a64 100%);
}
.card-title-section[data-v-bdc7cab4] {
  flex: 1;
}
.card-title[data-v-bdc7cab4] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin: 0 0 4px 0;
}
.card-subtitle[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}
.card-status[data-v-bdc7cab4] {
  flex-shrink: 0;
}
.status-badge[data-v-bdc7cab4] {
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-content[data-v-bdc7cab4] {
  padding: 24px;
}

/* Line Items Grid */
.items-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.item-card[data-v-bdc7cab4] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}
.item-card[data-v-bdc7cab4]:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.item-header[data-v-bdc7cab4] {
  margin-bottom: 12px;
}
.item-name[data-v-bdc7cab4] {
  font-weight: 600;
  color: #212529;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.item-id[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
}
.item-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-row[data-v-bdc7cab4] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-label[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}
.detail-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #212529;
  font-weight: 500;
}
.total-row .detail-value[data-v-bdc7cab4] {
  color: #2e7d32;
  font-weight: 600;
}
.more-items[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: #6c757d;
  font-size: 0.875rem;
}

/* Status Grid */
.status-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.status-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.status-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.status-label[data-v-bdc7cab4] {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-value[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #212529;
  font-weight: 500;
}
.card-details[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #495057;
}

/* Metrics Grid */
.metrics-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.metric-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-icon[data-v-bdc7cab4] {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.metric-content[data-v-bdc7cab4] {
  flex: 1;
}
.metric-value[data-v-bdc7cab4] {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
  margin-bottom: 2px;
}
.metric-unit[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}
.metric-label[data-v-bdc7cab4] {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Right Section Card Design */
.right-section-card[data-v-bdc7cab4] {
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.right-section-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.right-section-header[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-header-main[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.section-icon-wrapper[data-v-bdc7cab4] {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.section-icon-wrapper[data-v-bdc7cab4]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Section-specific background colors */
.section-icon-wrapper[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  /* Default blue */
}
.section-icon-wrapper.primary-bg[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.section-icon-wrapper.gate-bg[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.section-icon-wrapper.scale-bg[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.section-icon-wrapper.payment-bg[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.section-icon-wrapper.expense-bg[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}
.section-icon-wrapper.notes-bg[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #546e7a 0%, #455a64 100%);
}
.section-info[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.section-info .section-title[data-v-bdc7cab4] {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
}
.section-status[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-chip[data-v-bdc7cab4] {
  font-weight: 500;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.status-chip[data-v-bdc7cab4]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Enhanced status indicators with animations */
.status-indicator[data-v-bdc7cab4] {
  position: relative;
  display: inline-block;
}
.status-indicator[data-v-bdc7cab4]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.status-indicator[data-v-bdc7cab4]:hover::before {
  width: 120%;
  height: 120%;
  opacity: 0.1;
}

/* Pulse animation for pending statuses */
.status-pending[data-v-bdc7cab4] {
  animation: statusPulse-bdc7cab4 2s infinite;
}
@keyframes statusPulse-bdc7cab4 {
0% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
}
70% {
    box-shadow: 0 0 0 6px rgba(255, 152, 0, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
}
}

/* Success animation */
.status-success[data-v-bdc7cab4] {
  animation: statusSuccess-bdc7cab4 0.5s ease;
}
@keyframes statusSuccess-bdc7cab4 {
0% {
    transform: scale(0.8);
    opacity: 0;
}
50% {
    transform: scale(1.1);
}
100% {
    transform: scale(1);
    opacity: 1;
}
}

/* Enhanced chip colors with gradients */
.q-chip--color-positive[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%) !important;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}
.q-chip--color-warning[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%) !important;
  box-shadow: 0 2px 8px rgba(245, 124, 0, 0.3);
}
.q-chip--color-info[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #0288d1 0%, #01579b 100%) !important;
  box-shadow: 0 2px 8px rgba(2, 136, 209, 0.3);
}
.q-chip--color-negative[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

/* Progress indicators */
.progress-ring[data-v-bdc7cab4] {
  position: relative;
  width: 40px;
  height: 40px;
}
.progress-ring-circle[data-v-bdc7cab4] {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.progress-ring-circle-bg[data-v-bdc7cab4] {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 3;
}
.progress-ring-circle-fill[data-v-bdc7cab4] {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.5s ease;
}
.progress-complete .progress-ring-circle-fill[data-v-bdc7cab4] {
  stroke-dashoffset: 0;
}
.section-meta[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.meta-icon[data-v-bdc7cab4] {
  transition: opacity 0.2s ease;
}
.right-section-card:hover .meta-icon[data-v-bdc7cab4] {
  opacity: 1;
}

/* Summary Cards Grid */
.summary-cards-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.summary-card[data-v-bdc7cab4] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.summary-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.summary-card-icon[data-v-bdc7cab4] {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

/* Summary card specific colors */
.weight-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.material-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.progress-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.total-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.paid-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.status-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.expense-total-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}
.expense-count-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.expense-approved-icon[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}
.summary-card-content[data-v-bdc7cab4] {
  flex: 1;
  min-width: 0;
}
.summary-card-value[data-v-bdc7cab4] {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
  margin-bottom: 2px;
}
.summary-card-value .unit[data-v-bdc7cab4] {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
}
.summary-card-label[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive summary cards */
@media (max-width: 768px) {
.summary-cards-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
    gap: 12px;
}
.summary-card[data-v-bdc7cab4] {
    padding: 12px;
}
.summary-card-icon[data-v-bdc7cab4] {
    width: 40px;
    height: 40px;
}
.summary-card-value[data-v-bdc7cab4] {
    font-size: 1.1rem;
}
}

/* Enhanced Compact Status Items */
.status-compact-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}
.status-compact-item[data-v-bdc7cab4]:hover {
  background: #e9ecef;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Expandable Sections */
.expandable-section[data-v-bdc7cab4] {
  transition: all 0.3s ease;
}
.expandable-header[data-v-bdc7cab4] {
  cursor: pointer;
  transition: all 0.2s ease;
}
.expandable-header[data-v-bdc7cab4]:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
.header-left[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.expand-icon[data-v-bdc7cab4] {
  transition: transform 0.2s ease;
}
.expandable-header:hover .expand-icon[data-v-bdc7cab4] {
  transform: scale(1.1);
}

/* Enhanced Action Buttons */
.enhanced-actions[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #e0e0e0;
}
.action-buttons[data-v-bdc7cab4] {
  display: flex;
  gap: 8px;
  align-items: center;
}
.primary-action[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  transition: all 0.2s ease;
}
.primary-action[data-v-bdc7cab4]:hover {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
}

/* Enhanced Modal Styles */
.po-view-dialog[data-v-bdc7cab4] {
  animation: slideInRight-bdc7cab4 0.3s ease-out;
}
@keyframes slideInRight-bdc7cab4 {
from {
    transform: translateX(100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}

/* Better Empty States */
.empty-state[data-v-bdc7cab4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}
.empty-icon[data-v-bdc7cab4] {
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-text[data-v-bdc7cab4] {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.empty-subtitle[data-v-bdc7cab4] {
  font-size: 0.875rem;
  color: #adb5bd;
}

/* Improved Loading States */
.skeleton-card[data-v-bdc7cab4] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.skeleton-line[data-v-bdc7cab4] {
  height: 16px;
  background: linear-gradient(90deg, #e9ecef 25%, #f8f9fa 50%, #e9ecef 75%);
  background-size: 200% 100%;
  animation: loading-bdc7cab4 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}
.skeleton-line[data-v-bdc7cab4]:last-child {
  width: 60%;
}
@keyframes loading-bdc7cab4 {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}

/* Responsive Design */
@media (max-width: 1400px) {
.po-view-dialog[data-v-bdc7cab4] {
    width: 85vw !important;
    max-width: 85vw !important;
}
.stats-grid[data-v-bdc7cab4] {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
}
@media (max-width: 1200px) {
.po-view-dialog[data-v-bdc7cab4] {
    width: 95vw !important;
    max-width: 95vw !important;
}
.supplier-grid[data-v-bdc7cab4],
  .audit-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.po-modal-header[data-v-bdc7cab4] {
    padding: 16px 20px;
}
.key-metrics-bar[data-v-bdc7cab4] {
    padding: 12px 16px;
}
.stats-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
.metric-item[data-v-bdc7cab4] {
    justify-content: center;
    text-align: center;
}
.supplier-main[data-v-bdc7cab4] {
    flex-direction: column;
    text-align: center;
    gap: 12px;
}
.cost-breakdown[data-v-bdc7cab4] {
    gap: 12px;
}
.audit-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
.action-buttons[data-v-bdc7cab4] {
    flex-wrap: wrap;
    justify-content: center;
}
.primary-action[data-v-bdc7cab4] {
    order: -1;
    flex: 1;
    min-width: 140px;
}
}

/* Touch-friendly interactions for mobile */
@media (max-width: 768px) {
.po-view-dialog[data-v-bdc7cab4] {
    width: 100vw !important;
    max-width: 100vw !important;
}
.header-content[data-v-bdc7cab4] {
    flex-direction: column;
    gap: 12px;
}
.header-actions[data-v-bdc7cab4] {
    width: 100%;
}
.header-actions .q-btn[data-v-bdc7cab4] {
    flex: 1;
}
.section-header[data-v-bdc7cab4] {
    padding: 12px 16px;
}
.section-content[data-v-bdc7cab4] {
    padding: 16px;
}
.stats-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
    gap: 12px;
}
.stat-card[data-v-bdc7cab4] {
    padding: 12px;
}
.status-compact-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
    gap: 6px;
}
.status-compact-item[data-v-bdc7cab4] {
    padding: 6px;
}
.progress-steps[data-v-bdc7cab4] {
    overflow-x: auto;
    padding-bottom: 8px;
}
.progress-step[data-v-bdc7cab4] {
    min-width: 60px;
}
.step-label[data-v-bdc7cab4] {
    font-size: 0.7rem;
}

  /* Better table scrolling on mobile */
.line-items-table[data-v-bdc7cab4] {
    overflow-x: auto;
}
.enhanced-actions[data-v-bdc7cab4] {
    padding: 16px;
}
.action-buttons[data-v-bdc7cab4] {
    flex-direction: column;
    width: 100%;
}
.action-buttons .q-btn[data-v-bdc7cab4] {
    width: 100%;
    margin-bottom: 8px;
}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
.po-section[data-v-bdc7cab4] {
    border: 2px solid #000;
}
.stat-card[data-v-bdc7cab4] {
    border: 2px solid #000;
}
.status-compact-item[data-v-bdc7cab4] {
    border: 2px solid #000;
}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.po-section[data-v-bdc7cab4],
  .stat-card[data-v-bdc7cab4],
  .status-compact-item[data-v-bdc7cab4],
  .primary-action[data-v-bdc7cab4],
  .expand-icon[data-v-bdc7cab4] {
    transition: none;
}
.progress-step.active .step-icon[data-v-bdc7cab4] {
    animation: none;
}
}

/* Weighbridge Record Modal Styles */
.weighbridge-photo[data-v-bdc7cab4] {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease;
}
.weighbridge-photo[data-v-bdc7cab4]:hover {
  transform: scale(1.02);
}
.clickable-image[data-v-bdc7cab4] {
  cursor: pointer;
}
.weighbridge-photo-container[data-v-bdc7cab4] {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
}
.image-overlay[data-v-bdc7cab4] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}
.weighbridge-photo-container:hover .image-overlay[data-v-bdc7cab4] {
  opacity: 1;
}
.full-image-modal .q-dialog__inner[data-v-bdc7cab4] {
  padding: 0;
}
.full-image-container[data-v-bdc7cab4] {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.full-size-image[data-v-bdc7cab4] {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.close-btn[data-v-bdc7cab4] {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5) !important;
}
.close-btn[data-v-bdc7cab4]:hover {
  background: rgba(0, 0, 0, 0.7) !important;
}

/* Stage Modal Styles */
.clickable-stage[data-v-bdc7cab4] {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 4px;
}
.clickable-stage[data-v-bdc7cab4]:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.clickable-stage.active[data-v-bdc7cab4]:hover {
  background: rgba(33, 150, 243, 0.15);
}
.clickable-stage.completed[data-v-bdc7cab4]:hover {
  background: rgba(76, 175, 80, 0.15);
}

/* Stage Modal Material Design */
.stage-info-card[data-v-bdc7cab4] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.stage-info-card[data-v-bdc7cab4]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.stage-tips-card[data-v-bdc7cab4] {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 1px solid #ff9800;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}
.stage-activities-card[data-v-bdc7cab4] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: fit-content;
}
.stage-overview-grid[data-v-bdc7cab4] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.overview-item[data-v-bdc7cab4] {
  background: white;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.overview-label[data-v-bdc7cab4] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.overview-value[data-v-bdc7cab4] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.tips-content .text-body2[data-v-bdc7cab4] {
  line-height: 1.6;
  color: #1565c0;
  font-weight: 500;
}
.stage-activities-list[data-v-bdc7cab4] {
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.activity-item[data-v-bdc7cab4] {
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.activity-item[data-v-bdc7cab4]:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: translateX(2px);
}
.activity-item[data-v-bdc7cab4]:last-child {
  border-bottom: none;
}
.activity-title[data-v-bdc7cab4] {
  font-size: 15px;
  color: #333;
  margin-bottom: 2px;
}
.activity-details[data-v-bdc7cab4] {
  font-size: 13px;
  color: #666;
}
.activity-meta[data-v-bdc7cab4] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.meta-item[data-v-bdc7cab4] {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.meta-item .q-icon[data-v-bdc7cab4] {
  margin-right: 4px;
  opacity: 0.7;
}
.empty-activities[data-v-bdc7cab4] {
  background: white;
  border-radius: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  margin-top: 16px;
}

/* Order History Table Styles */
.raw-materials-list[data-v-bdc7cab4] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 200px;
}
.material-item[data-v-bdc7cab4] {
  margin-bottom: 2px;
}
.material-chip[data-v-bdc7cab4] {
  font-size: 11px !important;
  height: 24px !important;
  max-width: 120px;
}
.material-chip .q-chip__content[data-v-bdc7cab4] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.additional-materials[data-v-bdc7cab4] {
  margin-top: 4px;
}

/* Weighbridge Table Photo Styling */
.weighbridge-table-photo[data-v-bdc7cab4] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-photo-thumbnail[data-v-bdc7cab4] {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.table-photo-thumbnail[data-v-bdc7cab4]:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
.stage-modal-content[data-v-bdc7cab4] {
    padding: 16px;
}
.stage-overview-grid[data-v-bdc7cab4] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 600px) {
.stage-modal-header[data-v-bdc7cab4] {
    padding: 16px;
}
.stage-progress-section[data-v-bdc7cab4] {
    margin: 0 8px 8px 8px;
    padding: 12px 16px;
}
.stage-modal-content[data-v-bdc7cab4] {
    padding: 12px;
}
}

/* Rejection dialog — friendly hint, not error */
.reject-dialog-card .reject-comment-highlight[data-v-bdc7cab4] .q-field__control {
  border-color: rgba(255, 152, 0, 0.6);
  background: rgba(255, 152, 0, 0.04);
}

.button-actions[data-v-dc134af9] {
  display: flex;
  justify-content: space-between; /* Aligns buttons to the ends */
  width: 100%; /* Ensures the buttons take full width */
}
.q-input[data-v-dc134af9] {
  border-radius: 8px;
  background-color: #f9f9f9;
}
.q-btn[data-v-dc134af9] {
  border-radius: 4px;
}
.q-btn-add[data-v-dc134af9] {
  background-color: #28a745; /* Green color for Add button */
  color: white; /* Text color */
  padding: 10px 20px; /* Increase padding for a larger button */
}
.q-btn-cancel[data-v-dc134af9] {
  background-color: #dc3545; /* Red color for Cancel button */
  color: white; /* Text color */
  padding: 10px 20px; /* Increase padding for a larger button */
  border-radius: 4px; /* Rounded corners */
}
.q-card[data-v-dc134af9] {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Beautify the view modal for print and screen */
.bg-grey-1[data-v-dc134af9] {
  background: #f8f9fa;
}
.q-list[data-v-dc134af9] {
  border-radius: 8px;
}
.q-item[data-v-dc134af9] {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
@media print {
body[data-v-dc134af9] {
    background: white !important;
}
.q-dialog[data-v-dc134af9],
  .q-card[data-v-dc134af9],
  .q-card-section[data-v-dc134af9],
  .q-list[data-v-dc134af9],
  .q-item[data-v-dc134af9],
  .bg-grey-1[data-v-dc134af9] {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
}
.q-btn[data-v-dc134af9],
  .q-card-actions[data-v-dc134af9] {
    display: none !important;
}
}
.view-modal-card[data-v-dc134af9] {
  min-width: 600px;
  max-width: 800px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}
.view-details-table[data-v-dc134af9] {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #222;
  padding: 0;
  overflow-x: auto;
}
.view-details-table table[data-v-dc134af9] {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.view-details-table tr[data-v-dc134af9] {
  border-bottom: 1px solid #222;
}
.view-details-table tr[data-v-dc134af9]:last-child {
  border-bottom: none;
}
.label-cell[data-v-dc134af9] {
  width: 40%;
  font-weight: bold;
  color: #111;
  background: #fff;
  padding: 8px 12px;
  border-right: 1px solid #222;
  text-align: right;
}
.value-cell[data-v-dc134af9] {
  width: 60%;
  color: #111;
  background: #fff;
  padding: 8px 12px;
  text-align: left;
}
.text-grey-5[data-v-dc134af9] {
  color: #888 !important;
}
@media print {
body[data-v-dc134af9] {
    background: #fff !important;
    color: #000 !important;
}
.view-modal-card[data-v-dc134af9],
  .view-details-table[data-v-dc134af9],
  .view-details-table table[data-v-dc134af9],
  .view-details-table tr[data-v-dc134af9],
  .label-cell[data-v-dc134af9],
  .value-cell[data-v-dc134af9] {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: none !important;
}
.q-btn[data-v-dc134af9],
  .q-card-actions[data-v-dc134af9] {
    display: none !important;
}
}
.search-bar-shadow[data-v-dc134af9] {
  box-shadow: 0 1px 8px 0 rgba(60, 60, 60, 0.12);
}
.search-bar-shadow[data-v-dc134af9] {
  box-shadow: 0 1px 8px 0 rgba(60, 60, 60, 0.12);
}

/* Supplier Ledger Styles */
.supplier-ledger-drawer[data-v-dc134af9] {
  background: #f5f5f5;
}
.supplier-ledger-drawer .ledger-card[data-v-dc134af9] {
  height: 100vh;
}
.supplier-ledger-drawer .ledger-header[data-v-dc134af9] {
  border-bottom: 2px solid #4CAF50 !important;
}
.supplier-ledger-drawer .border-bottom-green[data-v-dc134af9] {
  border-bottom: 2px solid #4CAF50 !important;
}
.supplier-ledger-drawer .summary-card-modern[data-v-dc134af9] {
  transition: all 0.3s ease;
}
.supplier-ledger-drawer .summary-card-modern[data-v-dc134af9]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.supplier-ledger-drawer .shadow-transition[data-v-dc134af9] {
  transition: box-shadow 0.3s ease;
}
.supplier-ledger-drawer .hover-shadow[data-v-dc134af9]:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}
.supplier-ledger-drawer .ledger-table[data-v-dc134af9] {
  background: white;
}
.supplier-ledger-drawer .ledger-table .q-table__top[data-v-dc134af9] {
  padding: 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.inventory-nav .q-tabs[data-v-0b49f52e] {
  border-radius: 8px;
}
.inventory-nav .q-tab[data-v-0b49f52e] {
  min-height: 48px;
  font-weight: 500;
}
.inventory-nav .q-tab--active[data-v-0b49f52e] {
  background: rgba(39, 174, 96, 0.1);
}

.inv-page-header[data-v-f94ea259] {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.inv-stat-card[data-v-f94ea259] {
  border-radius: 8px;
  transition: transform 0.2s;
}
.inv-stat-card[data-v-f94ea259]:hover {
  transform: translateY(-2px);
}
.inv-table[data-v-f94ea259] {
  border-radius: 8px;
}
.inv-table thead th[data-v-f94ea259] {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.inv-table tbody tr[data-v-f94ea259]:hover {
  background: #f8f9fa;
}

.inventory-navigation-bar[data-v-f48b0bb9] {
  margin-bottom: 16px;
}

.q-table tbody td[data-v-ddfd08a4] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-ddfd08a4] {
  font-weight: 600;
  font-size: 0.875rem;
}

.inv-page-header[data-v-d4762006] {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.inv-stat-card[data-v-d4762006] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inv-stat-card[data-v-d4762006]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.inv-filter-card[data-v-d4762006] {
  background: white;
  border-radius: 8px;
}
.inv-table-card[data-v-d4762006] {
  background: white;
  border-radius: 8px;
}
.inv-table[data-v-d4762006] {
  border-radius: 8px;
}
.inv-table thead th[data-v-d4762006] {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}
.inv-table tbody tr[data-v-d4762006]:hover {
  background: #f8f9fa;
}
.search-input[data-v-d4762006] {
  border-radius: 8px;
}
.full-width[data-v-d4762006] {
  width: 100%;
}

.inv-page-header[data-v-2d7ef4e1] {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.inv-stat-card[data-v-2d7ef4e1] {
  border-radius: 8px;
}
.inv-table thead th[data-v-2d7ef4e1] {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.inv-table tbody tr[data-v-2d7ef4e1]:hover {
  background: #f8f9fa;
}
.ellipsis-2-lines[data-v-2d7ef4e1] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inv-page-header[data-v-2e633687] {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.inv-stat-card[data-v-2e633687] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inv-stat-card[data-v-2e633687]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.inv-filter-card[data-v-2e633687] {
  background: white;
  border-radius: 8px;
}
.inv-table-card[data-v-2e633687] {
  background: white;
  border-radius: 8px;
}
.inv-table[data-v-2e633687] {
  border-radius: 8px;
}
.inv-table thead th[data-v-2e633687] {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}
.inv-table tbody tr[data-v-2e633687]:hover {
  background: #f8f9fa;
}
.search-input[data-v-2e633687] {
  border-radius: 8px;
}
.full-width[data-v-2e633687] {
  width: 100%;
}

.stock-page-bg[data-v-81294fa2] {
  background: #f8fafc;
  min-height: 100vh;
}

/* Header Styles */
.stock-header h1[data-v-81294fa2] {
  line-height: 1.2;
}
.header-stat-chip[data-v-81294fa2] {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 4px 12px;
  height: 36px;
  border-radius: 8px;
}
.company-info-card[data-v-81294fa2] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
}
.letter-spacing-1[data-v-81294fa2] {
  letter-spacing: 1px;
}
.refresh-btn[data-v-81294fa2] {
  padding: 8px 20px;
  font-weight: 600;
}

/* KPI Card Styles */
.kpi-card-modern[data-v-81294fa2] {
  background: white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
}
.kpi-card-modern[data-v-81294fa2]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.kpi-card--active[data-v-81294fa2] {
  border: 2px solid var(--q-primary) !important;
  background: #f0f7ff;
}
.kpi-icon-bg[data-v-81294fa2] {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.kpi-content[data-v-81294fa2] {
  flex-grow: 1;
}
.kpi-label[data-v-81294fa2] {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.kpi-value[data-v-81294fa2] {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-subtext[data-v-81294fa2] {
  font-size: 12px;
  color: #94a3b8;
}
.kpi-trend[data-v-81294fa2] {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}
.kpi-badge[data-v-81294fa2] {
  top: 10px;
  right: 10px;
  padding: 4px;
}

/* Filter Card Styles */
.filter-card[data-v-81294fa2] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
}
.search-input-modern[data-v-81294fa2] .q-field__control {
  padding-left: 16px;
}
.filter-chip-modern[data-v-81294fa2] {
  font-weight: 600;
  padding: 4px 10px;
}

/* Table Styles */
.stock-table-card[data-v-81294fa2] {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
}
.stock-table-modern[data-v-81294fa2] {
  background: white;
}
.table-header-row[data-v-81294fa2] {
  background: #f8fafc;
}
.stock-table-modern[data-v-81294fa2] thead tr th {
  color: #475569;
  font-size: 13px;
  padding: 16px;
  border-bottom: 2px solid #e0e0e0;
}
.table-body-row[data-v-81294fa2] {
  transition: background 0.2s ease;
}
.table-body-row[data-v-81294fa2]:hover {
  background: #f1f5f9 !important;
}
.stock-table-modern[data-v-81294fa2] tbody tr td {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.low-stock-row[data-v-81294fa2] {
  background-color: #fffbeb !important;
}
.low-stock-row[data-v-81294fa2]:hover {
  background-color: #fef3c7 !important;
}
.status-chip-modern[data-v-81294fa2] {
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  border-radius: 8px;
}
.expiry-badge[data-v-81294fa2] {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Dialog Styles */
.export-dialog-card[data-v-81294fa2] {
  width: 450px;
  max-width: 90vw;
  border-radius: 8px;
  overflow: hidden;
}
.export-options-grid[data-v-81294fa2] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.export-option[data-v-81294fa2] {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.export-option[data-v-81294fa2]:hover {
  background: #f8fafc;
  border-color: var(--q-primary);
  transform: translateY(-2px);
}
.opacity-80[data-v-81294fa2] {
  opacity: 0.8;
}
@media (min-width: 600px) {
.export-options-grid[data-v-81294fa2] {
    grid-template-columns: repeat(3, 1fr);
}
}

/* Simple dashboard theme */
.page-header-card[data-v-4947a5d8] {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}
.my-sticky-header-table .q-table__top[data-v-4947a5d8] {
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
}
.my-sticky-header-table .q-table__thead th[data-v-4947a5d8] {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}
.my-sticky-header-table .q-table__tbody tr[data-v-4947a5d8]:hover {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}
.my-sticky-header-table .q-table__tbody td[data-v-4947a5d8] {
  border-bottom: 1px solid #e9ecef;
  padding: 12px 8px;
}
.stock-chart-placeholder[data-v-4947a5d8] {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stock-movements[data-v-4947a5d8] {
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}
.q-linear-progress[data-v-4947a5d8] {
  border-radius: 4px;
}

/* New styles for the new template */
.page-header-card[data-v-4947a5d8] {
  background-color: #e8f5e9; /* Light green background */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stat-card-small[data-v-4947a5d8] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.stat-card-small[data-v-4947a5d8]:hover {
  transform: translateY(-5px);
}
.stat-card-small.positive-stat[data-v-4947a5d8] {
  background-color: #e8f5e9; /* Light green background */
  border: 1px solid #a5d6a7; /* Green border */
}
.stat-card-small.warning-stat[data-v-4947a5d8] {
  background-color: #fff3e0; /* Light orange background */
  border: 1px solid #ffcc80; /* Orange border */
}
.stat-card-small.success-stat[data-v-4947a5d8] {
  background-color: #e8f5e9; /* Light green background */
  border: 1px solid #a5d6a7; /* Green border */
}
.stat-card-small.negative-stat[data-v-4947a5d8] {
  background-color: #ffebee; /* Light red background */
  border: 1px solid #ef5350; /* Red border */
}
.module-card[data-v-4947a5d8] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.module-card[data-v-4947a5d8]:hover {
  transform: translateY(-5px);
}
.card-header[data-v-4947a5d8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-4947a5d8] {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #333;
}
.card-title .q-icon[data-v-4947a5d8] {
  margin-right: 8px;
}
.q-gutter-sm .q-btn[data-v-4947a5d8] {
  padding: 8px 12px; /* Adjust button padding */
}
.q-gutter-sm .q-input[data-v-4947a5d8],
.q-gutter-sm .q-select[data-v-4947a5d8] {
  min-width: 200px; /* Ensure inputs/selects have a minimum width */
}
.stock-alerts[data-v-4947a5d8] {
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}
.alert-item[data-v-4947a5d8] {
  padding: 12px 16px;
  border-radius: 6px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}
.alert-item .q-icon[data-v-4947a5d8] {
  margin-right: 8px;
}
.movement-item[data-v-4947a5d8] {
  padding: 10px 12px;
  border-radius: 6px;
  background-color: #f9f9f9;
  border: 1px solid #eee;
}
.movement-item .q-icon[data-v-4947a5d8] {
  margin-right: 10px;
}
.movement-item .q-chip[data-v-4947a5d8] {
  margin-left: 10px;
}
.stock-chart-container[data-v-4947a5d8] {
  min-height: 250px;
  position: relative;
}
.branch-stock-summary[data-v-4947a5d8] {
  max-height: 300px;
  overflow-y: auto;
}
.branch-summary-item[data-v-4947a5d8] {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}
.branch-summary-item[data-v-4947a5d8]:hover {
  background-color: #e9ecef;
  transform: translateX(5px);
}
.branch-summary-item .q-chip[data-v-4947a5d8] {
  cursor: pointer;
  transition: all 0.2s ease;
}
.branch-summary-item .q-chip[data-v-4947a5d8]:hover {
  transform: scale(1.05);
}

.table-header[data-v-ceafbba2] {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.q-table tbody td[data-v-ceafbba2] {
  font-size: 14px;
}
.q-table thead th[data-v-ceafbba2] {
  font-size: 14px;
  font-weight: 600;
}
.raw-materials-table[data-v-ceafbba2] {
  border-radius: 10px;
}
.raw-materials-table .q-table__top[data-v-ceafbba2] {
  padding: 12px 16px;
}

/* Removed - was hiding all buttons */

/* Virtual scroll table styles */
.virtual-scroll-table[data-v-ceafbba2] {
  max-height: 600px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
}
.virtual-scroll-table .q-table__top[data-v-ceafbba2] {
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.virtual-scroll-table .q-table__middle[data-v-ceafbba2] {
  max-height: 500px;
  overflow-y: auto;
}
@media print {
.q-icon[data-v-ceafbba2] {
    display: none !important;
}
.q-btn[data-v-ceafbba2] {
    display: none !important;
}
}

/* Hide the Edit and Delete columns specifically by field name */
th[data-field="edit"][data-v-ceafbba2],
td[data-field="edit"][data-v-ceafbba2],
th[data-field="delete"][data-v-ceafbba2],
td[data-field="delete"][data-v-ceafbba2] {
    display: none !important;
}

/* Price display styles */
.price-summary[data-v-ceafbba2] {
  border: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.price-list[data-v-ceafbba2] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.price-item[data-v-ceafbba2] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  font-size: 0.875rem;
}
.price-item strong[data-v-ceafbba2] {
  color: #1976d2;
}
.separator[data-v-ceafbba2] {
  color: #6c757d;
  margin: 0 8px;
  font-weight: bold;
}
.current-branch-price[data-v-ceafbba2] {
  border: 2px solid #1976d2;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.current-branch-price .text-h5[data-v-ceafbba2] {
  font-weight: 600;
  color: #0d47a1;
}
.current-branch-price .q-icon[data-v-ceafbba2] {
  color: #1976d2;
  opacity: 0.7;
}

/* Professional Financial Theme Styles */
.page-header-card[data-v-5255d0f8] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-5255d0f8]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-5255d0f8] {
  margin-bottom: 8px;
}
.card-header[data-v-5255d0f8] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-5255d0f8] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
}

/* Module Card Styling */
.module-card[data-v-5255d0f8] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 90px;
}

/* Statistics Cards */
.stat-card-small[data-v-5255d0f8] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 80px;
}
.stat-card-small[data-v-5255d0f8]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.positive-stat[data-v-5255d0f8] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-5255d0f8] {
  border-left: 4px solid #f39c12;
}
.negative-stat[data-v-5255d0f8] {
  border-left: 4px solid #d32f2f;
}
.info-stat[data-v-5255d0f8] {
  border-left: 4px solid #1976d2;
}
.success-stat[data-v-5255d0f8] {
  border-left: 4px solid #21ba45;
}
.stat-card-small .stat-value[data-v-5255d0f8] {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1d2939;
}
.stat-card-small .stat-label[data-v-5255d0f8] {
  font-size: 0.8rem;
  color: #64748b;
}
.stat-card-small .stat-icon[data-v-5255d0f8] {
  font-size: 2.5rem;
  opacity: 0.2;
}

/* Table Styling */
.module-table[data-v-5255d0f8] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-5255d0f8] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-5255d0f8] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-5255d0f8]:hover {
  background: #f8fafc;
}

/* Action Button Styling */
.action-btn[data-v-5255d0f8] {
  transition: all 0.2s ease;
  opacity: 0.8;
}
.action-btn[data-v-5255d0f8]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Search Input */
.search-input[data-v-5255d0f8] {
  transition: all 0.2s ease;
}
.search-input[data-v-5255d0f8]:hover {
  transform: translateY(-1px);
}

/* Controls Container Styling */
.controls-container[data-v-5255d0f8] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.controls-container[data-v-5255d0f8]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.controls-container .q-card-section[data-v-5255d0f8] {
  padding: 16px 20px;
}
.stage-progress-container[data-v-5255d0f8] {
  display: flex;
  align-items: center;
}
.stage-step[data-v-5255d0f8] {
  display: flex;
  align-items: center;
  color: #cbd5e1; /* Default inactive color */
}
.stage-step.completed .stage-progress-icon[data-v-5255d0f8] {
  color: #22c55e; /* Green for completed */
}
.stage-step.completed .stage-connector[data-v-5255d0f8] {
  background-color: #22c55e;
}
.stage-step.active .stage-progress-icon[data-v-5255d0f8] {
  color: #3b82f6; /* Blue for active */
  animation: pulse-5255d0f8 1.5s infinite;
}
.stage-progress-icon[data-v-5255d0f8] {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid currentColor;
}
.stage-connector[data-v-5255d0f8] {
  height: 2px;
  width: 20px;
  background-color: #cbd5e1; /* Default inactive color */
}
@keyframes pulse-5255d0f8 {
0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}
50% {
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
}
}
.module-modal {
.modal-header[data-v-5255d0f8] {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}
.modal-footer[data-v-5255d0f8] {
    border-top: 1px solid #e0e0e0;
}
}

.document-crop-card[data-v-ea01375f] {
  background: #f6f8fb;
}
.document-crop-bar[data-v-ea01375f] {
  border-bottom: 1px solid #e6e9ef;
}
.document-crop-body[data-v-ea01375f] {
  min-height: 0;
}
.crop-stage[data-v-ea01375f] {
  position: relative;
  width: 100%;
  max-height: min(58vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border-radius: 8px;
  overflow: hidden;
}
.crop-img[data-v-ea01375f] {
  display: block;
  max-width: 100%;
  max-height: min(58vh, 520px);
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-select: none;
          user-select: none;
}
.crop-svg[data-v-ea01375f] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
}
.crop-handle[data-v-ea01375f] {
  cursor: grab;
  pointer-events: all;
}
.crop-handle[data-v-ea01375f]:active {
  cursor: grabbing;
}
.crop-handle-hit[data-v-ea01375f] {
  pointer-events: all;
  cursor: grab;
}
.document-crop-actions[data-v-ea01375f] {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid #e6e9ef;
}

/* Hover Scale Action Buttons */
.hover-scale[data-v-7dda83e4] {
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.hover-scale[data-v-7dda83e4]:hover {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.05);
}

/* Page Header */
.page-header[data-v-7dda83e4] {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f5e8 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

/* Module Card Styling */
.module-card[data-v-7dda83e4] {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(60, 60, 60, 0.08);
  transition: all 0.2s ease;
}
.module-card[data-v-7dda83e4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(60, 60, 60, 0.12);
}
.card-title[data-v-7dda83e4] {
  font-weight: 700;
  font-size: 1.3rem;
  color: #263238;
  margin-bottom: 8px;
}
.card-header[data-v-7dda83e4] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Statistics Cards */
.stat-card[data-v-7dda83e4] {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px 0 rgba(60, 60, 60, 0.08);
}
.stat-card[data-v-7dda83e4]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px 0 rgba(60, 60, 60, 0.15);
}

/* Smaller Statistics Cards */
.stat-card-small[data-v-7dda83e4] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 80px;
}
.stat-card-small[data-v-7dda83e4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.positive-stat[data-v-7dda83e4] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-7dda83e4] {
  border-left: 4px solid #f39c12;
}
.negative-stat[data-v-7dda83e4] {
  border-left: 4px solid #d32f2f;
}
.info-stat[data-v-7dda83e4] {
  border-left: 4px solid #1976d2;
}
.success-stat[data-v-7dda83e4] {
  border-left: 4px solid #21ba45;
}

/* Table Styling */
.module-table[data-v-7dda83e4] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-7dda83e4] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-7dda83e4] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-7dda83e4]:hover {
  background: #f8fafc;
}

/* Stage Chip Styling */
.stage-chip[data-v-7dda83e4] {
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.stage-chip[data-v-7dda83e4]:hover {
  transform: scale(1.05);
}

/* Action Button Styling */
.action-btn[data-v-7dda83e4] {
  transition: all 0.2s ease;
  opacity: 0.8;
}
.action-btn[data-v-7dda83e4]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Search Input */
.search-input[data-v-7dda83e4] {
  transition: all 0.2s ease;
}
.search-input[data-v-7dda83e4]:hover {
  transform: translateY(-1px);
}

/* Modal Styling */
.module-modal[data-v-7dda83e4] {
  min-width: 600px;
  max-width: 95vw;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 4px 32px 0 rgba(60, 60, 60, 0.1);
  overflow: hidden;
}
.modal-header[data-v-7dda83e4] {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 12px 24px;
  background: transparent;
}

/* Order Info Card */
.order-info-card[data-v-7dda83e4] {
  background: #f8fafc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.order-info-card[data-v-7dda83e4]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Vehicle Tabs Card */
.vehicle-tabs-card[data-v-7dda83e4] {
  border-radius: 8px;
  overflow: hidden;
}
.vehicle-tabs .q-tab[data-v-7dda83e4] {
  min-height: 70px;
  padding: 8px 12px;
  max-width: 150px;
  transition: all 0.2s ease;
}
.vehicle-tabs .q-tab__content[data-v-7dda83e4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.vehicle-tabs .q-tab__label[data-v-7dda83e4] {
  font-size: 0.7rem;
  line-height: 1.1;
  text-align: center;
}
.vehicle-tabs .q-tab--active[data-v-7dda83e4] {
  background-color: rgba(33, 186, 69, 0.1);
  border-radius: 8px;
}
.vehicle-tabs .q-tab[data-v-7dda83e4]:hover {
  background-color: rgba(33, 186, 69, 0.05);
}

/* Info Card */
.info-card[data-v-7dda83e4] {
  background: #f8fafc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.info-card[data-v-7dda83e4]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form Field Styling */
.form-field[data-v-7dda83e4] {
  transition: all 0.2s ease;
}
.form-field[data-v-7dda83e4]:hover {
  transform: translateY(-1px);
}

/* Photo Upload Styling */
.photo-upload-container[data-v-7dda83e4] {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
}
.photo-upload-container[data-v-7dda83e4]:hover {
  border-color: #21ba45;
  background: #f5f5f5;
}
.photo-preview-area[data-v-7dda83e4] {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.photo-preview-item[data-v-7dda83e4] {
  width: 100%;
  text-align: center;
}
.photo-placeholder[data-v-7dda83e4] {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.photo-placeholder[data-v-7dda83e4]:hover {
  border-color: #21ba45;
  background: #f0f0f0;
}
.photo-placeholder-content[data-v-7dda83e4] {
  text-align: center;
  color: #757575;
}
.photo-preview-item .q-img[data-v-7dda83e4] {
  transition: all 0.3s ease;
}
.photo-preview-item .q-img[data-v-7dda83e4]:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Live camera / document scanner capture */
.camera-capture-card[data-v-7dda83e4] {
  background: #0d1117;
}
.camera-video-section[data-v-7dda83e4] {
  flex: 1 1 auto;
  min-height: 0;
  background: #010409;
  padding: 8px;
}
.camera-preview-inner[data-v-7dda83e4] {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}
.camera-preview-inner .camera-preview-video[data-v-7dda83e4] {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: min(72vh, 720px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}
.camera-live-overlay[data-v-7dda83e4] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.camera-actions[data-v-7dda83e4] {
  flex-shrink: 0;
}
.camera-capture-btn[data-v-7dda83e4] {
  border-radius: 8px;
}

/* Enhanced Button Styles */
.q-btn[data-v-7dda83e4] {
  transition: all 0.2s ease;
  font-weight: 600;
}
.q-btn[data-v-7dda83e4]:hover {
  transform: translateY(-1px);
}
.submit-btn[data-v-7dda83e4] {
  background: #21ba45 !important;
  color: white !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all 0.2s ease;
}
.submit-btn[data-v-7dda83e4]:hover {
  background: #178a2c !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 186, 69, 0.3);
}

/* Enhanced Input Styles */
.q-input[data-v-7dda83e4] {
  transition: all 0.2s ease;
}
.q-input[data-v-7dda83e4]:hover {
  transform: translateY(-1px);
}

/* Loading States */
.q-skeleton[data-v-7dda83e4] {
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
.card-header[data-v-7dda83e4] {
    flex-direction: column;
    align-items: flex-start;
}
.search-input[data-v-7dda83e4] {
    max-width: 100% !important;
}
.page-header[data-v-7dda83e4] {
    padding: 16px;
}
.q-pa-lg[data-v-7dda83e4] {
    padding: 16px !important;
}
.photo-container q-img[data-v-7dda83e4] {
    width: 120px !important;
    height: 90px !important;
}
.vehicle-tabs .q-tab[data-v-7dda83e4] {
    max-width: 120px;
    min-height: 60px;
}
.vehicle-tabs .q-tab__label[data-v-7dda83e4] {
    font-size: 0.6rem;
}
}

/* Animation for photo upload */
@keyframes photoUpload-7dda83e4 {
0% {
    opacity: 0;
    transform: scale(0.8);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
.photo-container q-img[data-v-7dda83e4] {
  animation: photoUpload-7dda83e4 0.3s ease-out;
}

/* Animation Classes */
.transition-element[data-v-7dda83e4] {
  transition: all 0.2s ease;
}
.hover-effect[data-v-7dda83e4]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stage-progress-container[data-v-7dda83e4] {
  display: flex;
  align-items: center;
}
.stage-step[data-v-7dda83e4] {
  display: flex;
  align-items: center;
  color: #cbd5e1; /* Default inactive color */
}
.stage-step.completed .stage-progress-icon[data-v-7dda83e4] {
  color: #22c55e; /* Green for completed */
}
.stage-step.completed .stage-connector[data-v-7dda83e4] {
  background-color: #22c55e;
}
.stage-step.active .stage-progress-icon[data-v-7dda83e4] {
  color: #3b82f6; /* Blue for active */
  animation: pulse-7dda83e4 1.5s infinite;
}
.stage-progress-icon[data-v-7dda83e4] {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid currentColor;
}
.stage-connector[data-v-7dda83e4] {
  height: 2px;
  width: 20px;
  background-color: #cbd5e1; /* Default inactive color */
}
@keyframes pulse-7dda83e4 {
0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}
50% {
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
}
}
.stat-value[data-v-7dda83e4] {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1d2939;
}
.stat-label[data-v-7dda83e4] {
  font-size: 0.8rem;
  color: #64748b;
}
.stat-icon[data-v-7dda83e4] {
  font-size: 2.5rem;
  opacity: 0.2;
}
.vehicle-list-item[data-v-7dda83e4] {
  border-left: 4px solid transparent;
  transition: all 0.2s ease-in-out;
}
.vehicle-list-item--active[data-v-7dda83e4] {
  border-left-color: var(--q-primary);
  background-color: #e8f5e9;
}
.completed-vehicle[data-v-7dda83e4] {
  background-color: #f0f4c3;
  opacity: 0.8;
}
.order-group-card[data-v-7dda83e4] {
  margin-bottom: 16px;
}
.grouped-records-table .q-table__top[data-v-7dda83e4] {
  display: none;
}
.grouped-records-table .q-table thead[data-v-7dda83e4] {
  display: none;
}
.vehicle-progress-container[data-v-7dda83e4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 50px;
}
.vehicle-icons-row[data-v-7dda83e4] {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.vehicle-progress-icon[data-v-7dda83e4] {
  opacity: 0.8;
  transition: all 0.2s ease;
}
.vehicle-progress-icon[data-v-7dda83e4]:hover {
  opacity: 1;
  transform: scale(1.1);
}
.disabled-vehicle[data-v-7dda83e4] {
  opacity: 0.6;
  cursor: not-allowed !important;
}
.disabled-vehicle[data-v-7dda83e4]:hover {
  background-color: transparent !important;
}
.completed-vehicle .q-item__section[data-v-7dda83e4] {
  opacity: 0.8;
}

/* Weighbridge Table Photo Styling */
.weighbridge-table-photo[data-v-7dda83e4] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-photo-thumbnail[data-v-7dda83e4] {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.table-photo-thumbnail[data-v-7dda83e4]:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

/* Hover Scale Action Buttons */
.hover-scale[data-v-dc06b9c4] {
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.hover-scale[data-v-dc06b9c4]:hover {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.05);
}
.q-pa-md[data-v-dc06b9c4] {
  padding: 16px;
}
.page-header-card[data-v-dc06b9c4] {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.stat-card-small[data-v-dc06b9c4] {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s;
}
.stat-card-small[data-v-dc06b9c4]:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-value[data-v-dc06b9c4] {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2px 0;
}
.stat-label[data-v-dc06b9c4] {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.stat-icon[data-v-dc06b9c4] {
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.8;
}
.info-stat .stat-icon[data-v-dc06b9c4] { color: #1d4ed8;
}
.warning-stat .stat-icon[data-v-dc06b9c4] { color: #f59e0b;
}
.purple-stat .stat-icon[data-v-dc06b9c4] { color: #8b5cf6;
}
.teal-stat .stat-icon[data-v-dc06b9c4] { color: #10b981;
}
.positive-stat .stat-icon[data-v-dc06b9c4] { color: #21ba45;
}
.controls-container[data-v-dc06b9c4] {
  background-color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.form-field[data-v-dc06b9c4] {
  flex: 1;
}
.action-btn[data-v-dc06b9c4] {
  margin-left: 16px;
}
.module-card[data-v-dc06b9c4] {
  background-color: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.card-title[data-v-dc06b9c4] {
  font-size: 1rem;
  font-weight: 600;
  color: #1d2939;
  margin-bottom: 16px;
}
.module-table[data-v-dc06b9c4] {
  border-radius: 4px;
}
.gate-view-items-table .q-table__container[data-v-dc06b9c4] {
  overflow-x: hidden;
}
.gate-view-items-table .q-table__container table[data-v-dc06b9c4] {
  table-layout: fixed;
  width: 100%;
}
.gate-view-items-table .q-table__thead th[data-v-dc06b9c4],
.gate-view-items-table .q-table__tbody td[data-v-dc06b9c4] {
  white-space: normal;
  word-break: break-word;
}
.history-table .q-table__container[data-v-dc06b9c4] {
  overflow-x: hidden;
}
.history-table .q-table__container table[data-v-dc06b9c4] {
  table-layout: fixed;
  width: 100%;
}
.history-table .q-table__thead th[data-v-dc06b9c4],
.history-table .q-table__tbody td[data-v-dc06b9c4] {
  white-space: normal;
  word-break: break-word;
}
.view-order-modal[data-v-dc06b9c4] {
  background-color: #fff;
  color: #000;
}
.view-order-modal .q-card-section.q-pb-none[data-v-dc06b9c4] {
  background-color: #1976d2;
  color: #fff;
}
.view-order-modal .q-card-actions[data-v-dc06b9c4] {
  background-color: #f5f5f5;
}
.view-order-modal .q-card[data-v-dc06b9c4] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.view-order-modal .text-primary[data-v-dc06b9c4] {
  color: #1976d2 !important;
}
.view-order-modal .text-positive[data-v-dc06b9c4] {
  color: #21ba45 !important;
}
.view-order-modal .q-chip[data-v-dc06b9c4] {
  border-radius: 16px;
}
.view-order-modal .q-table[data-v-dc06b9c4] {
  border-radius: 4px;
}
.view-order-modal .gate-view-items-table .q-table__container[data-v-dc06b9c4] {
  overflow-x: hidden;
}
.view-order-modal .gate-view-items-table .q-table__container table[data-v-dc06b9c4] {
  table-layout: fixed;
  width: 100%;
}
.view-order-modal .gate-view-items-table .q-table__thead th[data-v-dc06b9c4],
.view-order-modal .gate-view-items-table .q-table__tbody td[data-v-dc06b9c4] {
  white-space: normal;
  word-break: break-word;
}
.gate-table .q-table__container[data-v-dc06b9c4] {
  overflow-x: hidden;
}
.gate-table .q-table__container table[data-v-dc06b9c4] {
  table-layout: fixed;
  width: 100%;
}
.gate-table .q-table__thead th[data-v-dc06b9c4],
.gate-table .q-table__tbody td[data-v-dc06b9c4] {
  white-space: normal;
  word-break: break-word;
}
.action-cell[data-v-dc06b9c4] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.empty-state[data-v-dc06b9c4] {
  background: #f8fafc;
  border-radius: 14px;
}
.large-icon[data-v-dc06b9c4] {
  font-size: 24px;
  cursor: pointer;
}
.icon-group[data-v-dc06b9c4] {
  display: flex;
  gap: 8px;
}
.view-order-modal[data-v-dc06b9c4] {
  background-color: #fff;
  color: #000;
}
.view-order-modal .q-card-section.q-pb-none[data-v-dc06b9c4] {
  background-color: #1976d2;
  color: #fff;
}
.view-order-modal .q-card-actions[data-v-dc06b9c4] {
  background-color: #f5f5f5;
}
.view-order-modal .q-card[data-v-dc06b9c4] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.view-order-modal .text-primary[data-v-dc06b9c4] {
  color: #1976d2 !important;
}
.view-order-modal .text-positive[data-v-dc06b9c4] {
  color: #21ba45 !important;
}
.view-order-modal .q-chip[data-v-dc06b9c4] {
  border-radius: 16px;
}
.view-order-modal .q-table[data-v-dc06b9c4] {
  border-radius: 4px;
}
.view-order-modal .gate-view-items-table .q-table__container[data-v-dc06b9c4] {
  overflow-x: hidden;
}
.view-order-modal .gate-view-items-table .q-table__container table[data-v-dc06b9c4] {
  table-layout: fixed;
  width: 100%;
}
.view-order-modal .gate-view-items-table .q-table__thead th[data-v-dc06b9c4],
.view-order-modal .gate-view-items-table .q-table__tbody td[data-v-dc06b9c4] {
  white-space: normal;
  word-break: break-word;
}
.gate-table .q-table__container[data-v-dc06b9c4] {
  overflow-x: hidden;
}
.gate-table .q-table__container table[data-v-dc06b9c4] {
  table-layout: fixed;
  width: 100%;
}
.gate-table .q-table__thead th[data-v-dc06b9c4],
.gate-table .q-table__tbody td[data-v-dc06b9c4] {
  white-space: normal;
  word-break: break-word;
}
.stage-progress-container[data-v-dc06b9c4] {
  display: flex;
  align-items: center;
}
.stage-step[data-v-dc06b9c4] {
  display: flex;
  align-items: center;
  color: #cbd5e1; /* Default inactive color */
}
.stage-step.completed .stage-progress-icon[data-v-dc06b9c4] {
  color: #22c55e; /* Green for completed */
}
.stage-step.completed .stage-connector[data-v-dc06b9c4] {
  background-color: #22c55e;
}
.stage-step.active .stage-progress-icon[data-v-dc06b9c4] {
  color: #3b82f6; /* Blue for active */
  animation: pulse-dc06b9c4 1.5s infinite;
}
.stage-progress-icon[data-v-dc06b9c4] {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid currentColor;
}
.stage-connector[data-v-dc06b9c4] {
  height: 2px;
  width: 20px;
  background-color: #cbd5e1; /* Default inactive color */
}
@keyframes pulse-dc06b9c4 {
0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}
50% {
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
}
}

.simple-view-modal[data-v-1f831ecb] {
  min-width: 80vw;
  max-width: 80vw;
  min-height: 90vh;
  max-height: 90vh;
  margin: auto;
  box-shadow: 0 4px 28px rgba(0,0,0,0.10);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.simple-header[data-v-1f831ecb] { padding: 20px 24px 10px 24px; background: #fff;
}
.info-label[data-v-1f831ecb] { color: #999; font-size: 0.95em; margin-right: 2px;
}
.simple-table[data-v-1f831ecb] { border-radius: 8px; font-size: 0.97em; margin-top: 8px;
}
.q-chip[data-v-1f831ecb] { border-radius: 6px; font-weight: 500;
}
.q-table th[data-v-1f831ecb] { background: #f7f7f7;
}
.q-card-section[data-v-1f831ecb] { flex-grow: 1;
}
@media (max-width: 900px) {
.simple-view-modal[data-v-1f831ecb] { min-width: 98vw; max-width: 98vw;
}
.q-table[data-v-1f831ecb], .simple-table[data-v-1f831ecb] { font-size: 0.88em;
}
}

/* Modern Payment Modal Styling */
.modern-payment-modal[data-v-02e1a34a] {
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.payment-header[data-v-02e1a34a] {
  background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
  color: white;
  padding: 20px 24px;
}
.opacity-70[data-v-02e1a34a] {
  opacity: 0.7;
}
.hover-scale[data-v-02e1a34a] {
  transition: transform 0.2s ease;
}
.hover-scale[data-v-02e1a34a]:hover {
  transform: scale(1.1);
}

/* Info Summary Card */
.info-summary-card[data-v-02e1a34a] {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}
.summary-header[data-v-02e1a34a] {
  background: linear-gradient(90deg, #f0f4f8 0%, #e8eef3 100%);
  padding: 12px 16px;
  border-bottom: 2px solid #00897b;
}
.info-label[data-v-02e1a34a] {
  font-size: 0.7rem;
  color: #616161;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.info-value[data-v-02e1a34a] {
  font-size: 1rem;
  color: #212121;
  font-weight: 600;
}
.info-value-large[data-v-02e1a34a] {
  font-size: 1.5rem;
  color: #212121;
  font-weight: 700;
}

/* Form Enhancements */
[data-v-02e1a34a] .q-field {
  border-radius: 8px;
}
[data-v-02e1a34a] .q-field--outlined .q-field__control {
  border-radius: 8px;
  transition: all 0.3s ease;
}
[data-v-02e1a34a] .q-field--outlined .q-field__control:hover {
  border-color: #00897b;
  box-shadow: 0 2px 8px rgba(0, 137, 123, 0.1);
}
[data-v-02e1a34a] .q-field--focused .q-field__control {
  box-shadow: 0 4px 12px rgba(0, 137, 123, 0.2);
}

/* Button Enhancements */
.q-btn[data-v-02e1a34a] {
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  padding: 8px 24px;
  transition: all 0.3s ease;
}
.q-btn[data-v-02e1a34a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Chip Enhancements */
.q-chip[data-v-02e1a34a] {
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 14px;
}

/* Color Classes */
.text-primary[data-v-02e1a34a] {
  color: #00897b;
}
.text-negative[data-v-02e1a34a] {
  color: #f44336;
}
.text-positive[data-v-02e1a34a] {
  color: #4caf50;
}

/* Responsive Design */
@media (max-width: 768px) {
.modern-payment-modal[data-v-02e1a34a] {
    min-width: 95vw !important;
}
.payment-header .text-h5[data-v-02e1a34a] {
    font-size: 1.25rem;
}
}

/* Modern Expense Modal Styling */
.modern-expense-modal[data-v-2840e8a4] {
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(255, 152, 0, 0.2);
  overflow: hidden;
}
.expense-header[data-v-2840e8a4] {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  padding: 20px 24px;
}
.opacity-70[data-v-2840e8a4] {
  opacity: 0.7;
}
.hover-scale[data-v-2840e8a4] {
  transition: transform 0.2s ease;
}
.hover-scale[data-v-2840e8a4]:hover {
  transform: scale(1.1);
}

/* Expense Summary Card */
.expense-summary-card[data-v-2840e8a4] {
  border-radius: 12px;
  border: 2px solid #ffe0b2;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8e1 0%, #fffbf5 100%);
}
.expense-summary-header[data-v-2840e8a4] {
  background: linear-gradient(90deg, #ffe0b2 0%, #ffd9a3 100%);
  padding: 12px 16px;
  border-bottom: 2px solid #ff9800;
}
.expense-info-label[data-v-2840e8a4] {
  font-size: 0.7rem;
  color: #795548;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.expense-info-value[data-v-2840e8a4] {
  font-size: 1rem;
  color: #424242;
  font-weight: 600;
}
.expense-info-value-large[data-v-2840e8a4] {
  font-size: 1.4rem;
  color: #424242;
  font-weight: 700;
}

/* Form Styling */
[data-v-2840e8a4] .q-field {
  border-radius: 10px;
}
[data-v-2840e8a4] .q-field--outlined .q-field__control {
  border-radius: 10px;
  border-width: 2px;
  transition: all 0.3s ease;
}
[data-v-2840e8a4] .q-field--outlined .q-field__control:hover {
  border-color: #ff9800;
  box-shadow: 0 2px 12px rgba(255, 152, 0, 0.15);
}
[data-v-2840e8a4] .q-field--focused .q-field__control {
  border-color: #ff9800;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.25);
}
[data-v-2840e8a4] .q-field__prepend .q-icon {
  color: #ff9800;
}

/* Select Options Enhancement */
[data-v-2840e8a4] .q-select .q-field__control-container {
  padding: 4px 0;
}

/* Button Enhancements */
.q-btn[data-v-2840e8a4] {
  border-radius: 10px;
  font-weight: 600;
  text-transform: none;
  padding: 10px 28px;
  transition: all 0.3s ease;
}
.q-btn[data-v-2840e8a4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.q-btn[color="primary"][data-v-2840e8a4] {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

/* Chip Enhancements */
.q-chip[data-v-2840e8a4] {
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 14px;
}

/* Color Classes */
.text-primary[data-v-2840e8a4] {
  color: #1976d2;
}
.text-orange[data-v-2840e8a4] {
  color: #ff9800;
}
.text-negative[data-v-2840e8a4] {
  color: #f44336;
}
.text-positive[data-v-2840e8a4] {
  color: #4caf50;
}
.text-warning[data-v-2840e8a4] {
  color: #ff9800;
}

/* Summary Card Enhancement */
[data-v-2840e8a4] .q-card {
  transition: all 0.3s ease;
}
[data-v-2840e8a4] .q-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
.modern-expense-modal[data-v-2840e8a4] {
    min-width: 95vw !important;
}
.expense-header .text-h5[data-v-2840e8a4] {
    font-size: 1.25rem;
}
.expense-info-value-large[data-v-2840e8a4] {
    font-size: 1.2rem;
}
}

/* Animation for form sections */
@keyframes fadeIn-2840e8a4 {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.q-form[data-v-2840e8a4] > * {
  animation: fadeIn-2840e8a4 0.3s ease-out;
}

.q-btn[data-v-bb87d44e] {
  min-width: 120px;
}

/* Enhanced styling for icon buttons */
.q-btn[icon][data-v-bb87d44e] {
  min-width: auto;
  transition: all 0.3s ease;
}
.q-btn[icon][data-v-bb87d44e]:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Action button group styling */
.row.q-gutter-xs .q-btn[data-v-bb87d44e] {
  margin: 2px;
}
.row.q-gutter-sm .q-btn[data-v-bb87d44e] {
  margin: 4px;
}

/* Enhanced styling for QC completed POs */
.my-sticky-header-table .q-table__top[data-v-bb87d44e],
.my-sticky-header-table .q-table__bottom[data-v-bb87d44e],
.my-sticky-header-table thead tr:first-child th[data-v-bb87d44e] {
  background-color: #f5f5f5;
}
.my-sticky-header-table thead tr th[data-v-bb87d44e] {
  position: sticky;
  z-index: 1;
  background-color: #f5f5f5;
}

/* Summary cards styling */
.bg-blue-1[data-v-bb87d44e] {
  background-color: #e3f2fd !important;
}
.bg-green-1[data-v-bb87d44e] {
  background-color: #e8f5e8 !important;
}
.bg-orange-1[data-v-bb87d44e] {
  background-color: #fff3e0 !important;
}
.bg-purple-1[data-v-bb87d44e] {
  background-color: #f3e5f5 !important;
}

/* Enhanced table styling */
.q-table[data-v-bb87d44e] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Modal header button styling */
.q-card-section .q-btn[icon][data-v-bb87d44e] {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

/* Tooltip styling */
.q-tooltip[data-v-bb87d44e] {
  font-size: 12px;
  font-weight: 500;
}

/* Responsive button sizing */
@media (max-width: 768px) {
.q-btn[icon][data-v-bb87d44e] {
    width: 32px;
    height: 32px;
}
.row.q-gutter-sm .q-btn[data-v-bb87d44e] {
    margin: 2px;
}
}

/* Enhanced styling for inline edit cost buttons */
.q-btn[icon="edit"][data-v-bb87d44e] {
  opacity: 0.7;
  transition: all 0.2s ease;
}
.q-btn[icon="edit"][data-v-bb87d44e]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Cost column styling */
.q-table .q-td .row.items-center[data-v-bb87d44e] {
  align-items: center;
}

/* Progress indicator styling */
.stage-progress-container[data-v-bb87d44e] {
  display: flex;
  align-items: center;
}
.stage-step[data-v-bb87d44e] {
  display: flex;
  align-items: center;
  color: #cbd5e1; /* Default inactive color */
}
.stage-step.completed .stage-progress-icon[data-v-bb87d44e] {
  color: #22c55e; /* Green for completed */
}
.stage-step.completed .stage-connector[data-v-bb87d44e] {
  background-color: #22c55e;
}
.stage-step.active .stage-progress-icon[data-v-bb87d44e] {
  color: #3b82f6; /* Blue for active */
  animation: pulse-bb87d44e 1.5s infinite;
}
.stage-progress-icon[data-v-bb87d44e] {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid currentColor;
}
.stage-connector[data-v-bb87d44e] {
  height: 2px;
  width: 20px;
  background-color: #cbd5e1; /* Default inactive color */
}
@keyframes pulse-bb87d44e {
0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}
50% {
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
}
}

/* Completion status cards styling */
.completion-status-card[data-v-bb87d44e] {
  min-width: 120px;
  text-align: center;
  transition: all 0.3s ease;
}
.completion-status-card[data-v-bb87d44e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.completion-status-card .q-card-section[data-v-bb87d44e] {
  padding: 8px 12px;
}
.completion-status-card .text-h6[data-v-bb87d44e] {
  margin: 0;
  font-weight: bold;
}
.completion-status-card .text-caption[data-v-bb87d44e] {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* History table styling */
.history-table[data-v-bb87d44e] {
  min-width: 100%;
  overflow-x: auto;
}
.history-table .q-table__container[data-v-bb87d44e] {
  min-width: 100%;
}
.history-table .q-table__top[data-v-bb87d44e],
.history-table .q-table__bottom[data-v-bb87d44e] {
  min-width: 100%;
}
.history-table .q-table__middle[data-v-bb87d44e] {
  min-width: 100%;
  overflow-x: auto;
}
.history-table .q-table__thead th[data-v-bb87d44e] {
  white-space: nowrap;
  min-width: fit-content;
}
.history-table .q-table__tbody td[data-v-bb87d44e] {
  white-space: nowrap;
  min-width: fit-content;
}

/* Page Header Styling */
.page-header-card[data-v-bb87d44e] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-bb87d44e]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-bb87d44e] {
  margin-bottom: 8px;
}
.card-header[data-v-bb87d44e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-bb87d44e] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
}

/* Statistics Cards */
.stat-card-small[data-v-bb87d44e] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 80px;
}
.stat-card-small[data-v-bb87d44e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.positive-stat[data-v-bb87d44e] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-bb87d44e] {
  border-left: 4px solid #f39c12;
}
.negative-stat[data-v-bb87d44e] {
  border-left: 4px solid #d32f2f;
}
.info-stat[data-v-bb87d44e] {
  border-left: 4px solid #1976d2;
}
.success-stat[data-v-bb87d44e] {
  border-left: 4px solid #21ba45;
}
.stat-value[data-v-bb87d44e] {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1d2939;
}
.stat-label[data-v-bb87d44e] {
  font-size: 0.8rem;
  color: #64748b;
}
.stat-icon[data-v-bb87d44e] {
  font-size: 2.5rem;
  opacity: 0.2;
}

/* Module Card Styling */
.module-card[data-v-bb87d44e] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 90px;
}

/* Table Styling */
.module-table[data-v-bb87d44e] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-bb87d44e] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-bb87d44e] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-bb87d44e]:hover {
  background: #f8fafc;
}

/* Action Button Styling */
.action-btn[data-v-bb87d44e] {
  transition: all 0.2s ease;
  opacity: 0.8;
}
.action-btn[data-v-bb87d44e]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Controls Container Styling */
.controls-container[data-v-bb87d44e] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.controls-container[data-v-bb87d44e]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.controls-container .q-card-section[data-v-bb87d44e] {
  padding: 16px 20px;
}

/* Enhanced Action Button Styling */
.controls-container .action-btn[data-v-bb87d44e] {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.controls-container .action-btn[data-v-bb87d44e]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Search Input */
.search-input[data-v-bb87d44e] {
  transition: all 0.2s ease;
}
.search-input[data-v-bb87d44e]:hover {
  transform: translateY(-1px);
}

/* Form Field Styling */
.form-field[data-v-bb87d44e] {
  transition: all 0.2s ease;
}
.form-field[data-v-bb87d44e]:hover {
  transform: translateY(-1px);
}
.po-summary-card[data-v-bb87d44e] {
  border-radius: 12px;
  padding: 16px;
  background: #ffffff; /* Clean material surface */
  border: 1px solid #e0e0e0;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.po-summary-card__label[data-v-bb87d44e] {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #757575;
}
.po-summary-card__value[data-v-bb87d44e] {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
  color: #212121;
}
.po-summary-card__meta[data-v-bb87d44e] {
  font-size: 13px;
  display: flex;
  align-items: center;
  color: #9e9e9e;
}
.po-panel[data-v-bb87d44e] {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: none; /* Flat */
}
.po-view-dialog .modal-header[data-v-bb87d44e] {
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #e0e0e0;
}
.po-view-dialog .po-view-items-table .q-table__container[data-v-bb87d44e] {
  overflow-x: hidden;
}
.po-view-dialog .po-view-items-table .q-table__container table[data-v-bb87d44e] {
  table-layout: fixed;
  width: 100%;
}
.po-view-dialog .po-view-items-table .q-table__thead th[data-v-bb87d44e],
.po-view-dialog .po-view-items-table .q-table__tbody td[data-v-bb87d44e] {
  white-space: normal;
  word-break: break-word;
}

.eod-page[data-v-6274067a] {
  --eod-ink: #12303a;
  --eod-accent: #0c7b93;
  --eod-soft: #f4f7f8;
  --eod-sand: #f8f4ea;
  background:
    radial-gradient(circle at top right, rgba(12, 123, 147, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fafb 0%, #eef4f5 100%);
}
.hero-card[data-v-6274067a],
.status-card[data-v-6274067a],
.metric-card[data-v-6274067a],
.section-card[data-v-6274067a] {
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 48, 58, 0.08);
}
.hero-card[data-v-6274067a] {
  background: linear-gradient(135deg, #12303a 0%, #0c7b93 100%);
  color: white;
}
.hero-side-card[data-v-6274067a] {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--eod-ink);
}
.eyebrow[data-v-6274067a] {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  opacity: 0.78;
}
.hero-copy[data-v-6274067a] {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}
.status-card[data-v-6274067a] {
  background: linear-gradient(180deg, #fffdf8 0%, var(--eod-sand) 100%);
}
.status-grid[data-v-6274067a] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.status-metric[data-v-6274067a] {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-card[data-v-6274067a] {
  background: white;
}
.metric-main[data-v-6274067a] {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--eod-ink);
}
.metric-subtitle[data-v-6274067a] {
  color: #5f7680;
}
.metric-foot[data-v-6274067a] {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #5f7680;
  font-size: 0.87rem;
}
.metric-label[data-v-6274067a] {
  color: #698089;
  font-size: 0.84rem;
}
.metric-value[data-v-6274067a] {
  color: var(--eod-ink);
  font-size: 1.15rem;
  font-weight: 700;
}
.task-item[data-v-6274067a] {
  padding: 16px 20px;
}
.notes-list[data-v-6274067a],
.history-list[data-v-6274067a] {
  display: grid;
  gap: 12px;
}
.note-card[data-v-6274067a],
.history-card[data-v-6274067a] {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--eod-soft);
}
@media (max-width: 1023px) {
.status-grid[data-v-6274067a] {
    grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 599px) {
.status-grid[data-v-6274067a] {
    grid-template-columns: 1fr;
}
.metric-foot[data-v-6274067a] {
    flex-direction: column;
}
}

.kpi-card[data-v-e14ad23d] {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.kpi-card[data-v-e14ad23d]:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
}
.q-card[data-v-e14ad23d] {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.q-card[data-v-e14ad23d]:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* Branch Summary Styles */
.branch-summary-card[data-v-e14ad23d] {
  border-left: 4px solid #1976D2;
}
.branch-summary-card .q-expansion-item[data-v-e14ad23d] {
  border-bottom: 1px solid #f0f0f0;
}
.branch-summary-card .q-expansion-item[data-v-e14ad23d]:last-child {
  border-bottom: none;
}
.branch-summary-card .q-expansion-item__content[data-v-e14ad23d] {
  background: #fafafa;
}
.branch-overview-stats[data-v-e14ad23d] {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 8px;
  padding: 16px;
}
.stock-status-chip[data-v-e14ad23d] {
  font-weight: 500;
}
.stock-progress-bar[data-v-e14ad23d] {
  border-radius: 4px;
}
.material-table-container[data-v-e14ad23d] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.branch-header[data-v-e14ad23d] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px 8px 0 0;
}
.branch-header .q-expansion-item__header[data-v-e14ad23d] {
  background: transparent !important;
  color: white !important;
}
.branch-header .q-expansion-item__header[data-v-e14ad23d]:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Enhanced Chart Styles */
.chart-card[data-v-e14ad23d] {
  transition: all 0.3s ease;
}
.chart-card[data-v-e14ad23d]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.chart-controls[data-v-e14ad23d] {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
}
.chart-loading[data-v-e14ad23d] {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-error[data-v-e14ad23d] {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
  border-radius: 8px;
  border: 1px solid #fed7d7;
}
.chart-toolbar[data-v-e14ad23d] {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}
.chart-title[data-v-e14ad23d] {
  color: #2c3e50;
  font-weight: 600;
}
.chart-subtitle[data-v-e14ad23d] {
  color: #6c757d;
  font-size: 0.875rem;
}

/* Summary Card Styles */
.summary-card[data-v-e14ad23d] {
  border-radius: 12px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e9ecef;
}
.summary-card[data-v-e14ad23d]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.secondary-stat[data-v-e14ad23d] {
  border-left: 4px solid #6c757d;
}
.summary-card .q-card-section[data-v-e14ad23d] {
  padding: 16px;
}
.summary-card .text-h5[data-v-e14ad23d] {
  font-weight: 600;
  margin-bottom: 4px;
}
.summary-card .text-caption[data-v-e14ad23d] {
  font-weight: 500;
  opacity: 0.8;
}

/* Enhanced Interactive Charts */
.interactive-card[data-v-e14ad23d] {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.interactive-card[data-v-e14ad23d]:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.interactive-chart[data-v-e14ad23d] {
  transition: all 0.3s ease;
}
.interactive-chart[data-v-e14ad23d]:hover {
  filter: brightness(1.02);
}

/* KPI Gauge Cards */
.kpi-gauge-card[data-v-e14ad23d] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.kpi-gauge-card[data-v-e14ad23d]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Supplier Performance Table */
.supplier-table-view[data-v-e14ad23d] {
  max-height: 300px;
  overflow-y: auto;
}

/* Chart Controls */
.chart-controls[data-v-e14ad23d] {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}

/* Responsive Design for New Charts */
@media (max-width: 768px) {
.interactive-card[data-v-e14ad23d] {
    margin-bottom: 16px;
}
.kpi-gauge-card[data-v-e14ad23d] {
    margin-bottom: 12px;
}
.supplier-table-view[data-v-e14ad23d] {
    max-height: 200px;
}
}

/* Animation for chart transitions */
.chart-transition[data-v-e14ad23d] {
  animation: fadeIn-e14ad23d 0.5s ease-in-out;
}
@keyframes fadeIn-e14ad23d {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Enhanced tooltips */
.chart-tooltip[data-v-e14ad23d] {
  background: rgba(0,0,0,0.8);
  color: white;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Custom Report Builder Styles */
.custom-report-builder[data-v-e14ad23d] {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.config-panel[data-v-e14ad23d] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-height: 70vh;
  overflow-y: auto;
}
.preview-panel[data-v-e14ad23d] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-height: 70vh;
  overflow-y: auto;
}
.preview-header[data-v-e14ad23d] {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 12px;
}
.metric-preview[data-v-e14ad23d] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.metric-preview[data-v-e14ad23d]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.metric-value[data-v-e14ad23d] {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 4px;
}
.metric-label[data-v-e14ad23d] {
  color: #6c757d;
  font-weight: 500;
}
.filters-summary[data-v-e14ad23d] {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 12px;
  border-left: 4px solid #007bff;
}

/* Mobile responsiveness for custom report builder */
@media (max-width: 768px) {
.custom-report-builder .q-card-section[data-v-e14ad23d] {
    padding: 12px;
}
.config-panel[data-v-e14ad23d],
  .preview-panel[data-v-e14ad23d] {
    max-height: 50vh;
}
.metric-preview[data-v-e14ad23d] {
    margin-bottom: 8px;
}
}

.q-table[data-v-c4e1edc3] {
  height: 70vh;
  min-height: 400px;
}
pre[data-v-c4e1edc3] {
  white-space: pre-wrap;
  word-wrap: break-word;
  background-color: #f5f5f5;
  padding: 8px;
  border-radius: 4px;
}
.q-card[data-v-c4e1edc3] {
  height: 100%;
}
.export-buttons[data-v-c4e1edc3] {
  margin-bottom: 10px; /* Space between buttons and search field */
}
.export-button[data-v-c4e1edc3] {
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  margin-right: 10px; /* Space between buttons */
  cursor: pointer;
  transition: background-color 0.3s;
}
.csv-button[data-v-c4e1edc3] {
  background-color: #28a745; /* Green for CSV export */
}
.pdf-button[data-v-c4e1edc3] {
  background-color: #dc3545; /* Red for PDF export */
}
.export-button[data-v-c4e1edc3]:hover {
  opacity: 0.9; /* Slightly darken on hover */
}
.search-field[data-v-c4e1edc3] {
  margin-bottom: 20px; /* Space between search field and table */
}
table[data-v-c4e1edc3] {
  width: 100%; /* Full width for the table */
  border-collapse: collapse; /* Collapse borders */
}
th[data-v-c4e1edc3],
td[data-v-c4e1edc3] {
  border: 1px solid #ddd; /* Border for table cells */
  padding: 8px; /* Padding for table cells */
  text-align: left; /* Align text to the left */
}
th[data-v-c4e1edc3] {
  background-color: #f2f2f2; /* Light gray background for headers */
}
.log-details-drawer[data-v-c4e1edc3] {
  width: 40vw;
  max-width: 95vw;
  min-height: 100vh;
  border-radius: 0;
}
.drawer-content[data-v-c4e1edc3] {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.loader-overlay[data-v-7f4cc746] {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  border-radius: inherit;
}
.loader-content[data-v-7f4cc746] {
  text-align: center;
}
.spinner-svg[data-v-7f4cc746] {
  width: 40px;
  height: 40px;
  animation: spin-7f4cc746 1.6s linear infinite;
  display: block;
  margin: 0 auto;
}
.spinner-track[data-v-7f4cc746] {
  fill: none;
  stroke: #e8f5e9;
  stroke-width: 4;
}
.spinner-arc[data-v-7f4cc746] {
  fill: none;
  stroke: url(#localSpinnerGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 138;
  animation: arc-dash-7f4cc746 1.6s ease-in-out infinite;
}
@keyframes spin-7f4cc746 {
to { transform: rotate(360deg);
}
}
@keyframes arc-dash-7f4cc746 {
0%   { stroke-dashoffset: 115;
}
50%  { stroke-dashoffset: 28;
}
100% { stroke-dashoffset: 115;
}
}
.loader-message[data-v-7f4cc746] {
  margin-top: 0.75rem;
  color: #2e7d32;
  font-size: 0.85rem;
  font-weight: 500;
}

.header-section[data-v-7b436ec8] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
}
.kpi-card[data-v-7b436ec8] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
}
.kpi-card[data-v-7b436ec8]:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.styled-card[data-v-7b436ec8] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-7b436ec8]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.q-tab-panel[data-v-0dde194e] {
  padding: 16px;
}
.bg-grey-2[data-v-0dde194e] {
  background-color: #f5f5f5;
}
.bg-grey-3[data-v-0dde194e] {
  background-color: #e0e0e0;
}

.q-table[data-v-a9165664] {
  width: 100%;
}

.q-card[data-v-23933e3e] {
  border-radius: 8px;
}

.q-page[data-v-d8295a25] {
  background: #f5f5f5;
}
.q-card[data-v-d8295a25] {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.module-modal[data-v-d8295a25] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.modal-header[data-v-d8295a25] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
@media print {
body[data-v-d8295a25] * {
    visibility: hidden;
}
#cost-analysis-content[data-v-d8295a25], #cost-analysis-content[data-v-d8295a25] * {
    visibility: visible;
}
#cost-analysis-content[data-v-d8295a25] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.print-header[data-v-d8295a25], .print-footer[data-v-d8295a25] {
    display: block !important;
}
.q-card[data-v-d8295a25] {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
}
.bg-primary[data-v-d8295a25], .bg-info[data-v-d8295a25], .bg-positive[data-v-d8295a25] {
    background-color: #f5f5f5 !important;
    color: #000 !important;
    border: 1px solid #ddd !important;
}
.q-btn[data-v-d8295a25], .q-icon[name="close"][data-v-d8295a25] {
    display: none !important;
}
.material-cost-table[data-v-d8295a25] {
    page-break-inside: avoid;
}
@page {
    margin: 20mm;
    size: A4;
}
}

.q-card[data-v-c1f41c76] {
  border-radius: 8px;
}

/* Page Header */
.page-header[data-v-4d0aafd5] {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f5e8 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

/* Module Card Styling */
.module-card[data-v-4d0aafd5] {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(60, 60, 60, 0.08);
  transition: all 0.2s ease;
}
.module-card[data-v-4d0aafd5]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(60, 60, 60, 0.12);
}
.card-title[data-v-4d0aafd5] {
  font-weight: 700;
  font-size: 1.3rem;
  color: #263238;
  margin-bottom: 8px;
}
.card-header[data-v-4d0aafd5] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Form Field Styling */
.form-field[data-v-4d0aafd5] {
  transition: all 0.2s ease;
}
.form-field[data-v-4d0aafd5]:hover {
  transform: translateY(-1px);
}

/* Submit Button */
.submit-btn[data-v-4d0aafd5] {
  transition: all 0.2s ease;
  font-weight: 600;
  padding: 12px 32px;
}
.submit-btn[data-v-4d0aafd5]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 186, 69, 0.3);
}

/* Table Styling */
.module-table[data-v-4d0aafd5] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-4d0aafd5] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-4d0aafd5] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-4d0aafd5]:hover {
  background: #f8fafc;
}

/* Badge Styling */
.grade-badge[data-v-4d0aafd5], .stage-badge[data-v-4d0aafd5] {
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.grade-badge[data-v-4d0aafd5]:hover, .stage-badge[data-v-4d0aafd5]:hover {
  transform: scale(1.05);
}

/* Action Button Styling */
.action-btn[data-v-4d0aafd5] {
  transition: all 0.2s ease;
  opacity: 0.8;
}
.action-btn[data-v-4d0aafd5]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Search Input */
.search-input[data-v-4d0aafd5] {
  transition: all 0.2s ease;
}
.search-input[data-v-4d0aafd5]:hover {
  transform: translateY(-1px);
}

/* Statistics Cards */
.stat-card[data-v-4d0aafd5] {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px 0 rgba(60, 60, 60, 0.08);
}
.stat-card[data-v-4d0aafd5]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px 0 rgba(60, 60, 60, 0.15);
}
.positive-stat[data-v-4d0aafd5] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-4d0aafd5] {
  border-left: 4px solid #f39c12;
}
.negative-stat[data-v-4d0aafd5] {
  border-left: 4px solid #d32f2f;
}
.info-stat[data-v-4d0aafd5] {
  border-left: 4px solid #1976d2;
}

/* Responsive Design */
@media (max-width: 768px) {
.card-header[data-v-4d0aafd5] {
    flex-direction: column;
    align-items: flex-start;
}
.search-input[data-v-4d0aafd5] {
    max-width: 100% !important;
}
.page-header[data-v-4d0aafd5] {
    padding: 16px;
}
.q-pa-lg[data-v-4d0aafd5] {
    padding: 16px !important;
}
}

/* Animation Classes */
.transition-element[data-v-4d0aafd5] {
  transition: all 0.2s ease;
}
.hover-effect[data-v-4d0aafd5]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.q-page[data-v-b887ebc1] {
  background: #f5f5f5;
}
.q-card[data-v-b887ebc1] {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Enhanced UI Styles */
.summary-card[data-v-b887ebc1] {
  transition: all 0.3s ease;
  border-radius: 12px;
}
.summary-card[data-v-b887ebc1]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.bg-gradient-primary[data-v-b887ebc1] {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
}
.bg-gradient-warning[data-v-b887ebc1] {
  background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
}
.bg-gradient-negative[data-v-b887ebc1] {
  background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
}
.bg-gradient-info[data-v-b887ebc1] {
  background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
}
.bookmark-card[data-v-b887ebc1] {
  transition: all 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}
.bookmark-card[data-v-b887ebc1]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Enhanced table styles */
.q-table[data-v-b887ebc1] {
  border-radius: 8px;
  overflow: hidden;
}
.q-table th[data-v-b887ebc1] {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #495057;
}

/* Enhanced button styles */
.q-btn[data-v-b887ebc1] {
  border-radius: 8px;
  font-weight: 500;
}
.q-btn.unelevated[data-v-b887ebc1] {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Enhanced input styles */
.q-input[data-v-b887ebc1] {
  border-radius: 8px;
}
.q-select[data-v-b887ebc1] {
  border-radius: 8px;
}

/* Enhanced tab styles */
.q-tabs[data-v-b887ebc1] {
  border-radius: 8px 8px 0 0;
}
.q-tab[data-v-b887ebc1] {
  font-weight: 500;
  transition: all 0.3s ease;
}
.q-tab[data-v-b887ebc1]:hover {
  background-color: rgba(25, 118, 210, 0.04);
}

/* Responsive improvements */
@media (max-width: 768px) {
.text-h4[data-v-b887ebc1] {
    font-size: 1.5rem;
}
.text-h3[data-v-b887ebc1] {
    font-size: 2rem;
}
.summary-card .q-icon[data-v-b887ebc1] {
    font-size: 2rem;
}
}

.summary-card[data-v-1b641d50] {
  transition: transform 0.2s ease-in-out;
}
.summary-card[data-v-1b641d50]:hover {
  transform: translateY(-5px);
}
.bg-gradient-primary[data-v-1b641d50] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.bg-gradient-secondary[data-v-1b641d50] {
  background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}
.bg-gradient-accent[data-v-1b641d50] {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}
.bg-gradient-info[data-v-1b641d50] {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}
.text-h3[data-v-1b641d50] {
  font-size: 2rem;
}
.text-h6[data-v-1b641d50] {
  font-size: 1rem;
}
.q-table th[data-v-1b641d50] {
  font-weight: 600;
  background-color: #f5f5f5;
}
.q-card[data-v-1b641d50] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-tabs[data-v-1b641d50] {
  border-bottom: 1px solid #e0e0e0;
}
.q-tab-panels[data-v-1b641d50] {
  background-color: transparent;
}
@media (max-width: 768px) {
.text-h3[data-v-1b641d50] {
    font-size: 1.5rem;
}
.text-h6[data-v-1b641d50] {
    font-size: 0.875rem;
}
.q-pa-md[data-v-1b641d50] {
    padding: 12px;
}
}

  /* Styles for Supplier page */
  
.production-flow-card[data-v-1b390c53] {
  border-radius: 12px;
}
.timeline[data-v-1b390c53] {
  position: relative;
  padding: 20px 0;
  list-style: none;
}
.timeline[data-v-1b390c53]::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10px;
  bottom: 20px;
  width: 2px;
  background: #e0e0e0;
}
.timeline-item[data-v-1b390c53] {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
}
.timeline-dot[data-v-1b390c53] {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  background: #fff;
  transition: all 0.3s ease;
}
.timeline-content[data-v-1b390c53] {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.timeline-item.completed .timeline-dot[data-v-1b390c53] {
  background-color: #4caf50;
  border-color: #4caf50;
}
.timeline-item.completed .timeline-content[data-v-1b390c53] {
  color: #4caf50;
}
.timeline-item.active .timeline-dot[data-v-1b390c53] {
  background-color: #1976d2;
  border-color: #1976d2;
  transform: translateY(-50%) scale(1.2);
}
.timeline-item.active .timeline-content[data-v-1b390c53] {
  background-color: #e3f2fd;
  color: #1976d2;
  font-weight: 600;
}
.timeline-item.future .timeline-dot[data-v-1b390c53] {
  background-color: #f5f5f5;
  border-color: #bdbdbd;
}
.timeline-item.future .timeline-content[data-v-1b390c53] {
  color: #757575;
}
.stage-name[data-v-1b390c53] {
  font-size: 0.95rem;
}

.header-section[data-v-daffc4a6] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.module-card[data-v-daffc4a6] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.styled-card[data-v-daffc4a6] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-daffc4a6]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.summary-card[data-v-00643b43] {
  transition: transform 0.2s ease-in-out;
}
.summary-card[data-v-00643b43]:hover {
  transform: translateY(-5px);
}
.bg-gradient-primary[data-v-00643b43] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}
.bg-gradient-secondary[data-v-00643b43] {
  background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
}
.bg-gradient-accent[data-v-00643b43] {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}
.bg-gradient-info[data-v-00643b43] {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}
.text-h3[data-v-00643b43] {
  font-size: 2rem;
}
.text-h6[data-v-00643b43] {
  font-size: 1rem;
}
.q-table th[data-v-00643b43] {
  font-weight: 600;
  background-color: #f5f5f5;
}
.q-card[data-v-00643b43] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-tabs[data-v-00643b43] {
  border-bottom: 1px solid #e0e0e0;
}
.q-tab-panels[data-v-00643b43] {
  background-color: transparent;
}
@media (max-width: 768px) {
.text-h3[data-v-00643b43] {
    font-size: 1.5rem;
}
.text-h6[data-v-00643b43] {
    font-size: 0.875rem;
}
.q-pa-md[data-v-00643b43] {
    padding: 12px;
}
}

/* Supply Chain Theme Styles */
.page-header-card[data-v-00643b43] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-00643b43]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-00643b43] {
  margin-bottom: 8px;
}
.card-header[data-v-00643b43] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-00643b43] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
}

/* Statistics Cards */
.stat-card[data-v-00643b43] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  min-height: 80px;
}
.stat-card[data-v-00643b43]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.stat-card-section[data-v-00643b43] {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-icon[data-v-00643b43] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.stat-value[data-v-00643b43] {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.stat-label[data-v-00643b43] {
  font-size: 0.875rem;
  color: #757575;
}
.positive-stat[data-v-00643b43] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-00643b43] {
  border-left: 4px solid #f39c12;
}
.negative-stat[data-v-00643b43] {
  border-left: 4px solid #d32f2f;
}
.info-stat[data-v-00643b43] {
  border-left: 4px solid #1976d2;
}
.success-stat[data-v-00643b43] {
  border-left: 4px solid #21ba45;
}

/* Controls Container */
.controls-container[data-v-00643b43] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.controls-container[data-v-00643b43]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.controls-container .q-card-section[data-v-00643b43] {
  padding: 16px 20px;
}

/* Action Button Styling */
.action-btn[data-v-00643b43] {
  transition: all 0.2s ease;
  opacity: 0.8;
}
.action-btn[data-v-00643b43]:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Form Field Styling */
.form-field[data-v-00643b43] {
  transition: all 0.2s ease;
}
.form-field[data-v-00643b43]:hover {
  transform: translateY(-1px);
}

/* Search Input */
.search-input[data-v-00643b43] {
  transition: all 0.2s ease;
}
.search-input[data-v-00643b43]:hover {
  transform: translateY(-1px);
}

/* Purchase Orders Card */
.purchase-orders-card[data-v-00643b43] {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8f5e8;
  transition: all 0.3s ease;
}
.purchase-orders-card[data-v-00643b43]:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Purchase Orders Table */
.purchase-orders-table[data-v-00643b43] {
  border-radius: 8px;
  overflow: hidden;
}
.purchase-orders-table .q-table__top[data-v-00643b43] {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  padding: 16px;
}
.purchase-orders-table .q-table__top .q-table__title[data-v-00643b43] {
  color: white;
  font-weight: 600;
}

/* Modal Styling */
.create-dialog-card[data-v-00643b43] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}
.view-dialog-card[data-v-00643b43] {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden;
}
.modal-header[data-v-00643b43] {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 12px 24px;
  background: transparent;
}
.vertical-tabs[data-v-00643b43] {
  height: 100%;
  border-right: 1px solid #e0e0e0;
}
.modal-scroll-area[data-v-00643b43] {
  height: calc(90vh - 70px);
}
.details-card[data-v-00643b43] {
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Labor Cost Modal Specific Styles */
.labor-cost-input[data-v-00643b43] {
  transition: all 0.2s ease;
}
.labor-cost-input[data-v-00643b43]:hover {
  transform: translateY(-1px);
}
.cost-breakdown-card[data-v-00643b43] {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.cost-breakdown-card[data-v-00643b43]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.total-cost-summary[data-v-00643b43] {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1px solid #a5d6a7;
  border-radius: 8px;
}

/* Table Styling */
.q-table[data-v-00643b43] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.q-table th[data-v-00643b43] {
  font-weight: 600;
  background-color: #f5f5f5;
}
.q-card[data-v-00643b43] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-tabs[data-v-00643b43] {
  border-bottom: 1px solid #e0e0e0;
}
.q-tab-panels[data-v-00643b43] {
  background-color: transparent;
}
.header-section[data-v-00643b43] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.stat-card[data-v-00643b43] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  min-height: 80px;
}
.stat-card-section[data-v-00643b43] {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-icon[data-v-00643b43] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.stat-value[data-v-00643b43] {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.stat-label[data-v-00643b43] {
  font-size: 0.875rem;
  color: #757575;
}
.stat-card[data-v-00643b43]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.stat-icon[data-v-00643b43] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.stat-value[data-v-00643b43] {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.stat-label[data-v-00643b43] {
  font-size: 0.875rem;
  color: #757575;
}
.labor-cost-modal[data-v-00643b43] {
  width: 100%;
  max-width: 1200px; /* Adjust based on desired width */
  max-height: 90vh; /* Adjust based on desired height */
  background-color: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.labor-cost-modal .modal-content[data-v-00643b43] {
  flex-grow: 1;
  overflow-y: auto;
}
.order-summary-card[data-v-00643b43] {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #90caf9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.summary-item[data-v-00643b43] {
  text-align: center;
}
.summary-label[data-v-00643b43] {
  font-size: 0.85rem;
  color: #546e7a;
  margin-bottom: 4px;
}
.summary-value[data-v-00643b43] {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1976d2;
}
.input-section-card[data-v-00643b43],
.breakdown-section-card[data-v-00643b43] {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}
.section-header[data-v-00643b43] {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.labor-type-section[data-v-00643b43] {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
}
.labor-type-header[data-v-00643b43] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 600;
  color: #3f51b5; /* Quasar primary blue */
}
.labor-type-header .q-icon[data-v-00643b43] {
  margin-right: 8px;
}
.labor-input.q-field--outlined .q-field__control[data-v-00643b43] {
  border-radius: 8px;
}
.labor-cost-preview[data-v-00643b43] {
  text-align: right;
  margin-top: 8px;
}
.cost-section-header[data-v-00643b43] {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 600;
  color: #3f51b5;
}
.cost-section-header .q-icon[data-v-00643b43] {
  margin-right: 8px;
}
.cost-list .q-item[data-v-00643b43] {
  padding: 8px 0;
}
.cost-item .q-item-label.caption[data-v-00643b43] {
  font-size: 0.75rem;
}
.cost-total-item[data-v-00643b43] {
  background-color: #f0f4f8;
  border-radius: 8px;
  margin-top: 8px;
  padding: 12px;
}
.total-cost-summary .summary-card[data-v-00643b43] {
  background: #f0f4f8;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.cost-summary-item[data-v-00643b43] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.cost-summary-label[data-v-00643b43] {
  font-weight: 500;
  color: #424242;
}
.cost-summary-value[data-v-00643b43] {
  font-weight: 700;
}

/* Specific adjustments for modal to ensure proper display within the dialog */
.q-dialog--modal > div[data-v-00643b43] {
  max-width: 1200px !important;
  max-height: 90vh !important;
  margin: auto;
}
.close-btn[data-v-00643b43] {
  color: white;
}
@media (max-width: 1024px) {
.labor-cost-modal[data-v-00643b43] {
    max-width: 95vw; /* Smaller max-width on tablets */
}
}
@media (max-width: 600px) {
.labor-cost-modal[data-v-00643b43] {
    max-width: 100vw; /* Full width on mobile */
    max-height: 100vh;
    border-radius: 0;
}
.labor-cost-modal .modal-header[data-v-00643b43] {
    border-radius: 0;
}
.labor-cost-modal .modal-content[data-v-00643b43] {
    padding: 12px !important;
}
.q-pa-lg[data-v-00643b43] {
    padding: 16px !important;
}
}
.styled-card[data-v-00643b43] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-00643b43]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Stage Progress Styles */
.stage-progress-container[data-v-00643b43] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage-step[data-v-00643b43] {
  display: flex;
  align-items: center;
  position: relative;
  color: #cbd5e1; /* Default inactive color */
}
.stage-step.completed .stage-progress-icon[data-v-00643b43] {
  color: #22c55e;
  border-color: #22c55e;
  background-color: #f0fdf4;
}
.stage-step.completed .stage-connector[data-v-00643b43] {
  background-color: #22c55e;
}
.stage-step.active .stage-progress-icon[data-v-00643b43] {
  color: #3b82f6;
  border-color: #3b82f6;
  background-color: #eff6ff;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.stage-progress-icon[data-v-00643b43] {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid currentColor;
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage-connector[data-v-00643b43] {
  height: 2px;
  width: 20px;
  background-color: #cbd5e1;
  margin: 0 4px;
}

.wip-kanban-board[data-v-79867eb6] {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}
.kanban-column[data-v-79867eb6] {
  flex: 1;
  min-width: 280px;
  max-width: 280px;
  background-color: #f0f2f5;
  border-radius: 8px;
}
.column-header[data-v-79867eb6] {
  padding: 12px;
  border-bottom: 2px solid;
}
.kanban-cards[data-v-79867eb6] {
  padding: 8px;
}
.kanban-card[data-v-79867eb6] {
  margin-bottom: 12px;
  border-left: 4px solid;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.kanban-card[data-v-79867eb6]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.styled-card[data-v-79867eb6] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-79867eb6]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.module-card[data-v-2b3da72d] {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}
.styled-card[data-v-2b3da72d] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-2b3da72d]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.priority-column[data-v-b1eda77b] {
  min-height: 500px;
}
.priority-list[data-v-b1eda77b] {
  min-height: 450px;
}
.order-card[data-v-b1eda77b] {
  cursor: grab;
}
.styled-card[data-v-b1eda77b] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-b1eda77b]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-section[data-v-23f0674c] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.stat-card[data-v-23f0674c], .shift-card[data-v-23f0674c] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.stat-card[data-v-23f0674c]:hover, .shift-card[data-v-23f0674c]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.active-shift[data-v-23f0674c] {
  border-left: 4px solid #4caf50;
  background-color: #f8fff8;
}
.operator-chips[data-v-23f0674c] {
  max-height: 80px;
  overflow-y: auto;
}
.progress-container[data-v-23f0674c] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.progress-text[data-v-23f0674c] {
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 35px;
}
.styled-card[data-v-23f0674c] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-23f0674c]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-section[data-v-43950756] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-43950756], .filters-card[data-v-43950756], .chart-card[data-v-43950756] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.metric-card[data-v-43950756]:hover, .filters-card[data-v-43950756]:hover, .chart-card[data-v-43950756]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-43950756] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.metric-label[data-v-43950756] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.metric-trend[data-v-43950756] {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-trend.positive[data-v-43950756] {
  color: #4caf50;
}
.metric-trend.negative[data-v-43950756] {
  color: #f44336;
}
.reason-chips[data-v-43950756] {
  max-height: 60px;
  overflow-y: auto;
}
.delay-reasons-list[data-v-43950756] {
  max-height: 300px;
  overflow-y: auto;
}
.delay-reason-item[data-v-43950756] {
  border-radius: 4px;
  margin-bottom: 8px;
  transition: background-color 0.2s ease;
}
.delay-reason-item[data-v-43950756]:hover {
  background-color: #f5f5f5;
}
.delay-reason-item.top-reason[data-v-43950756] {
  background-color: #fff3cd;
  border-left: 3px solid #ffc107;
}
.actions-list[data-v-43950756] {
  max-height: 400px;
  overflow-y: auto;
}
.styled-card[data-v-43950756] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-43950756]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.action-card[data-v-f037447f] {
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
}
.action-card[data-v-f037447f]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--q-primary);
}

.header-section[data-v-30c08279] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-bcef4f58] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-a79d38de] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-53ce38b8] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-c10cfdbf] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-02de1cbc] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-2bf00b9c] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-2bf00b9c],
.nav-card[data-v-2bf00b9c] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-bb235a20] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-bb235a20], .filters-card[data-v-bb235a20], .chart-card[data-v-bb235a20] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.metric-card[data-v-bb235a20]:hover, .filters-card[data-v-bb235a20]:hover, .chart-card[data-v-bb235a20]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-bb235a20] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.metric-label[data-v-bb235a20] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.metric-trend[data-v-bb235a20] {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-trend.positive[data-v-bb235a20] {
  color: #4caf50;
}
.metric-trend.negative[data-v-bb235a20] {
  color: #f44336;
}
.progress-text[data-v-bb235a20] {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 8px;
}
.score-container[data-v-bb235a20] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.failure-reasons[data-v-bb235a20] {
  max-height: 250px;
  overflow-y: auto;
}
.failure-reason-item[data-v-bb235a20] {
  border-radius: 4px;
  margin-bottom: 8px;
  transition: background-color 0.2s ease;
}
.failure-reason-item[data-v-bb235a20]:hover {
  background-color: #ffebee;
}
.actions-list[data-v-bb235a20] {
  max-height: 300px;
  overflow-y: auto;
}
.parameters-list[data-v-bb235a20] {
  max-height: 300px;
  overflow-y: auto;
}
.parameter-item[data-v-bb235a20] {
  border-radius: 4px;
  border-left: 4px solid;
  margin-bottom: 8px;
}
.passed-param[data-v-bb235a20] {
  border-left-color: #4caf50;
  background-color: #e8f5e8;
}
.failed-param[data-v-bb235a20] {
  border-left-color: #f44336;
  background-color: #ffebee;
}
.styled-card[data-v-bb235a20] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-bb235a20]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.empty-state[data-v-bb235a20] {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7a7a;
  font-size: 0.95rem;
}

.header-section[data-v-0cffd9a1] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-0cffd9a1] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.empty-state[data-v-0cffd9a1] {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7a7a;
  font-size: 0.95rem;
}

/* Minimalistic Design with Application Colors */
.bom-page[data-v-f121dae5] {
  background: #f5f5f5;
  min-height: 100vh;
}

/* Page Header */
.page-header[data-v-f121dae5] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content[data-v-f121dae5] {
  display: flex;
  align-items: center;
}
.header-actions[data-v-f121dae5] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Control Panel */
.control-panel[data-v-f121dae5] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Statistics Cards */
.stat-card[data-v-f121dae5] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.stat-card[data-v-f121dae5]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Table Enhancements */
.q-table[data-v-f121dae5] {
  border-radius: 8px;
  overflow: hidden;
}
.q-table .q-table__thead th[data-v-f121dae5] {
  background: #f8f9fa;
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
}
.q-table .q-table__tbody tr[data-v-f121dae5]:hover {
  background: rgba(0,0,0,0.02);
}

/* Form Enhancements */
.q-form .q-input[data-v-f121dae5],
.q-form .q-select[data-v-f121dae5] {
  margin-bottom: 16px;
}
.q-form .q-input .q-field__control[data-v-f121dae5],
.q-form .q-select .q-field__control[data-v-f121dae5] {
  border-radius: 6px;
  transition: all 0.2s ease;
}
.q-form .q-input .q-field__control[data-v-f121dae5]:focus-within,
.q-form .q-select .q-field__control[data-v-f121dae5]:focus-within {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

/* Status Badge */
.q-badge[data-v-f121dae5] {
  border-radius: 6px;
  font-weight: 500;
  padding: 4px 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
.page-header[data-v-f121dae5] {
    padding: 16px;
}
.header-content[data-v-f121dae5] {
    flex-direction: column;
    text-align: center;
}
.header-actions[data-v-f121dae5] {
    justify-content: center;
    margin-top: 16px;
}
}

/* Subtle Animations */
@keyframes fadeIn-f121dae5 {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
.stat-card[data-v-f121dae5] {
  animation: fadeIn-f121dae5 0.3s ease-out;
}
.stat-card[data-v-f121dae5]:nth-child(1) { animation-delay: 0.1s;
}
.stat-card[data-v-f121dae5]:nth-child(2) { animation-delay: 0.2s;
}
.stat-card[data-v-f121dae5]:nth-child(3) { animation-delay: 0.3s;
}
.stat-card[data-v-f121dae5]:nth-child(4) { animation-delay: 0.4s;
}

/* Minimalistic Design with Application Colors */
.bom-version-page[data-v-b0d7ddbb] {
  background: #f5f5f5;
  min-height: 100vh;
}

/* Page Header */
.page-header[data-v-b0d7ddbb] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content[data-v-b0d7ddbb] {
  display: flex;
  align-items: center;
}
.header-actions[data-v-b0d7ddbb] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Control Panel */
.control-panel[data-v-b0d7ddbb] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Statistics Cards */
.stat-card[data-v-b0d7ddbb] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.stat-card[data-v-b0d7ddbb]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Table Styles */
.q-table[data-v-b0d7ddbb] {
  background: white;
  border-radius: 8px;
}

/* Modal Styles */
.q-dialog__inner--minimized > div[data-v-b0d7ddbb] {
  max-width: 90vw;
}

.bom-approval-page[data-v-7911a7a7] {
  background: #f5f5f5;
  min-height: 100vh;
}
.page-header[data-v-7911a7a7] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content[data-v-7911a7a7] {
  display: flex;
  align-items: center;
}
.control-panel[data-v-7911a7a7] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.stat-card[data-v-7911a7a7] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.stat-card[data-v-7911a7a7]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.consumption-tracking-page[data-v-8f224533] {
  background: #f5f5f5;
  min-height: 100vh;
}
.page-header[data-v-8f224533] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content[data-v-8f224533] {
  display: flex;
  align-items: center;
}
.control-panel[data-v-8f224533] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bom-compliance-page[data-v-f2c7c88a] {
  background: #f5f5f5;
  min-height: 100vh;
}
.page-header[data-v-f2c7c88a] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-content[data-v-f2c7c88a] {
  display: flex;
  align-items: center;
}
.control-panel[data-v-f2c7c88a] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.stat-card[data-v-f2c7c88a] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.stat-card[data-v-f2c7c88a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.header-section[data-v-bf5fbc33] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-bf5fbc33], .filters-card[data-v-bf5fbc33], .chart-card[data-v-bf5fbc33] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.metric-card[data-v-bf5fbc33]:hover, .filters-card[data-v-bf5fbc33]:hover, .chart-card[data-v-bf5fbc33]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-bf5fbc33] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.metric-label[data-v-bf5fbc33] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.metric-trend[data-v-bf5fbc33] {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-trend.positive[data-v-bf5fbc33] {
  color: #4caf50;
}
.metric-trend.negative[data-v-bf5fbc33] {
  color: #f44336;
}
.product-info[data-v-bf5fbc33] {
  line-height: 1.3;
}
.quantity-display[data-v-bf5fbc33] {
  text-align: right;
}
.quantity-value[data-v-bf5fbc33] {
  font-size: 1.1rem;
  font-weight: 600;
}
.quantity-unit[data-v-bf5fbc33] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-left: 4px;
}
.location-info[data-v-bf5fbc33] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.expiry-info[data-v-bf5fbc33] {
  line-height: 1.3;
}
.alerts-list[data-v-bf5fbc33] {
  max-height: 250px;
  overflow-y: auto;
}
.alert-item[data-v-bf5fbc33] {
  border-radius: 8px;
  border-left: 4px solid;
  background-color: #f8f9fa;
}
.alert-item.critical-alert[data-v-bf5fbc33] {
  border-left-color: #f44336;
  background-color: #ffebee;
}
.expiry-tracking[data-v-bf5fbc33] {
  max-height: 350px;
}
.expiry-stat[data-v-bf5fbc33] {
  text-align: center;
  padding: 12px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.expiry-number[data-v-bf5fbc33] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1976d2;
}
.expiry-label[data-v-bf5fbc33] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 4px;
}
.expiry-items[data-v-bf5fbc33] {
  max-height: 200px;
  overflow-y: auto;
}
.expiry-item[data-v-bf5fbc33] {
  border-radius: 8px;
  border-left: 4px solid;
  background-color: #f8f9fa;
}
.expiry-item.critical-expiry[data-v-bf5fbc33] {
  border-left-color: #f44336;
  background-color: #ffebee;
}
.expiry-item.warning-expiry[data-v-bf5fbc33] {
  border-left-color: #ff9800;
  background-color: #fff3cd;
}
.movement-history[data-v-bf5fbc33] {
  max-height: 150px;
  overflow-y: auto;
}
.movement-item[data-v-bf5fbc33] {
  border-bottom: 1px solid #e0e0e0;
}
.movement-item[data-v-bf5fbc33]:last-child {
  border-bottom: none;
}
.styled-card[data-v-bf5fbc33] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-bf5fbc33]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-section[data-v-147afda7] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-aedc5c46] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-a1daec74] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-5fa812e2] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-5fa812e2], .filters-card[data-v-5fa812e2], .chart-card[data-v-5fa812e2] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.metric-card[data-v-5fa812e2]:hover, .filters-card[data-v-5fa812e2]:hover, .chart-card[data-v-5fa812e2]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-5fa812e2] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.metric-label[data-v-5fa812e2] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.metric-trend[data-v-5fa812e2] {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.metric-trend.positive[data-v-5fa812e2] {
  color: #4caf50;
}
.metric-trend.negative[data-v-5fa812e2] {
  color: #f44336;
}
.allocation-status[data-v-5fa812e2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.status-text[data-v-5fa812e2] {
  font-size: 0.875rem;
  font-weight: 500;
}
.shortages-info[data-v-5fa812e2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.shortages-value[data-v-5fa812e2] {
  font-size: 0.75rem;
  color: #6c757d;
}
.due-date-info[data-v-5fa812e2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.days-remaining[data-v-5fa812e2] {
  font-size: 0.75rem;
  color: #6c757d;
}
.stock-level[data-v-5fa812e2] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stock-text[data-v-5fa812e2] {
  font-size: 0.875rem;
  font-weight: 500;
}
.reserved-info[data-v-5fa812e2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.reserved-amount[data-v-5fa812e2] {
  font-weight: 600;
}
.reserved-percentage[data-v-5fa812e2] {
  font-size: 0.75rem;
  color: #6c757d;
}
.allocation-summary[data-v-5fa812e2] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-item[data-v-5fa812e2] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}
.summary-item[data-v-5fa812e2]:last-child {
  border-bottom: none;
}
.summary-item .label[data-v-5fa812e2] {
  font-weight: 500;
}
.summary-item .value[data-v-5fa812e2] {
  font-weight: 600;
}
.availability-info[data-v-5fa812e2] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stock-info[data-v-5fa812e2] {
  font-size: 0.875rem;
  color: #6c757d;
}
.allocation-controls[data-v-5fa812e2] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.styled-card[data-v-5fa812e2] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-5fa812e2]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.q-page[data-v-e351e9ea] {
  background: #f5f5f5;
}
.q-card[data-v-e351e9ea] {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.summary-card[data-v-e351e9ea] {
  transition: all 0.3s ease;
}
.summary-card[data-v-e351e9ea]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.q-page[data-v-284ec96f] {
  background: #f5f5f5;
}
.q-card[data-v-284ec96f] {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.summary-card[data-v-284ec96f] {
  transition: all 0.3s ease;
}
.summary-card[data-v-284ec96f]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.q-page[data-v-3954d2de] {
  background: #f5f5f5;
}
.q-card[data-v-3954d2de] {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.summary-card[data-v-3954d2de] {
  transition: all 0.3s ease;
}
.summary-card[data-v-3954d2de]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.q-page[data-v-be001013] {
  background: #f5f5f5;
}
.q-card[data-v-be001013] {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.summary-card[data-v-be001013] {
  transition: all 0.3s ease;
}
.summary-card[data-v-be001013]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.header-section[data-v-d73533e6] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.summary-card[data-v-d73533e6] {
  border-radius: 12px;
}
.styled-card[data-v-d73533e6] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none; /* Ensure no borders */
}
.styled-card[data-v-d73533e6]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-section[data-v-d50651a8] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-d50651a8] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-d50651a8]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-d50651a8] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-d50651a8] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-d50651a8] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-da2dbef9] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-da2dbef9] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-da2dbef9]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-da2dbef9] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-da2dbef9] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-da2dbef9] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-3afc5df2] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-3afc5df2] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-3afc5df2]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-3afc5df2] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-3afc5df2] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-3afc5df2] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-b98233e4] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-b98233e4] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-b98233e4]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-b98233e4] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-b98233e4] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-b98233e4] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-ac5e2c59] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-ac5e2c59] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-ac5e2c59]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-ac5e2c59] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-ac5e2c59] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-ac5e2c59] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-1a8b01bf] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-1a8b01bf] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-1a8b01bf]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-1a8b01bf] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-1a8b01bf] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-1a8b01bf] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-60e1caac] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-60e1caac] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-60e1caac]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-60e1caac] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-60e1caac] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-60e1caac] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-c8f4390e] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-c8f4390e] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-c8f4390e]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-c8f4390e] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-c8f4390e] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-c8f4390e] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-2b88cf7d] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-2b88cf7d] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-2b88cf7d]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-2b88cf7d] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-2b88cf7d] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-2b88cf7d] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-b22ddf30] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.kpi-card[data-v-b22ddf30] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
}

.header-section[data-v-f0115c34] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-08b541f1] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-93036e02] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.header-section[data-v-5cc4a4aa] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-5cc4a4aa], .styled-card[data-v-5cc4a4aa] { border-radius: 8px; border: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.metric-card[data-v-5cc4a4aa]:hover, .styled-card[data-v-5cc4a4aa]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-5cc4a4aa] { font-size: 2rem; font-weight: 700;
}
.metric-label[data-v-5cc4a4aa] { font-size: 0.875rem; color: #6c757d;
}

.header-section[data-v-db90bc24] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-db90bc24], .filters-card[data-v-db90bc24], .styled-card[data-v-db90bc24] { border-radius: 8px; border: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.metric-card[data-v-db90bc24]:hover, .styled-card[data-v-db90bc24]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-db90bc24] { font-size: 2rem; font-weight: 700;
}
.metric-label[data-v-db90bc24] { font-size: 0.875rem; color: #6c757d;
}

.header-section[data-v-5353cdff] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-5353cdff], .styled-card[data-v-5353cdff] { border-radius: 8px; border: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.metric-card[data-v-5353cdff]:hover, .styled-card[data-v-5353cdff]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-5353cdff] { font-size: 2rem; font-weight: 700;
}
.metric-label[data-v-5353cdff] { font-size: 0.875rem; color: #6c757d;
}

.header-section[data-v-777d8c62] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-777d8c62], .filters-card[data-v-777d8c62], .chart-card[data-v-777d8c62], .styled-card[data-v-777d8c62] { border-radius: 8px; border: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.metric-card[data-v-777d8c62]:hover, .styled-card[data-v-777d8c62]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-777d8c62] { font-size: 2rem; font-weight: 700;
}
.metric-label[data-v-777d8c62] { font-size: 0.875rem; color: #6c757d;
}
.progress-bar[data-v-777d8c62] { border-radius: 4px;
}

.header-section[data-v-ab152b87] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-ab152b87], .filters-card[data-v-ab152b87], .styled-card[data-v-ab152b87] { border-radius: 8px; border: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.metric-card[data-v-ab152b87]:hover, .styled-card[data-v-ab152b87]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-ab152b87] { font-size: 2rem; font-weight: 700;
}
.metric-label[data-v-ab152b87] { font-size: 0.875rem; color: #6c757d;
}

.header-section[data-v-49db900d] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-49db900d], .chart-card[data-v-49db900d], .styled-card[data-v-49db900d] { border-radius: 8px; border: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.metric-card[data-v-49db900d]:hover, .styled-card[data-v-49db900d]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-49db900d] { font-size: 2rem; font-weight: 700;
}
.metric-label[data-v-49db900d] { font-size: 0.875rem; color: #6c757d;
}
.util-bar[data-v-49db900d] { border-radius: 4px;
}

.header-section[data-v-9ef84b42] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-9ef84b42],
.filters-card[data-v-9ef84b42],
.chart-card[data-v-9ef84b42] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.metric-card[data-v-9ef84b42]:hover,
.filters-card[data-v-9ef84b42]:hover,
.chart-card[data-v-9ef84b42]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.metric-value[data-v-9ef84b42] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.metric-label[data-v-9ef84b42] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.metric-trend[data-v-9ef84b42] {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.metric-trend.positive[data-v-9ef84b42] {
  color: #4caf50;
}
.styled-card[data-v-9ef84b42] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-9ef84b42]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-section[data-v-4d974807] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-4d974807],
.filters-card[data-v-4d974807],
.chart-card[data-v-4d974807] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.metric-card[data-v-4d974807]:hover,
.filters-card[data-v-4d974807]:hover,
.chart-card[data-v-4d974807]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.metric-value[data-v-4d974807] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.metric-label[data-v-4d974807] {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
}
.metric-trend[data-v-4d974807] {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.metric-trend.positive[data-v-4d974807] {
  color: #4caf50;
}
.metric-trend.negative[data-v-4d974807] {
  color: #f44336;
}
.reason-chips[data-v-4d974807] {
  max-height: 56px;
  overflow-y: auto;
}
.delay-reasons-list[data-v-4d974807] {
  max-height: 320px;
  overflow-y: auto;
}
.delay-reason-item[data-v-4d974807] {
  border-radius: 4px;
  margin-bottom: 8px;
  transition: background-color 0.2s ease;
}
.delay-reason-item[data-v-4d974807]:hover {
  background-color: #f5f5f5;
}
.delay-reason-item.top-reason[data-v-4d974807] {
  background-color: #ffebee;
  border-left: 3px solid #f44336;
}
.actions-list[data-v-4d974807] {
  max-height: 360px;
  overflow-y: auto;
}
.styled-card[data-v-4d974807] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-4d974807]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.header-section[data-v-3886b9b8] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.kpi-card[data-v-3886b9b8] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
}

.header-section[data-v-b3b163ea] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.kpi-card[data-v-b3b163ea] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
}

.header-section[data-v-ece8629d] { padding: 16px; background: white; border-radius: 8px; border: 1px solid #e0e0e0;
}
.metric-card[data-v-ece8629d] { border-radius: 8px; transition: all 0.3s;
}
.metric-card[data-v-ece8629d]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.metric-value[data-v-ece8629d] { font-size: 1.75rem; font-weight: 700;
}
.metric-label[data-v-ece8629d] { font-size: 0.875rem; color: #6c757d;
}
.styled-card[data-v-ece8629d] { border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); border: none;
}

.header-section[data-v-c472ca5f] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.kpi-card[data-v-c472ca5f] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
}

.header-section[data-v-cd39e36a] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.kpi-card[data-v-cd39e36a] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
}

.header-section[data-v-48574e7e] {
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.metric-card[data-v-48574e7e],
.filters-card[data-v-48574e7e],
.chart-card[data-v-48574e7e],
.styled-card[data-v-48574e7e] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.metric-card[data-v-48574e7e]:hover,
.styled-card[data-v-48574e7e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.metric-value[data-v-48574e7e] {
  font-size: 2rem;
  font-weight: 700;
}
.metric-label[data-v-48574e7e] {
  font-size: 0.875rem;
  color: #6c757d;
}
.metric-trend.positive[data-v-48574e7e] {
  color: #4caf50;
}
.metric-trend.negative[data-v-48574e7e] {
  color: #f44336;
}
.progress-bar[data-v-48574e7e] {
  border-radius: 4px;
}

.dashboard-card[data-v-4200c089] {
  border-radius: 12px;
  transition: transform 0.2s;
  height: 100%;
}
.dashboard-card[data-v-4200c089]:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.kpi-card[data-v-520ea877] {
  border-radius: 8px;
  transition: all 0.3s ease;
}
.kpi-card[data-v-520ea877]:hover {
  background: #f5f5f5;
}

.dashboard-card[data-v-4eb746f6] {
  border-radius: 12px;
  height: 100%;
}

.dashboard-card[data-v-1a1f0cd8] {
  border-radius: 12px;
  height: 100%;
}

.dashboard-card[data-v-4cdf769a] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 400px;
}
.dashboard-card[data-v-4cdf769a]:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.metric-card[data-v-4cdf769a] {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  min-height: 60px;
}
.metric-card[data-v-4cdf769a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.chart-loading[data-v-4cdf769a] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #666;
  animation: fadeIn-4cdf769a 0.3s ease;
}
@keyframes fadeIn-4cdf769a {
from { opacity: 0; transform: translateY(10px);
}
to { opacity: 1; transform: translateY(0);
}
}

/* ApexCharts tooltip custom styling */
.apexcharts-tooltip-custom[data-v-4cdf769a] {
  padding: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  background: white !important;
  border: 1px solid #e0e0e0 !important;
}
.apexcharts-tooltip-title[data-v-4cdf769a] {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.apexcharts-tooltip-series-group[data-v-4cdf769a] {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 12px;
}
.apexcharts-tooltip-marker[data-v-4cdf769a] {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}
.apexcharts-tooltip-net[data-v-4cdf769a] {
  font-weight: 600;
  color: #2196f3;
  margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.dashboard-card[data-v-4cdf769a] {
    min-height: 350px;
}
.metric-card[data-v-4cdf769a] {
    min-height: 50px;
}
}

/* Enhanced legend styling */
.apexcharts-legend[data-v-4cdf769a] {
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.dashboard-card[data-v-1b9981c3] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 450px;
}
.dashboard-card[data-v-1b9981c3]:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.kpi-mini-card[data-v-1b9981c3] {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  min-height: 60px;
}
.kpi-mini-card[data-v-1b9981c3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.chart-loading[data-v-1b9981c3] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  color: #666;
}

/* ApexCharts tooltip custom styling */
.apexcharts-tooltip-custom[data-v-1b9981c3] {
  padding: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  background: white !important;
  border: 1px solid #e0e0e0 !important;
}
.apexcharts-tooltip-title[data-v-1b9981c3] {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.apexcharts-tooltip-series-group[data-v-1b9981c3] {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: 12px;
}
.apexcharts-tooltip-marker[data-v-1b9981c3] {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}
.apexcharts-tooltip-profit[data-v-1b9981c3] {
  font-weight: 600;
  color: #4caf50;
  margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.dashboard-card[data-v-1b9981c3] {
    min-height: 400px;
}
.kpi-mini-card[data-v-1b9981c3] {
    min-height: 50px;
}
}

/* Loading animation for chart transitions */
@keyframes fadeIn-1b9981c3 {
from { opacity: 0; transform: translateY(10px);
}
to { opacity: 1; transform: translateY(0);
}
}
.chart-loading[data-v-1b9981c3] {
  animation: fadeIn-1b9981c3 0.3s ease;
}

/* Custom scrollbar for chart container */
.apexcharts-canvas[data-v-1b9981c3] {
  border-radius: 8px;
}

/* Enhanced legend styling */
.apexcharts-legend[data-v-1b9981c3] {
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.dashboard-card[data-v-1b9f1445] {
  border-radius: 12px;
  background: white;
}
.full-height[data-v-1b9f1445] {
  height: 100%;
}

.stat-card-minimal[data-v-6ff6a241] {
  border-radius: 12px;
  background: white;
  border: 1px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-minimal[data-v-6ff6a241]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.stat-line[data-v-6ff6a241] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}
.letter-spacing-1[data-v-6ff6a241] {
  letter-spacing: 1px;
}
.opacity-8[data-v-6ff6a241] {
  opacity: 0.8;
}
.ap-navbar[data-v-6ff6a241] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-6ff6a241] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.coa-tree[data-v-149562a0] .q-tree__node-header {
  border-radius: 12px;
  padding: 8px 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 2px;
}
.coa-tree[data-v-149562a0] .q-tree__node-header:hover {
  background: rgba(46, 125, 50, 0.05);
  transform: translateX(4px);
}
.coa-tree[data-v-149562a0] .q-tree__node--selected > .q-tree__node-header {
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary-green);
}
.account-item[data-v-149562a0] {
  width: 100%;
}
.account-details[data-v-149562a0] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-name[data-v-149562a0] {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Comfortaa', sans-serif;
}
.account-type[data-v-149562a0] {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}
.view-btn[data-v-149562a0], .edit-btn[data-v-149562a0] {
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.8);
}
.coa-tree[data-v-149562a0] .q-tree__node-header:hover .view-btn,
.coa-tree[data-v-149562a0] .q-tree__node-header:hover .edit-btn {
  opacity: 1;
  transform: scale(1);
}
.control-chip[data-v-149562a0] {
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.sleek-table[data-v-b46fa31d] {
  border-radius: 12px;
  overflow: hidden;
}
.type-chip[data-v-b46fa31d] {
  min-width: 120px;
  justify-content: center;
}

.kanban-grid[data-v-31cc8d59] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.kanban-card[data-v-31cc8d59] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 90px;
}
.kanban-title[data-v-31cc8d59] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
}
.kanban-type[data-v-31cc8d59] {
  font-size: 0.98rem;
  color: #37474f;
  margin-bottom: 2px;
}
.kanban-code[data-v-31cc8d59] {
  font-size: 1rem;
  color: #607d8b;
  font-weight: 600;
  margin-top: 2px;
  text-align: right;
}

.header-font[data-v-cb0e11a3] {
  font-family: 'Comfortaa', sans-serif;
}
.account-details-drawer[data-v-cb0e11a3] {
  background: var(--background-color);
}
.account-details-drawer[data-v-cb0e11a3] .q-drawer__content {
  overflow-x: hidden;
}
.glass-container[data-v-cb0e11a3] {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
}
.body--dark .glass-container[data-v-cb0e11a3] {
  background: rgba(24, 26, 27, 0.7);
}
.full-height[data-v-cb0e11a3] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.drawer-header[data-v-cb0e11a3] {
  background: transparent;
}
.primary-light[data-v-cb0e11a3] {
  background: rgba(46, 125, 50, 0.1);
}
.drawer-scroll-area[data-v-cb0e11a3] {
  flex: 1;
}

/* Sleek Balance Card */
.balance-card-sleek[data-v-cb0e11a3] {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
  position: relative;
  overflow: hidden;
}
.balance-text[data-v-cb0e11a3] {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.text-white-70[data-v-cb0e11a3] {
  color: rgba(255, 255, 255, 0.7);
}
.balance-icon-bg[data-v-cb0e11a3] {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px;
}
.group-balance-card[data-v-cb0e11a3] {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--neutral-gray);
  background: var(--card-bg);
}
.info-item-sleek[data-v-cb0e11a3] {
  background: var(--card-bg);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--neutral-gray);
  transition: all 0.3s ease;
}
.info-item-sleek[data-v-cb0e11a3]:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow);
}
.sleek-tabs[data-v-cb0e11a3] {
  background: transparent;
}
.sleek-panels[data-v-cb0e11a3] {
  background: transparent;
}
.setting-row[data-v-cb0e11a3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--neutral-gray);
}
.metadata-list[data-v-cb0e11a3] {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--neutral-gray);
  padding: 8px 0;
}
.rounded-borders[data-v-cb0e11a3] {
  border-radius: 12px;
}

.ledger-view-container[data-v-e25dc09f] {
  padding: 16px;
}
.ledger-table[data-v-e25dc09f] {
  border-radius: 8px;
}
.ledger-table .q-table__top[data-v-e25dc09f] {
  background: #f8f9fa;
}
.transaction-details .row[data-v-e25dc09f] {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.transaction-details .row[data-v-e25dc09f]:last-child {
  border-bottom: none;
}
.q-table th[data-v-e25dc09f] {
  font-weight: 600;
  background: #f8f9fa;
}
.q-table tbody tr[data-v-e25dc09f]:hover {
  background: #f8f9fa;
}

/* Custom styling for positive/negative amounts */
.text-positive[data-v-e25dc09f] {
  color: #21ba45 !important;
}
.text-negative[data-v-e25dc09f] {
  color: #c10015 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.ledger-view-container[data-v-e25dc09f] {
    padding: 8px;
}
.col-auto[data-v-e25dc09f] {
    margin-bottom: 8px;
}
}

.reports-container[data-v-f03dcf75] {
  padding: 16px;
}
.trial-balance-table[data-v-f03dcf75] {
  border-radius: 8px;
}
.trial-balance-table .q-table__top[data-v-f03dcf75] {
  background: #f8f9fa;
}
.q-table th[data-v-f03dcf75] {
  font-weight: 600;
  background: #f8f9fa;
}
.q-table tbody tr[data-v-f03dcf75]:hover {
  background: #f8f9fa;
}

/* Custom styling for positive/negative amounts */
.text-positive[data-v-f03dcf75] {
  color: #21ba45 !important;
}
.text-negative[data-v-f03dcf75] {
  color: #c10015 !important;
}
.text-info[data-v-f03dcf75] {
  color: #31ccec !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.reports-container[data-v-f03dcf75] {
    padding: 8px;
}
.col-auto[data-v-f03dcf75] {
    margin-bottom: 8px;
}
}

.header-font[data-v-93b30e52] {
  font-family: 'Comfortaa', sans-serif;
}
.primary-light[data-v-93b30e52] {
  background: rgba(46, 125, 50, 0.1);
}
.sleek-card[data-v-93b30e52] {
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--neutral-gray);
}
.journal-table[data-v-93b30e52] {
  border-radius: 8px;
  max-width: 100%;
}
.journal-table[data-v-93b30e52] td {
  white-space: normal !important;
  word-break: break-word;
}
.view-entry-drawer[data-v-93b30e52] {
  background: var(--background-color);
}
.view-entry-drawer[data-v-93b30e52] .q-drawer__content {
  overflow-x: hidden;
}
.glass-container[data-v-93b30e52] {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
}
.body--dark .glass-container[data-v-93b30e52] {
  background: rgba(24, 26, 27, 0.7);
}
.drawer-header[data-v-93b30e52] {
  background: transparent;
  min-height: 70px;
}
.close-btn[data-v-93b30e52]:hover {
  background: rgba(0, 0, 0, 0.05);
}
.rounded-borders[data-v-93b30e52] {
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.col-auto[data-v-93b30e52] {
    margin-bottom: 8px;
}
}

.header-font[data-v-48f95260] {
  font-family: 'Comfortaa', sans-serif;
}
.sleek-card[data-v-48f95260] {
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--neutral-gray);
}
.summary-card[data-v-48f95260] {
  border-radius: 12px;
  transition: transform 0.2s;
}
.summary-card[data-v-48f95260]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.control-accounts-table[data-v-48f95260] {
  border-radius: 8px;
}

.header-font[data-v-858939c7] {
  font-family: 'Comfortaa', sans-serif;
}
.primary-light[data-v-858939c7] {
  background: rgba(46, 125, 50, 0.1);
}
.sleek-card[data-v-858939c7] {
  border-radius: 20px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border: 1px solid var(--neutral-gray);
  overflow: hidden;
}
.search-input-sleek[data-v-858939c7] {
  border-radius: 12px;
}
.search-input-sleek[data-v-858939c7] .q-field__control {
  border-radius: 12px;
  background: var(--neutral-gray);
  border: none;
}
.action-btn-sleek[data-v-858939c7] {
  padding: 8px 20px;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}
.sleek-banner[data-v-858939c7] {
  border-radius: 12px;
}
.sleek-tabs-main[data-v-858939c7] {
  padding: 0 16px;
}
.sleek-tabs-main[data-v-858939c7] .q-tab {
  border-radius: 12px 12px 0 0;
  margin-right: 4px;
  padding: 12px 20px;
  text-transform: none;
  font-weight: 600;
}
.sleek-tabs-main[data-v-858939c7] .q-tab--active {
  background: rgba(46, 125, 50, 0.08);
}
.coa-tree[data-v-858939c7] {
  margin-top: 16px;
}

.ledger-view-container[data-v-ca0dee0f] {
  padding: 16px;
}
.ledger-table[data-v-ca0dee0f] {
  border-radius: 8px;
}
.ledger-table .q-table__top[data-v-ca0dee0f] {
  background: #f8f9fa;
}
.transaction-details .row[data-v-ca0dee0f] {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.transaction-details .row[data-v-ca0dee0f]:last-child {
  border-bottom: none;
}
.journal-entry-details[data-v-ca0dee0f] {
  max-height: 70vh;
  overflow-y: auto;
}
.document-preview[data-v-ca0dee0f] {
  max-height: 70vh;
  overflow-y: auto;
}
.document-content[data-v-ca0dee0f] {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-table th[data-v-ca0dee0f] {
  font-weight: 600;
  background: #f8f9fa;
}
.q-table tbody tr[data-v-ca0dee0f]:hover {
  background: #f8f9fa;
}

/* Custom styling for positive/negative amounts */
.text-positive[data-v-ca0dee0f] {
  color: #21ba45 !important;
}
.text-negative[data-v-ca0dee0f] {
  color: #c10015 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.ledger-view-container[data-v-ca0dee0f] {
    padding: 8px;
}
.col-auto[data-v-ca0dee0f] {
    margin-bottom: 8px;
}
}

/* Print styles */
@media print {
.ledger-view-container[data-v-ca0dee0f] {
    padding: 0;
}
.q-btn[data-v-ca0dee0f] {
    display: none !important;
}
.q-dialog[data-v-ca0dee0f] {
    display: none !important;
}
}

.reports-container[data-v-a169d042] {
  padding: 16px;
}
.trial-balance-table[data-v-a169d042] {
  border-radius: 8px;
}
.trial-balance-table .q-table__top[data-v-a169d042] {
  background: #f8f9fa;
}
.q-table th[data-v-a169d042] {
  font-weight: 600;
  background: #f8f9fa;
}
.q-table tbody tr[data-v-a169d042]:hover {
  background: #f8f9fa;
}

/* Custom styling for positive/negative amounts */
.text-positive[data-v-a169d042] {
  color: #21ba45 !important;
}
.text-negative[data-v-a169d042] {
  color: #c10015 !important;
}
.text-info[data-v-a169d042] {
  color: #31ccec !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.reports-container[data-v-a169d042] {
    padding: 8px;
}
.col-auto[data-v-a169d042] {
    margin-bottom: 8px;
}
}

.journal-entries-container[data-v-f3a6cb5d] {
  padding: 16px;
}
.journal-table[data-v-f3a6cb5d] {
  border-radius: 8px;
}
.journal-table .q-table__top[data-v-f3a6cb5d] {
  background: #f8f9fa;
}
.q-table th[data-v-f3a6cb5d] {
  font-weight: 600;
  background: #f8f9fa;
}
.q-table tbody tr[data-v-f3a6cb5d]:hover {
  background: #f8f9fa;
}
.entry-details .row[data-v-f3a6cb5d] {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.entry-details .row[data-v-f3a6cb5d]:last-child {
  border-bottom: none;
}

/* Custom styling for positive/negative amounts */
.text-positive[data-v-f3a6cb5d] {
  color: #21ba45 !important;
}
.text-negative[data-v-f3a6cb5d] {
  color: #c10015 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.journal-entries-container[data-v-f3a6cb5d] {
    padding: 8px;
}
.col-auto[data-v-f3a6cb5d] {
    margin-bottom: 8px;
}
}

.coa-settings[data-v-886d907e] {
  padding: 20px;
}
.q-card[data-v-886d907e] {
  margin-bottom: 20px;
}
.q-table[data-v-886d907e] {
  background: transparent;
}

.sidebar-nav[data-v-b467d86d] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
  transition: all 0.3s ease;
}
.sidebar-nav.collapsed[data-v-b467d86d] {
  min-width: 64px;
  max-width: 64px;
}

.ar-navbar[data-v-43b0febf] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-43b0febf] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.bankrec-navbar[data-v-4d62d1aa] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-4d62d1aa] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.cb-navbar[data-v-23676b41] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-23676b41] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

/* Custom Styles */
.q-table__top[data-v-7e3f6110] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.reports-navbar[data-v-68d62321] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-68d62321] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

/* Custom Styles */
.q-table__top[data-v-edad4912] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.invoice-navbar[data-v-3f3495cf] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-3f3495cf] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.gl-navbar[data-v-c6607622] {
  min-width: 220px;
  max-width: 240px;
  border-left: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.gl-navbar.collapsed[data-v-c6607622] {
  min-width: 64px;
  max-width: 64px;
}

.asset-navbar[data-v-57f3a96c] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-57f3a96c] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.q-page[data-v-fcb91e56] {
  background-color: #f5f5f5;
}

.q-page[data-v-e894b2e2] {
  background-color: #f5f5f5;
}

.q-page[data-v-0b45de84] {
  background-color: #f5f5f5;
}

.coa-settings[data-v-6db45849] {
  padding: 20px;
}
.q-card[data-v-6db45849] {
  margin-bottom: 20px;
}
.q-table[data-v-6db45849] {
  background: transparent;
}

.sidebar-nav[data-v-40144092] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
  transition: all 0.3s ease;
}
.sidebar-nav.collapsed[data-v-40144092] {
  min-width: 64px;
  max-width: 64px;
}

.q-table__top[data-v-ba5e1532] {
  background-color: #fff;
  padding: 8px 10px;
}
.journal-entries-table[data-v-ba5e1532] .q-table__middle {
  /* maximize usable space */
  min-height: 55vh;
}
.journal-entries-table[data-v-ba5e1532] tr {
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.journal-entries-table[data-v-ba5e1532] tr:hover {
  background-color: #f5f7f9 !important;
}
.journal-entries-table[data-v-ba5e1532] th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.5px;
  background-color: #f8fafc;
}
.summary-card[data-v-ba5e1532] {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 12px;
}
.summary-card[data-v-ba5e1532]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
.rounded-borders-lg[data-v-ba5e1532] {
  border-radius: 16px;
}
.uppercase[data-v-ba5e1532] {
  text-transform: uppercase;
}
.letter-spacing-1[data-v-ba5e1532] {
  letter-spacing: 1px;
}
.border-green[data-v-ba5e1532] {
  border-color: #81c784 !important;
}
.border-orange[data-v-ba5e1532] {
  border-color: #ffb74d !important;
}
.je-details-drawer[data-v-ba5e1532] .q-drawer__content {
  background: #fff;
  overflow-x: hidden;
}
.je-lines-table[data-v-ba5e1532] {
  max-width: 100%;
}
.je-lines-table[data-v-ba5e1532] td {
  white-space: normal !important;
  word-break: break-word;
}
.border-light[data-v-ba5e1532] {
  border: 1px solid #eee;
}
.line-height-1[data-v-ba5e1532] {
  line-height: 1.2;
}
.border-bottom-green[data-v-ba5e1532] {
  border-bottom: 3px solid #2e7d32 !important;
}

.q-table__top[data-v-dcea106d] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}
.ledger-view[data-v-dcea106d] .q-table__middle {
  min-height: 55vh;
}

.q-tabs[data-v-7d81eb72] {
  background-color: #f5f5f5;
  border-radius: 8px 8px 0 0;
}

.sidebar-nav[data-v-b804dbe7] {
  min-width: 240px;
  max-width: 260px;
  border-right: 1px solid #eef2f7;
  background: #fff;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.sidebar-nav.collapsed[data-v-b804dbe7] {
  min-width: 80px;
  max-width: 80px;
}
.rounded-borders-lg[data-v-b804dbe7] {
  border-radius: 16px;
}
.hover-shadow[data-v-b804dbe7]:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
}
.transition-3[data-v-b804dbe7] {
  transition: all 0.3s ease;
}
.header-font[data-v-b804dbe7] {
  letter-spacing: -0.5px;
}
[data-v-b804dbe7] .q-item.q-router-link--active,[data-v-b804dbe7] .q-item--active {
  background-color: #e3f2fd;
  color: #1976d2;
}

.reports-navbar[data-v-ff663d1f] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.reports-navbar.collapsed[data-v-ff663d1f] {
  min-width: 64px;
  max-width: 64px;
}
.q-table__top[data-v-ff663d1f] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}
.trend-bars[data-v-ff663d1f] {
  display: flex;
  align-items: flex-end;
  height: 80px;
  gap: 6px;
}
.trend-bar[data-v-ff663d1f] {
  width: 12%;
  background-color: #f87171; /* red-400 */
  border-radius: 3px 3px 0 0;
  transition: height 0.2s ease;
}
.trend-bar.pos[data-v-ff663d1f] {
  background-color: #34d399; /* green-400 */
}

.reports-navbar[data-v-0142eeea] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.reports-navbar.collapsed[data-v-0142eeea] {
  min-width: 64px;
  max-width: 64px;
}

.q-table__top[data-v-0d11f18d] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.q-table__top[data-v-8c339b7e] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.q-table__top[data-v-2a692ea3] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.q-page[data-v-5b24bedc] {
  background-color: #f5f5f5;
}

.q-page[data-v-5d50feca] {
  background-color: #f5f5f5;
}

.q-page[data-v-e6449301] {
  background-color: #f5f5f5;
}

.q-page[data-v-8180d33b] {
  background-color: #f5f5f5;
}

.bulk-suppliers-table[data-v-e6117487] {
  height: 100%;
}
.bulk-suppliers-table[data-v-e6117487] .q-table__middle {
  max-height: calc(100vh - 450px);
  overflow-y: auto;
}
.amount-input[data-v-e6117487] {
  max-width: 150px;
}
.q-th[data-v-e6117487], .q-td[data-v-e6117487] {
  padding: 8px 12px;
}

.bulk-customers-table[data-v-4d8a0ab9] {
  height: 100%;
}
.bulk-customers-table[data-v-4d8a0ab9] .q-table__middle {
  max-height: calc(100vh - 400px);
  overflow-y: auto;
}

.bulk-accounts-table[data-v-7f0a5d97] {
  height: 100%;
}
.bulk-accounts-table[data-v-7f0a5d97] .q-table__middle {
  max-height: calc(100vh - 450px);
  overflow-y: auto;
}

.upload-step[data-v-647596f7] {
  max-width: 1200px;
  margin: 0 auto;
}
.upload-card[data-v-647596f7] {
  height: 100%;
  transition: all 0.3s ease;
}
.upload-card.uploaded[data-v-647596f7] {
  border-color: #4caf50 !important;
  background-color: rgba(76, 175, 80, 0.05);
}
.file-upload-area[data-v-647596f7] {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fafafa;
}
.file-upload-area[data-v-647596f7]:hover {
  border-color: #1976d2;
  background-color: #f5f9ff;
}
.upload-card.uploaded .file-upload-area[data-v-647596f7] {
  border-color: #4caf50;
  background-color: #f8fff8;
}
.file-info[data-v-647596f7] {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 0.75rem;
}
.summary-item[data-v-647596f7] {
  background-color: #f8f9fa;
}
.summary-item .text-h6[data-v-647596f7] {
  color: #1976d2;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
.file-upload-area[data-v-647596f7] {
    padding: 1.5rem;
}
.file-upload-area .text-body1[data-v-647596f7] {
    font-size: 0.9rem;
}
.file-upload-area .text-caption[data-v-647596f7] {
    font-size: 0.75rem;
}
}

.preview-step[data-v-e419ef7c] {
  max-width: 1400px;
  margin: 0 auto;
}
.validation-summary[data-v-e419ef7c] {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}
.stat-card[data-v-e419ef7c] {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-number[data-v-e419ef7c] {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.stat-label[data-v-e419ef7c] {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-preview-card[data-v-e419ef7c] {
  height: 100%;
}
.q-table[data-v-e419ef7c] {
  max-height: 300px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
.stat-card[data-v-e419ef7c] {
    margin-bottom: 1rem;
}
}
@media (max-width: 768px) {
.row.q-gutter-md > .col-12.col-sm-6.col-md-3[data-v-e419ef7c] {
    margin-bottom: 1rem;
}
.stat-card[data-v-e419ef7c] {
    padding: 0.75rem;
}
.stat-number[data-v-e419ef7c] {
    font-size: 1.5rem;
}
}

.execute-step[data-v-e638bb8a] {
  max-width: 1200px;
  margin: 0 auto;
}
.status-info[data-v-e638bb8a] {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #1976d2;
}
.max-width-600[data-v-e638bb8a] {
  max-width: 600px;
}
@media (max-width: 768px) {
.row.q-gutter-md > .col-12.col-md-6[data-v-e638bb8a] {
    margin-bottom: 1rem;
}
}

.results-step[data-v-85f55ef8] {
  max-width: 1400px;
  margin: 0 auto;
}
.stats-grid[data-v-85f55ef8] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}
.stat-item[data-v-85f55ef8] {
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.stat-value[data-v-85f55ef8] {
  margin-bottom: 0.25rem;
}
.stat-label[data-v-85f55ef8] {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.validation-grid[data-v-85f55ef8] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.validation-item[data-v-85f55ef8] {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border-radius: 4px;
}
.balance-table[data-v-85f55ef8] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.balance-row[data-v-85f55ef8] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 120px;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}
.balance-row.header[data-v-85f55ef8] {
  background-color: #f5f5f5;
  font-weight: 600;
  border-bottom: 2px solid #1976d2;
}
.balance-row[data-v-85f55ef8]:last-child {
  border-bottom: none;
}
.account-name[data-v-85f55ef8] {
  font-weight: 500;
}
.gl-balance[data-v-85f55ef8],
.sub-ledger-balance[data-v-85f55ef8],
.difference[data-v-85f55ef8] {
  text-align: right;
  font-family: monospace;
}
.status[data-v-85f55ef8] {
  text-align: center;
}
@media (max-width: 1024px) {
.balance-row[data-v-85f55ef8] {
    grid-template-columns: 2fr 1fr 1fr 1fr 100px;
    font-size: 0.875rem;
}
}
@media (max-width: 768px) {
.stats-grid[data-v-85f55ef8] {
    grid-template-columns: repeat(2, 1fr);
}
.balance-row[data-v-85f55ef8] {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: left;
}
.balance-row.header[data-v-85f55ef8] {
    display: none;
}
.balance-row[data-v-85f55ef8]:not(.header) {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.gl-balance[data-v-85f55ef8],
  .sub-ledger-balance[data-v-85f55ef8],
  .difference[data-v-85f55ef8] {
    text-align: left;
}
}

.file-upload-area[data-v-8fe12877] {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fafafa;
}
.file-upload-area[data-v-8fe12877]:hover,
.file-upload-area.drag-over[data-v-8fe12877] {
  border-color: #1976d2;
  background-color: #f5f9ff;
}
.file-upload-area.drag-over[data-v-8fe12877] {
  border-color: #4caf50;
  background-color: #f8fff8;
}
@media (max-width: 768px) {
.file-upload-area[data-v-8fe12877] {
    padding: 1.5rem;
}
.file-upload-area .text-body1[data-v-8fe12877] {
    font-size: 0.9rem;
}
.file-upload-area .text-caption[data-v-8fe12877] {
    font-size: 0.75rem;
}
}

.upload-step[data-v-58120510] {
  max-width: 1200px;
  margin: 0 auto;
}
.upload-card[data-v-58120510] {
  height: 100%;
  transition: all 0.3s ease;
}
.upload-card.uploaded[data-v-58120510] {
  border-color: #4caf50 !important;
  background-color: rgba(76, 175, 80, 0.05);
}
.summary-item[data-v-58120510] {
  background-color: #f8f9fa;
}
.summary-item .text-h6[data-v-58120510] {
  color: #1976d2;
  margin-bottom: 0.25rem;
}

.mapping-step[data-v-b879b3a7] {
  max-width: 1200px;
  margin: 0 auto;
}

.validation-results[data-v-718db4cf] {
  max-width: 1200px;
  margin: 0 auto;
}
.validation-header[data-v-718db4cf] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}
.validation-items[data-v-718db4cf] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.validation-item[data-v-718db4cf] {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.validation-item[data-v-718db4cf]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.validation-item.has-details[data-v-718db4cf] {
  cursor: pointer;
}
.item-header[data-v-718db4cf] {
  padding: 1rem;
}
.item-title[data-v-718db4cf] {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.expand-icon[data-v-718db4cf] {
  transition: transform 0.3s ease;
}
.item-details[data-v-718db4cf] {
  padding: 1rem;
  background-color: #fafafa;
}
.stats-section[data-v-718db4cf] {
  background-color: white;
  border-radius: 4px;
  padding: 1rem;
}
.stat-card[data-v-718db4cf] {
  background-color: #f8f9fa;
  border-radius: 4px;
  padding: 0.75rem;
  text-align: center;
}
.stat-value[data-v-718db4cf] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 0.25rem;
}
.stat-label[data-v-718db4cf] {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.details-list[data-v-718db4cf] {
  background-color: white;
  border-radius: 4px;
}
.actions-section[data-v-718db4cf] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}
@media (max-width: 768px) {
.validation-header[data-v-718db4cf],
  .item-header[data-v-718db4cf],
  .item-details[data-v-718db4cf],
  .actions-section[data-v-718db4cf] {
    padding: 0.75rem;
}
.stat-card[data-v-718db4cf] {
    margin-bottom: 0.5rem;
}
}

.preview-step[data-v-671be172] {
  max-width: 1200px;
  margin: 0 auto;
}
.summary-card[data-v-671be172] {
  transition: transform 0.2s;
}
.summary-card[data-v-671be172]:hover {
  transform: translateY(-4px);
}

.migration-progress[data-v-35966dc0] {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}
.progress-section[data-v-35966dc0] {
  background-color: white;
  border-radius: 4px;
  padding: 1rem;
}
.status-info[data-v-35966dc0] {
  background-color: white;
  border-radius: 4px;
  padding: 1rem;
  border-left: 4px solid #1976d2;
}
.stats-section[data-v-35966dc0] {
  background-color: white;
  border-radius: 4px;
  padding: 1rem;
}
.activity-section[data-v-35966dc0] {
  background-color: white;
  border-radius: 4px;
  padding: 1rem;
}
.error-section[data-v-35966dc0] {
  background-color: #ffebee;
  border-radius: 4px;
  border: 1px solid #ffcdd2;
}
@media (max-width: 768px) {
.migration-progress[data-v-35966dc0] {
    padding: 0.75rem;
}
.progress-section[data-v-35966dc0],
  .status-info[data-v-35966dc0],
  .stats-section[data-v-35966dc0],
  .activity-section[data-v-35966dc0] {
    padding: 0.75rem;
}
}

.execute-step[data-v-b0c21e4e] {
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item[data-v-b0c21e4e] {
  text-align: center;
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.stat-value[data-v-b0c21e4e] {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.stat-label[data-v-b0c21e4e] {
  font-size: 0.875rem;
  color: #666;
}

.results-step[data-v-067e17d2] {
  max-width: 1200px;
  margin: 0 auto;
}
.summary-card[data-v-067e17d2] {
  transition: transform 0.2s;
}
.summary-card[data-v-067e17d2]:hover {
  transform: translateY(-4px);
}
.detail-item[data-v-067e17d2] {
  padding: 0.5rem 0;
}
.detail-label[data-v-067e17d2] {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}
.detail-value[data-v-067e17d2] {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.migration-wizard-page[data-v-c1b0e0d0] {
  min-height: 100vh;
  background-color: #f5f5f5;
}
.step-indicator[data-v-c1b0e0d0] {
  padding: 1rem 0;
}
.step-circle[data-v-c1b0e0d0] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
  transition: all 0.3s ease;
}
.step-circle.active[data-v-c1b0e0d0] {
  background-color: #1976d2;
  color: white;
}
.step-circle.completed[data-v-c1b0e0d0] {
  background-color: #4caf50;
  color: white;
}
.step-circle.disabled[data-v-c1b0e0d0] {
  background-color: #e0e0e0;
  color: #9e9e9e;
}
.step-circle[data-v-c1b0e0d0]:not(.active):not(.completed):not(.disabled) {
  background-color: #e3f2fd;
  color: #1976d2;
  border: 2px solid #1976d2;
}
.step-label[data-v-c1b0e0d0] {
  min-width: 80px;
  max-width: 120px;
}
.step-content[data-v-c1b0e0d0] {
  min-height: 400px;
  padding: 2rem;
}
@media (max-width: 768px) {
.step-indicator .row[data-v-c1b0e0d0] {
    justify-content: center;
}
.step-circle[data-v-c1b0e0d0] {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
}
.step-label[data-v-c1b0e0d0] {
    font-size: 0.75rem;
    min-width: 70px;
}
}

.stat-card-minimal[data-v-cff43503] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-cff43503]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
  transform: translateY(-2px);
}
.stat-line[data-v-cff43503] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.opacity-8[data-v-cff43503] { opacity: 0.8;
}
.letter-spacing-1[data-v-cff43503] { letter-spacing: 1px;
}
.journal-entry-details[data-v-cff43503] {
  max-width: 100%;
}

.stat-card-minimal[data-v-55c5b696] {
  border-radius: 12px;
  background: white;
  border: 1px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-minimal[data-v-55c5b696]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.stat-line[data-v-55c5b696] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}
.letter-spacing-1[data-v-55c5b696] {
  letter-spacing: 1px;
}
.opacity-8[data-v-55c5b696] {
  opacity: 0.8;
}
.metric-card[data-v-55c5b696] {
  transition: all 0.3s ease;
}
.metric-card[data-v-55c5b696]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-input .q-field__control[data-v-55c5b696] {
  border-radius: 8px;
}

/* Amount cells */
.q-table__container[data-v-55c5b696] {
  max-width: 100%;
  overflow-x: auto;
}
.amount-cell[data-v-55c5b696] {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #1976d2;
}
.amount-value[data-v-55c5b696] {
  font-size: 14px;
}

/* Date cells */
.date-cell[data-v-55c5b696] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.date-value[data-v-55c5b696] {
  font-weight: 500;
  color: #37474f;
}
.date-status[data-v-55c5b696] {
  font-size: 11px;
  font-weight: 500;
}

/* Action buttons */
.action-buttons[data-v-55c5b696] {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* Enhanced table styling */
.q-table tbody tr[data-v-55c5b696]:hover {
  background-color: #f8f9fa;
}

/* Status badges */
.q-badge[data-v-55c5b696] {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form sections */
.form-section[data-v-55c5b696] {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e1e5e9;
  margin-bottom: 16px;
}
.form-section[data-v-55c5b696]:last-child {
  margin-bottom: 0;
}
.section-header[data-v-55c5b696] {
  font-size: 16px;
  font-weight: 600;
  color: #37474f;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e3f2fd;
}
.form-grid[data-v-55c5b696] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.notification-settings[data-v-55c5b696] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.notification-settings .q-option-group[data-v-55c5b696] {
  display: flex;
  gap: 24px;
}

/* Payment details modal */
.payment-details[data-v-55c5b696] {
  max-width: 100%;
}
.payment-header[data-v-55c5b696] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e1e5e9;
  margin-bottom: 16px;
}
.payment-amount[data-v-55c5b696] {
  font-size: 32px;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 4px;
}
.payment-vendor[data-v-55c5b696] {
  font-size: 14px;
  color: #6c757d;
}
.payment-actions[data-v-55c5b696] {
  display: flex;
  gap: 8px;
}
.details-grid[data-v-55c5b696] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}
.info-section[data-v-55c5b696] {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e1e5e9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.info-grid[data-v-55c5b696] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.info-item[data-v-55c5b696] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.info-item.full-width[data-v-55c5b696] {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.info-label[data-v-55c5b696] {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 120px;
}
.info-value[data-v-55c5b696] {
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  text-align: right;
}
.info-value.amount-value[data-v-55c5b696] {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #1976d2;
}

/* Execution history */
.execution-history[data-v-55c5b696] {
  margin-top: 16px;
}
.execution-item[data-v-55c5b696] {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.execution-item[data-v-55c5b696]:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}
.execution-reference[data-v-55c5b696] {
  font-weight: 600;
  color: #495057;
  margin-bottom: 2px;
}
.execution-details[data-v-55c5b696] {
  font-size: 12px;
  color: #6c757d;
}
.execution-amount[data-v-55c5b696] {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #28a745;
}

/* Modal styles */
.payment-dialog[data-v-55c5b696],
.details-dialog[data-v-55c5b696] {
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* Input field enhancements */
.q-input .q-field__control[data-v-55c5b696],
.q-select .q-field__control[data-v-55c5b696],
.q-textarea .q-field__control[data-v-55c5b696] {
  border-radius: 8px;
  background-color: #ffffff;
  border: 2px solid #e1e5e9;
  transition: all 0.3s ease;
}
.q-input .q-field__control[data-v-55c5b696]:hover,
.q-select .q-field__control[data-v-55c5b696]:hover,
.q-textarea .q-field__control[data-v-55c5b696]:hover {
  border-color: #1976d2;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
}
.q-input--focused .q-field__control[data-v-55c5b696],
.q-select--focused .q-field__control[data-v-55c5b696],
.q-textarea--focused .q-field__control[data-v-55c5b696] {
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}
.q-input .q-field__label[data-v-55c5b696],
.q-select .q-field__label[data-v-55c5b696],
.q-textarea .q-field__label[data-v-55c5b696] {
  color: #5f6368;
  font-weight: 500;
  font-size: 14px;
}
.q-input--focused .q-field__label[data-v-55c5b696],
.q-select--focused .q-field__label[data-v-55c5b696],
.q-textarea--focused .q-field__label[data-v-55c5b696] {
  color: #1976d2;
  font-weight: 600;
}

/* Button enhancements */
.q-btn[data-v-55c5b696] {
  border-radius: 8px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
}
.q-btn--unelevated[data-v-55c5b696] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.q-btn[data-v-55c5b696]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animation enhancements */
.q-dialog__inner--minimized > .q-card[data-v-55c5b696] {
  animation: modalSlideIn-55c5b696 0.3s ease-out;
}
@keyframes modalSlideIn-55c5b696 {
from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
@keyframes slideDown-55c5b696 {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Responsive adjustments */
@media (max-width: 768px) {
.metric-card .col[data-v-55c5b696] {
    text-align: center;
}
.search-input[data-v-55c5b696] {
    width: 100% !important;
}
.q-table tbody td[data-v-55c5b696] {
    padding: 8px 4px;
}
.q-table thead th[data-v-55c5b696] {
    font-size: 12px;
    padding: 8px 4px;
}
.form-grid[data-v-55c5b696] {
    grid-template-columns: 1fr;
}
.details-grid[data-v-55c5b696] {
    grid-template-columns: 1fr;
}
.notification-settings .q-option-group[data-v-55c5b696] {
    flex-direction: column;
    gap: 8px;
}
}
.border-bottom-green[data-v-55c5b696] {
  border-bottom: 3px solid #2e7d32 !important;
}

.stat-card-minimal[data-v-c5bd8e55] {
  border-radius: 12px;
  background: white;
  border: 1px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-minimal[data-v-c5bd8e55]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.stat-line[data-v-c5bd8e55] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}
.letter-spacing-1[data-v-c5bd8e55] {
  letter-spacing: 1px;
}
.opacity-8[data-v-c5bd8e55] {
  opacity: 0.8;
}
.reports-navbar[data-v-c5bd8e55] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-c5bd8e55] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.stat-card-minimal[data-v-754cb21d] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-754cb21d]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-754cb21d] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.opacity-8[data-v-754cb21d] { opacity: 0.8;
}
.letter-spacing-1[data-v-754cb21d] { letter-spacing: 1px;
}
.filter-card[data-v-754cb21d] {
  border-radius: 4px;
}
.border-green[data-v-754cb21d] {
  border: 1px solid #2e7d32 !important;
}
.border-dashed[data-v-754cb21d] {
  border-style: dashed !important;
}
.search-input-minimal[data-v-754cb21d] .q-field__control {
  border-radius: 4px;
}

/* Table styling */
.enhanced-table .q-table thead th[data-v-754cb21d] {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #2e7d32;
  background-color: white;
  border-bottom: 2px solid #2e7d32;
}
.enhanced-table .q-table tbody tr[data-v-754cb21d] {
  transition: all 0.2s ease;
}
.enhanced-table .q-table tbody tr[data-v-754cb21d]:hover {
  background-color: #f1f8e9 !important;
}
.enhanced-table .q-table tbody td[data-v-754cb21d] {
  font-size: 13.5px;
  border-bottom: 1px solid #e0e0e0;
}
.amount-cell[data-v-754cb21d] {
  font-family: 'Roboto Mono', monospace;
  color: #1b5e20;
}
.border-bottom-green[data-v-754cb21d] {
  border-bottom: 2px solid #2e7d32 !important;
}
.border-bottom-grey[data-v-754cb21d] {
  border-bottom: 1px solid #eeeeee;
}
.border-grey[data-v-754cb21d] {
  border: 1px solid #eeeeee;
}
.border-left-primary[data-v-754cb21d] {
  border-left: 4px solid #2e7d32;
}

.dms-selector-card[data-v-3fd70b68] {
  width: 700px;
  max-width: 90vw;
  border-radius: 12px;
  overflow: hidden;
}
.document-list-container[data-v-3fd70b68] {
  height: 450px;
  overflow-y: auto;
  background-color: #fcfcfc;
}
.document-item[data-v-3fd70b68] {
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.document-item[data-v-3fd70b68]:hover {
  background-color: #f0f4f8;
  border-color: #e0e0e0;
}
.selected-document-item[data-v-3fd70b68] {
  background-color: #e3f2fd !important;
  border-color: #bbdefb !important;
}
.search-input-modern[data-v-3fd70b68] .q-field__control {
  border-radius: 8px;
}
.opacity-80[data-v-3fd70b68] {
  opacity: 0.8;
}
.rounded-borders[data-v-3fd70b68] {
  border-radius: 8px;
}

/* Modern Form Sections */
.form-section-modern[data-v-6fd70896] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.section-title[data-v-6fd70896] {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.section-title .text-h6[data-v-6fd70896] {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0,0,0,0.87);
}
.border-dashed[data-v-6fd70896] {
  border: 2px dashed #e0e0e0;
}
.truncate-text[data-v-6fd70896] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.opacity-4[data-v-6fd70896] {
  opacity: 0.4;
}

/* Header & Footer Styling */
.full-screen-header[data-v-6fd70896] {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  z-index: 10;
}
.full-screen-footer[data-v-6fd70896] {
  background: white;
  border-top: 1px solid #e0e0e0;
}

/* Input Overrides for Modern Look */
.q-field--outlined .q-field__control[data-v-6fd70896] {
  border-radius: 8px !important;
}
.amount-input .q-field__native[data-v-6fd70896] {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2e7d32;
}

/* Transition & Effects */
.credit-note-dialog[data-v-6fd70896] {
  border-radius: 0 !important;
}
.stat-card-minimal[data-v-6fd70896] {
  border-radius: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stat-card-minimal[data-v-6fd70896]:hover {
  transform: translateY(-4px);
  border-color: #2e7d32;
  box-shadow: 0 12px 20px rgba(46, 125, 50, 0.08);
}
.stat-line[data-v-6fd70896] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.opacity-8[data-v-6fd70896] { opacity: 0.8;
}
.letter-spacing-1[data-v-6fd70896] { letter-spacing: 1.2px;
}
.search-input .q-field__control[data-v-6fd70896] {
  border-radius: 12px;
}

/* Modern Details Dialog */
.details-dialog-modern[data-v-6fd70896] {
  border-radius: 20px !important;
  overflow: hidden;
}
.amount-banner[data-v-6fd70896] {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.amount-banner[data-v-6fd70896]:hover {
  background: #f1f8e9 !important;
  border-color: #2e7d32;
}
.detail-item-modern .label[data-v-6fd70896] {
  font-weight: 700;
  color: #757575;
  margin-bottom: 2px;
}
.detail-item-modern .value[data-v-6fd70896] {
  color: #263238;
  font-weight: 500;
}
.border-grey-3[data-v-6fd70896] {
  border-color: #e0e0e0;
}
.border-left-primary[data-v-6fd70896] {
  border-left: 4px solid var(--q-primary);
}
.letter-spacing-1[data-v-6fd70896] {
  letter-spacing: 1px;
}

/* Drawer Styles */
.details-drawer[data-v-6fd70896] {
  background-color: #fafafa;
}

/* Responsive Design */
@media (max-width: 1400px) {
.details-drawer[data-v-6fd70896] {
    width: 50vw !important;
    max-width: 95vw !important;
}
}
@media (max-width: 1024px) {
.details-drawer[data-v-6fd70896] {
    width: 70vw !important;
    max-width: 95vw !important;
}
}
@media (max-width: 768px) {
.details-drawer[data-v-6fd70896] {
    width: 90vw !important;
    max-width: 100vw !important;
}
}
.drawer-header[data-v-6fd70896] {
  background-color: var(--q-primary);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}
.amount-banner[data-v-6fd70896] {
  background-color: var(--q-primary);
  color: white;
  border-radius: 8px;
  margin: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.bg-gradient-secondary[data-v-6fd70896] {
  background-color: var(--q-secondary);
  color: white;
}
.detail-card[data-v-6fd70896] {
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
}
.detail-card[data-v-6fd70896]:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.detail-row[data-v-6fd70896] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.detail-row[data-v-6fd70896]:last-child {
  border-bottom: none;
}
.detail-row .label[data-v-6fd70896] {
  font-weight: 500;
  color: #666;
  font-size: 0.875rem;
}
.detail-row .value[data-v-6fd70896] {
  font-weight: 500;
  color: #333;
  text-align: right;
  font-size: 0.875rem;
}
.border-left-primary[data-v-6fd70896] {
  border-left: 4px solid var(--q-primary);
}
.letter-spacing-1[data-v-6fd70896] {
  letter-spacing: 1px;
}
.drawer-actions[data-v-6fd70896] {
  background-color: white;
  border-top: 1px solid #e9ecef;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
}
.document-item[data-v-6fd70896]:hover {
  background-color: #f8f9fa;
}
.truncate-text[data-v-6fd70896] {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Table Enhancements */
.q-table__container[data-v-6fd70896] {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.action-buttons[data-v-6fd70896] {
  display: flex;
  gap: 6px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
.credit-note-form[data-v-6fd70896] {
    padding: 24px !important;
}
}
@media (max-width: 600px) {
.credit-note-form[data-v-6fd70896] {
    padding: 16px !important;
}
.truncate-text[data-v-6fd70896] {
    max-width: 120px;
}
}

/* Modern Form Sections */
.form-section-modern[data-v-7820d8c5] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.section-title[data-v-7820d8c5] {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.section-title .text-h6[data-v-7820d8c5] {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0,0,0,0.87);
}
.border-dashed[data-v-7820d8c5] {
  border: 2px dashed #e0e0e0;
}
.truncate-text[data-v-7820d8c5] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.opacity-4[data-v-7820d8c5] {
  opacity: 0.4;
}

/* Header & Footer Styling */
.full-screen-header[data-v-7820d8c5] {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  z-index: 10;
}
.full-screen-footer[data-v-7820d8c5] {
  background: white;
  border-top: 1px solid #e0e0e0;
}

/* Input Overrides for Modern Look */
.q-field--outlined .q-field__control[data-v-7820d8c5] {
  border-radius: 8px !important;
}
.amount-input .q-field__native[data-v-7820d8c5] {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f44336;
}

/* Transition & Effects */
.debit-note-dialog[data-v-7820d8c5] {
  border-radius: 0 !important;
}
.stat-card-minimal[data-v-7820d8c5] {
  border-radius: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stat-card-minimal[data-v-7820d8c5]:hover {
  transform: translateY(-4px);
  border-color: #f44336;
  box-shadow: 0 12px 20px rgba(244, 67, 54, 0.08);
}
.stat-line[data-v-7820d8c5] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.opacity-8[data-v-7820d8c5] { opacity: 0.8;
}
.letter-spacing-1[data-v-7820d8c5] { letter-spacing: 1.2px;
}
.search-input .q-field__control[data-v-7820d8c5] {
  border-radius: 12px;
}
.amount-banner[data-v-7820d8c5] {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.amount-banner[data-v-7820d8c5]:hover {
  background: #ffebee !important;
  border-color: #f44336;
}
.detail-item-modern .label[data-v-7820d8c5] {
  font-weight: 700;
  color: #757575;
  margin-bottom: 2px;
}
.detail-item-modern .value[data-v-7820d8c5] {
  color: #263238;
  font-weight: 500;
}
.border-grey-3[data-v-7820d8c5] {
  border-color: #e0e0e0;
}
.border-left-primary[data-v-7820d8c5] {
  border-left: 4px solid var(--q-primary);
}
.letter-spacing-1[data-v-7820d8c5] {
  letter-spacing: 1px;
}

/* Drawer Styles */
.details-drawer[data-v-7820d8c5] {
  background-color: #fafafa;
}

/* Responsive Design */
@media (max-width: 1400px) {
.details-drawer[data-v-7820d8c5] {
    width: 50vw !important;
    max-width: 95vw !important;
}
}
@media (max-width: 1024px) {
.details-drawer[data-v-7820d8c5] {
    width: 70vw !important;
    max-width: 95vw !important;
}
}
@media (max-width: 768px) {
.details-drawer[data-v-7820d8c5] {
    width: 90vw !important;
    max-width: 100vw !important;
}
}
.drawer-header[data-v-7820d8c5] {
  background-color: var(--q-primary);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}
.amount-banner[data-v-7820d8c5] {
  background-color: var(--q-negative);
  color: white;
  border-radius: 8px;
  margin: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.bg-gradient-secondary[data-v-7820d8c5] {
  background-color: var(--q-secondary);
  color: white;
}
.detail-card[data-v-7820d8c5] {
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border: 1px solid #e0e0e0;
  margin-bottom: 16px;
}
.detail-card[data-v-7820d8c5]:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.detail-row[data-v-7820d8c5] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.detail-row[data-v-7820d8c5]:last-child {
  border-bottom: none;
}
.detail-row .label[data-v-7820d8c5] {
  font-weight: 500;
  color: #666;
  font-size: 0.875rem;
}
.detail-row .value[data-v-7820d8c5] {
  font-weight: 500;
  color: #333;
  text-align: right;
  font-size: 0.875rem;
}
.border-left-primary[data-v-7820d8c5] {
  border-left: 4px solid var(--q-primary);
}
.letter-spacing-1[data-v-7820d8c5] {
  letter-spacing: 1px;
}
.drawer-actions[data-v-7820d8c5] {
  background-color: white;
  border-top: 1px solid #e9ecef;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
}
.document-item[data-v-7820d8c5]:hover {
  background-color: #f8f9fa;
}
.truncate-text[data-v-7820d8c5] {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Table Enhancements */
.q-table__container[data-v-7820d8c5] {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.action-buttons[data-v-7820d8c5] {
  display: flex;
  gap: 6px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
.debit-note-form[data-v-7820d8c5] {
    padding: 24px !important;
}
}
@media (max-width: 600px) {
.debit-note-form[data-v-7820d8c5] {
    padding: 16px !important;
}
.truncate-text[data-v-7820d8c5] {
    max-width: 120px;
}
}

.metric-card[data-v-e67142fd] {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 12px;
  background: white;
}
.hover-lift[data-v-e67142fd]:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}
.main-table-card[data-v-e67142fd] {
  border-radius: 16px;
  overflow: hidden;
}
.search-input[data-v-e67142fd] {
  width: 300px;
  transition: width 0.3s ease;
}
.search-input[data-v-e67142fd]:focus-within {
  width: 400px;
}
.payment-candidates-table[data-v-e67142fd] {
  background: white;
}
.amount-cell[data-v-e67142fd] {
  text-align: right;
}
.amount-value[data-v-e67142fd] {
  font-weight: 700;
  font-size: 15px;
  color: #1976d2;
}
.date-cell[data-v-e67142fd] {
  text-align: center;
}
.date-value[data-v-e67142fd] {
  font-weight: 600;
  margin-bottom: 2px;
}
.date-status[data-v-e67142fd] {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.text-negative[data-v-e67142fd] {
  background: rgba(244, 67, 54, 0.1) !important;
  color: #f44336 !important;
}
.text-warning[data-v-e67142fd] {
  background: rgba(255, 152, 0, 0.1) !important;
  color: #ff9800 !important;
}
.payment-input-container[data-v-e67142fd] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.account-selection-dialog[data-v-e67142fd] {
  background: #f5f7fa;
}
.container-max-width[data-v-e67142fd] {
  max-width: 1400px;
}
.supplier-payment-card[data-v-e67142fd] {
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.supplier-payment-card[data-v-e67142fd]:hover {
  border-color: #1976d2;
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.12) !important;
}
.account-select-field[data-v-e67142fd] {
  transition: all 0.3s ease;
}
.border-top-dashed[data-v-e67142fd] {
  border-top: 1px dashed #e0e0e0;
}
.hover-rotate:hover .q-icon[data-v-e67142fd] {
  transform: rotate(90deg);
}
.truncate[data-v-e67142fd] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.letter-spacing-1[data-v-e67142fd] {
  letter-spacing: 1px;
}
.line-height-1[data-v-e67142fd] {
  line-height: 1.2;
}
.shadow-xs[data-v-e67142fd] {
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
.search-input[data-v-e67142fd] {
    width: 100%;
}
.search-input[data-v-e67142fd]:focus-within {
    width: 100%;
}
}
.batch-payment-row[data-v-e67142fd] {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-top: 2px solid #1976d2;
}
.batch-payment-footer[data-v-e67142fd] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.batch-summary[data-v-e67142fd] {
  text-align: center;
  flex: 1;
}
.paid-row[data-v-e67142fd] {
  background-color: rgba(76, 175, 80, 0.08) !important;
  opacity: 0.8;
}
.partial-row[data-v-e67142fd] {
  background-color: rgba(255, 152, 0, 0.08) !important;
}
.text-strike[data-v-e67142fd] {
  text-decoration: line-through;
  opacity: 0.6;
}
.payment-status[data-v-e67142fd] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.execute-batch-btn[data-v-e67142fd] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #3d8b40 100%);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.execute-batch-btn[data-v-e67142fd]:hover:not(:disabled) {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 50%, #2e7d32 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}
.execute-batch-btn[data-v-e67142fd]:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}
.execute-batch-btn[data-v-e67142fd]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-content[data-v-e67142fd] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn-text[data-v-e67142fd] {
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn-badge[data-v-e67142fd] {
  margin-left: 8px;
  font-weight: bold;
  animation: pulse-e67142fd 2s infinite;
}
@keyframes pulse-e67142fd {
0% { transform: scale(1);
}
50% { transform: scale(1.1);
}
100% { transform: scale(1);
}
}
@media (max-width: 1024px) {
.batch-payment-footer[data-v-e67142fd] {
    flex-direction: column;
    gap: 16px;
}
.batch-summary[data-v-e67142fd] {
    order: 2;
}
.execute-batch-btn[data-v-e67142fd] {
    width: 100%;
    margin-top: 16px;
}
}

/* Payment Confirmation Modal */
.payment-confirm-dialog .q-dialog__backdrop[data-v-e67142fd] {
  backdrop-filter: blur(2px);
}
.payment-confirmation-card[data-v-e67142fd] {
  min-width: 420px;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.confirm-modal-icon-wrap[data-v-e67142fd] {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(25, 118, 210, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-field[data-v-e67142fd] {
  padding: 10px 14px;
  background: #f8f9fa;
  border-radius: 10px;
}
.confirm-field-label[data-v-e67142fd] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.confirm-field-value[data-v-e67142fd] {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
}
.payment-flow-section[data-v-e67142fd] {
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
.payment-flow-cards[data-v-e67142fd] {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.payment-flow-card[data-v-e67142fd] {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  min-height: 64px;
}
.payment-flow-from[data-v-e67142fd] {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #90caf9;
}
.payment-flow-to[data-v-e67142fd] {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1px solid #81c784;
}
.payment-flow-card-label[data-v-e67142fd] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #455a64;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.payment-flow-card-value[data-v-e67142fd] {
  font-size: 13px;
  font-weight: 600;
  color: #1b5e20;
  word-break: break-word;
}
.payment-flow-from .payment-flow-card-value[data-v-e67142fd] {
  color: #0d47a1;
}
.payment-flow-arrow[data-v-e67142fd] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--q-primary);
}
.amount-highlight[data-v-e67142fd] {
  text-align: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
  border-radius: 12px;
  border: 1px solid #aed581;
}
.amount-highlight-label[data-v-e67142fd] {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #558b2f;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.amount-highlight-value[data-v-e67142fd] {
  font-size: 26px;
  font-weight: 700;
  color: #33691e;
  letter-spacing: -0.5px;
}
.amount-highlight-remainder[data-v-e67142fd] {
  font-size: 12px;
  color: #689f38;
  margin-top: 6px;
}
.confirm-warning[data-v-e67142fd] {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff8e1;
  border-radius: 10px;
  border: 1px solid #ffecb3;
  font-size: 13px;
  color: #f57f17;
}
@media (max-width: 600px) {
.payment-flow-cards[data-v-e67142fd] {
    flex-direction: column;
}
.payment-flow-arrow[data-v-e67142fd] {
    transform: rotate(90deg);
}
.payment-confirmation-card[data-v-e67142fd] {
    min-width: 100%;
    margin: 12px;
}
}

.stat-card-minimal[data-v-d0677bd9] {
  border-radius: 12px;
  background: white;
  border: 1px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-minimal[data-v-d0677bd9]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.stat-line[data-v-d0677bd9] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}
.letter-spacing-1[data-v-d0677bd9] {
  letter-spacing: 1px;
}
.opacity-8[data-v-d0677bd9] {
  opacity: 0.8;
}
.q-table__container[data-v-d0677bd9] {
  max-width: 100%;
  overflow-x: auto;
}

.stat-card-minimal[data-v-b73c9ed2] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-b73c9ed2]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-b73c9ed2] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.opacity-8[data-v-b73c9ed2] { opacity: 0.8;
}
.letter-spacing-1[data-v-b73c9ed2] { letter-spacing: 1px;
}
.filter-card[data-v-b73c9ed2] {
  border-radius: 4px;
}
.border-green[data-v-b73c9ed2] {
  border: 1px solid #2e7d32 !important;
}
.search-input-minimal[data-v-b73c9ed2] .q-field__control {
  border-radius: 4px;
}

/* Table styling */
.enhanced-table .q-table thead th[data-v-b73c9ed2] {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #2e7d32;
  background-color: white;
  border-bottom: 2px solid #2e7d32;
}
.enhanced-table .q-table tbody tr[data-v-b73c9ed2]:hover {
  background-color: #f1f8e9 !important;
}
.enhanced-table .q-table tbody td[data-v-b73c9ed2] {
  font-size: 13.5px;
  border-bottom: 1px solid #e0e0e0;
}
.amount-cell[data-v-b73c9ed2] {
  font-family: 'Roboto Mono', monospace;
  color: #1b5e20;
}

/* Bill View Modal Styles */
.bill-view-card[data-v-b73c9ed2] {
  border-radius: 4px;
  overflow: hidden;
}

/* Enhanced Modal Styles */
.bank-account-modal[data-v-8c00c3f7],
.view-account-modal[data-v-8c00c3f7] {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.q-table__container[data-v-8c00c3f7] {
  max-width: 100%;
  overflow-x: auto;
}
.table-container[data-v-8c00c3f7] {
  border-radius: 12px;
  overflow: hidden;
}
.sticky-header-table[data-v-8c00c3f7] {
  /* height or max-height is important */
  max-height: 70vh;
}
.sticky-header-table thead tr th[data-v-8c00c3f7] {
  position: sticky;
  z-index: 1;
}
.sticky-header-table thead tr:first-child th[data-v-8c00c3f7] {
  top: 0;
}
.bank-account-form[data-v-8c00c3f7] {
  width: 100%;
}

/* Form Section Styling */
.form-section[data-v-8c00c3f7] {
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
}
.form-section[data-v-8c00c3f7]:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.section-title[data-v-8c00c3f7] {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Input Field Enhancements */
.q-input .q-field__control[data-v-8c00c3f7],
.q-select .q-field__control[data-v-8c00c3f7] {
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}
.q-input .q-field__control[data-v-8c00c3f7]:hover,
.q-select .q-field__control[data-v-8c00c3f7]:hover {
  border-color: #3182ce;
}
.q-input--focused .q-field__control[data-v-8c00c3f7],
.q-select--focused .q-field__control[data-v-8c00c3f7] {
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

/* Metric Cards */
.stat-card-minimal[data-v-8c00c3f7] {
  border-radius: 12px;
  background: white;
  border: 1px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-minimal[data-v-8c00c3f7]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.stat-line[data-v-8c00c3f7] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}
.letter-spacing-1[data-v-8c00c3f7] {
  letter-spacing: 1px;
}
.opacity-8[data-v-8c00c3f7] {
  opacity: 0.8;
}
.metric-card[data-v-8c00c3f7] {
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border: 1px solid #edf2f7;
}
.metric-card[data-v-8c00c3f7]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1), 0 8px 8px -5px rgba(0, 0, 0, 0.04);
  border-color: #3182ce;
}

/* Table Styling */
.q-table tbody td[data-v-8c00c3f7] {
  border-bottom: 1px solid #f7fafc;
  padding: 12px 16px;
}
.q-table thead th[data-v-8c00c3f7] {
  font-weight: 700;
  background-color: #f8fafc;
  color: #4a5568;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 12px 16px;
}
.q-table tbody tr[data-v-8c00c3f7]:hover {
  background-color: #ebf8ff;
}

/* Account Summary in View Drawer */
.bank-detail-name[data-v-8c00c3f7] {
  font-size: 22px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 4px;
}
.account-detail-number[data-v-8c00c3f7] {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 15px;
  background: #edf2f7;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* Info Grid */
.info-section[data-v-8c00c3f7] {
  border: 1px solid #edf2f7;
}
.section-header[data-v-8c00c3f7] {
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 2px solid #ebf8ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-item[data-v-8c00c3f7] {
  border-bottom: 1px solid #f7fafc;
}
.info-item[data-v-8c00c3f7]:last-child {
  border-bottom: none;
}
.info-label[data-v-8c00c3f7] {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-value[data-v-8c00c3f7] {
  font-size: 14px;
  font-weight: 600;
}

/* Action Buttons Group */
.action-buttons[data-v-8c00c3f7] {
  display: flex;
  gap: 6px;
  justify-content: center;
}

/* Scrollbar Styling */
[data-v-8c00c3f7]::-webkit-scrollbar {
  width: 8px;
}
[data-v-8c00c3f7]::-webkit-scrollbar-track {
  background: #f7fafc;
}
[data-v-8c00c3f7]::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 4px;
}
[data-v-8c00c3f7]::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* Button Enhancements */
.q-btn[data-v-8c00c3f7] {
  border-radius: 8px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
}
.q-btn--unelevated[data-v-8c00c3f7] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.q-btn[data-v-8c00c3f7]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Search Input */
.search-input .q-field__control[data-v-8c00c3f7] {
  border-radius: 8px;
}

/* Supplier Select */
.supplier-select .q-menu[data-v-8c00c3f7] {
  min-width: 350px;
}
.supplier-display[data-v-8c00c3f7] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.supplier-id[data-v-8c00c3f7] {
  font-weight: 600;
}
.supplier-name[data-v-8c00c3f7] {
  font-size: 13px;
}
.border-blue[data-v-8c00c3f7] {
  border: 1px solid #e3f2fd;
}
.border-grey[data-v-8c00c3f7] {
  border: 1px solid #edf2f7;
}
.border-bottom[data-v-8c00c3f7] {
  border-bottom: 1px solid #f0f0f0;
}
.opacity-80[data-v-8c00c3f7] {
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.metric-card .col[data-v-8c00c3f7] {
    text-align: center;
}
.search-input[data-v-8c00c3f7] {
    width: 100% !important;
}
.q-table tbody td[data-v-8c00c3f7] {
    padding: 8px 4px;
}
.q-table thead th[data-v-8c00c3f7] {
    font-size: 12px;
    padding: 8px 4px;
}
.bank-info[data-v-8c00c3f7] {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
}

/* Animation Enhancements */
.q-dialog__inner--minimized > .q-card[data-v-8c00c3f7] {
  animation: modalSlideIn-8c00c3f7 0.3s ease-out;
}
@keyframes modalSlideIn-8c00c3f7 {
from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
.fit[data-v-8c00c3f7] {
  height: 100%;
  width: 100%;
}
.border-bottom-green[data-v-8c00c3f7] {
  border-bottom: 3px solid #2e7d32 !important;
}

.dashboard-card[data-v-801b6801] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-801b6801]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-801b6801] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-801b6801]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-801b6801] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.action-tile[data-v-801b6801] {
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}
.action-tile[data-v-801b6801]:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: scale(1.02);
  border-color: var(--q-primary);
}
.alert-card-warning[data-v-801b6801] {
  border-left: 4px solid #ff9800;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
}
.alert-card-negative[data-v-801b6801] {
  border-left: 4px solid #f44336;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}
.alert-card-info[data-v-801b6801] {
  border-left: 4px solid #2196f3;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}
.alert-card-success[data-v-801b6801] {
  border-left: 4px solid #4caf50;
  background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
}
.supplier-stat-card[data-v-801b6801] {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.2s ease;
}
.chart-loading[data-v-801b6801] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #666;
}
.text-uppercase-bold[data-v-801b6801] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.calendar-day-card[data-v-801b6801] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.calendar-day-card[data-v-801b6801]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.comparison-card[data-v-801b6801] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
  transition: all 0.2s ease;
}
.comparison-card[data-v-801b6801]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.insight-card[data-v-801b6801] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.insight-card[data-v-801b6801]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.opacity-8[data-v-801b6801] { opacity: 0.8;
}
.full-width[data-v-801b6801] { width: 100%;
}

/* Metric Cards */
.stat-card-minimal[data-v-19b7041d] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-19b7041d]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-19b7041d] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.opacity-8[data-v-19b7041d] { opacity: 0.8;
}
.letter-spacing-1[data-v-19b7041d] { letter-spacing: 1px;
}

/* Filter Section */
.filter-container[data-v-19b7041d] {
  border-radius: 12px;
  background: #fdfdfe;
}
.advanced-filters-box[data-v-19b7041d] {
  padding: 16px;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

/* Table Enhancements */
.table-container[data-v-19b7041d] {
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}
.sticky-header-table[data-v-19b7041d] {
  max-height: 70vh;
  max-width: 100%;
}
.sticky-header-table thead tr th[data-v-19b7041d] {
  position: sticky;
  z-index: 1;
}
.sticky-header-table thead tr:first-child th[data-v-19b7041d] {
  top: 0;
}
.q-table thead th[data-v-19b7041d] {
  font-weight: 700;
  background-color: #f8fafc;
  color: #4a5568;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 12px 16px;
}
.q-table tbody tr[data-v-19b7041d]:hover {
  background-color: #ebf8ff;
}
.status-chip-table[data-v-19b7041d] {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.02em;
}

/* Supplier Details Drawer */
.supplier-view-drawer[data-v-19b7041d],
.supplier-edit-drawer[data-v-19b7041d] {
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
.supplier-view-card[data-v-19b7041d] {
  display: flex;
  flex-direction: column;
}
.bg-primary[data-v-19b7041d] {
  background: #1976d2 !important;
}
.bg-secondary[data-v-19b7041d] {
  background: #26a69a !important;
}
.truncate[data-v-19b7041d] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.opacity-80[data-v-19b7041d] {
  opacity: 0.8;
}
.border-blue[data-v-19b7041d] {
  border: 1px solid #e3f2fd;
}
.border-grey[data-v-19b7041d] {
  border: 1px solid #edf2f7;
}
.border-amber[data-v-19b7041d] {
  border: 1px solid #fff8e1;
}
.details-grid[data-v-19b7041d] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.detail-item[data-v-19b7041d] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-label[data-v-19b7041d] {
  font-size: 11px;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.detail-value[data-v-19b7041d] {
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
}
.balance-display[data-v-19b7041d] {
  font-size: 28px;
  font-weight: 800;
  color: #2d3748;
}
.balance-display.text-negative[data-v-19b7041d] {
  color: #e53e3e;
}
.address-display[data-v-19b7041d] {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  padding: 12px;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.form-section-modern[data-v-19b7041d] {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
}
.form-section-modern[data-v-19b7041d]:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.section-title-modern[data-v-19b7041d] {
  font-size: 13px;
  font-weight: 800;
  color: #4a5568;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.details-section-modern[data-v-19b7041d] {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
}
.details-section-modern[data-v-19b7041d]:hover {
  border-color: #3182ce;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.section-header-modern[data-v-19b7041d] {
  font-size: 13px;
  font-weight: 800;
  color: #4a5568;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf2f7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.hover-bg-grey-light[data-v-19b7041d]:hover {
  background-color: #f7fafc;
}
.border-dashed-grey[data-v-19b7041d] {
  border: 1px dashed #e2e8f0;
}
.shadow-transition[data-v-19b7041d] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-shadow[data-v-19b7041d]:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.line-height-relaxed[data-v-19b7041d] {
  line-height: 1.625;
}
.shadow-sm[data-v-19b7041d] {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow-2[data-v-19b7041d] {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.modern-ledger-table[data-v-19b7041d] {
  border-radius: 12px;
  overflow: hidden;
}
.modern-ledger-table thead th[data-v-19b7041d] {
  background-color: #f8fafc;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #4a5568;
}
.summary-card-modern[data-v-19b7041d] {
  border: 1px solid #edf2f7;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.sticky-top[data-v-19b7041d] {
  position: sticky;
  top: 0;
}
.z-top[data-v-19b7041d] {
  z-index: 10;
}
.border-bottom[data-v-19b7041d] {
  border-bottom: 1px solid #edf2f7;
}
.line-height-relaxed[data-v-19b7041d] {
  line-height: 1.625;
}
.shadow-2[data-v-19b7041d] {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.supplier-ledger-drawer .q-drawer__content[data-v-19b7041d] {
  background: #f5f7fb;
  overflow-x: hidden;
}
.supplier-ledger-drawer[data-v-19b7041d] {
  max-width: 96vw;
}
.supplier-ledger-drawer .q-scrollarea__container[data-v-19b7041d] {
  overflow-x: hidden;
}
.selected-supplier[data-v-19b7041d] {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 3px solid #2196f3;
}
.ledger-card[data-v-19b7041d] {
  min-height: 100vh;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.ledger-header[data-v-19b7041d] {
  background: #ffffff;
  border-bottom: 1px solid #e6e9f0;
  padding: 16px 20px;
}
.ledger-title[data-v-19b7041d] {
  font-size: 20px;
  font-weight: 700;
  color: #1f2933;
  display: flex;
  align-items: center;
  gap: 8px;
}
.supplier-name[data-v-19b7041d] {
  font-size: 15px;
  font-weight: 600;
  color: #3b4a5a;
}
.supplier-code[data-v-19b7041d] {
  font-size: 12px;
  color: #738096;
  margin-top: 2px;
}
.status-chip[data-v-19b7041d] {
  font-weight: 700;
  letter-spacing: 0.3px;
}
.entries-chip[data-v-19b7041d] {
  background: #eef1f7;
  color: #1f2933;
  font-weight: 600;
  border-radius: 14px;
}
.close-btn[data-v-19b7041d] {
  color: #606f7b !important;
}
.summary-section[data-v-19b7041d] {
  padding: 16px 20px 8px;
  background: #f7f9fc;
  border-bottom: 1px solid #e6e9f0;
}
.summary-grid[data-v-19b7041d] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.summary-card[data-v-19b7041d] {
  border: 1px solid #e6e9f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px -16px rgba(31, 41, 51, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.summary-card[data-v-19b7041d]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(31, 41, 51, 0.28);
}
.summary-label[data-v-19b7041d] {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #7a8699;
  margin-top: 6px;
}
.summary-value[data-v-19b7041d] {
  font-size: 18px;
  font-weight: 700;
  color: #1f2933;
}
.text-red-6[data-v-19b7041d] {
  color: #e05a5a !important;
}
.text-green-6[data-v-19b7041d] {
  color: #4caf50 !important;
}
.text-blue-6[data-v-19b7041d] {
  color: #3a7bd5 !important;
}
.filters-section[data-v-19b7041d] {
  padding: 16px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e6e9f0;
}
.filters-section .q-btn[data-v-19b7041d] {
  border-radius: 8px;
  font-weight: 600;
}
.date-filter .q-field__control[data-v-19b7041d] {
  border-radius: 8px;
}
.table-section[data-v-19b7041d] {
  padding: 20px;
  background: #ffffff;
}
.ledger-table[data-v-19b7041d] {
  border-radius: 10px;
  box-shadow: 0 8px 24px -18px rgba(31, 41, 51, 0.28);
  overflow: hidden;
  width: 100%;
}
.ledger-table thead th[data-v-19b7041d] {
  background: #f9fafc;
  font-weight: 700;
  color: #374151;
  border-bottom: 1px solid #e6e9f0;
  padding: 12px 14px;
}
.ledger-table tbody td[data-v-19b7041d] {
  padding: 10px 14px;
}
.ledger-table tbody tr:hover td[data-v-19b7041d] {
  background: #f7f9fc;
}
.description-cell-td[data-v-19b7041d] {
  max-width: 320px;
}
.description-text-truncated[data-v-19b7041d] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12.5px;
  line-height: 1.3;
  word-break: break-word;
}
.custom-tooltip[data-v-19b7041d] {
  max-width: 620px;
  font-size: 12px;
}
.entry-type-chip[data-v-19b7041d] {
  font-size: 10px;
  height: 20px;
  padding: 0 7px;
  border-radius: 10px;
}
.amount-cell[data-v-19b7041d] {
  font-size: 14px;
  font-weight: 600;
}
.balance-amount[data-v-19b7041d] {
  font-size: 15px;
  font-weight: 700;
}
.no-data-message[data-v-19b7041d] {
  padding: 32px 20px;
  margin: 12px 0;
  background: #f7f9fc;
  border: 1px dashed #d7dce5;
  border-radius: 10px;
}
.q-table__bottom[data-v-19b7041d] {
  background: #ffffff;
  border-top: 1px solid #e6e9f0;
}
@media (max-width: 900px) {
.summary-grid[data-v-19b7041d] {
    grid-template-columns: repeat(2, 1fr);
}
.table-section[data-v-19b7041d] {
    padding: 16px;
}
}
@media (max-width: 640px) {
.summary-grid[data-v-19b7041d] {
    grid-template-columns: 1fr;
}
.ledger-header .row[data-v-19b7041d] {
    gap: 10px;
}
}
.border-bottom-green[data-v-19b7041d] {
  border-bottom: 3px solid #2e7d32 !important;
}

.q-table__container[data-v-f87c45c5] {
  max-width: 100%;
  overflow-x: auto;
}
.stat-card-minimal[data-v-f87c45c5] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-f87c45c5]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-f87c45c5] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.opacity-8[data-v-f87c45c5] { opacity: 0.8;
}
.letter-spacing-1[data-v-f87c45c5] { letter-spacing: 1px;
}
/* ===== IMAGE STYLING ===== */
.weighbridge-photo-container[data-v-f87c45c5] {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}
.weighbridge-photo[data-v-f87c45c5] {
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.weighbridge-photo[data-v-f87c45c5]:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 1);
}
.image-overlay[data-v-f87c45c5] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
.weighbridge-photo-container:hover .image-overlay[data-v-f87c45c5] {
  opacity: 1;
}
.overlay-text[data-v-f87c45c5] {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* Table photo thumbnails */
.weighbridge-table-photo[data-v-f87c45c5] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}
.table-photo-thumbnail[data-v-f87c45c5] {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.table-photo-thumbnail[data-v-f87c45c5]:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 123, 255, 0.3);
}

/* Full screen image modal */
.full-image-modal .full-image-container[data-v-f87c45c5] {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
}
.full-image-modal .close-btn[data-v-f87c45c5] {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.full-image-modal .close-btn[data-v-f87c45c5]:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.6);
}
.full-image-modal .full-size-image[data-v-f87c45c5] {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.clickable-image[data-v-f87c45c5] {
  cursor: pointer;
}

/* ===== LOADING & SKELETON STATES ===== */
.loading-skeleton[data-v-f87c45c5] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-f87c45c5 1.5s infinite;
  border-radius: 8px;
}
@keyframes loading-f87c45c5 {
0% { background-position: 200% 0;
}
100% { background-position: -200% 0;
}
}
.image-loading[data-v-f87c45c5] {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.1);
}
.image-loading .q-spinner[data-v-f87c45c5] {
  color: rgba(0, 0, 0, 0.3);
}
.loading-text[data-v-f87c45c5] {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 14px;
}
.loading-overlay[data-v-f87c45c5] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}
.loading-content[data-v-f87c45c5] {
  text-align: center;
}

/* ===== ENHANCED CARD STYLING ===== */
.q-card[data-v-f87c45c5] {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}
.q-card[data-v-f87c45c5]:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

/* Enhanced section headers */
.section-header[data-v-f87c45c5] {
  color: #1976d2;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header .q-icon[data-v-f87c45c5] {
  color: #1976d2;
}

/* ===== STATUS INDICATORS ===== */
.status-indicator[data-v-f87c45c5] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-indicator.positive[data-v-f87c45c5] {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
}
.status-indicator.warning[data-v-f87c45c5] {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
}
.status-indicator.negative[data-v-f87c45c5] {
  background: linear-gradient(135deg, #f44336, #d32f2f);
  color: white;
}
.status-indicator.info[data-v-f87c45c5] {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
.weighbridge-photo[data-v-f87c45c5] {
    height: 150px;
}
.full-image-modal .full-size-image[data-v-f87c45c5] {
    max-width: 95vw;
    max-height: 95vh;
}
.weighbridge-photo-container[data-v-f87c45c5] {
    max-width: 100%;
}
}
@media (max-width: 480px) {
.weighbridge-photo[data-v-f87c45c5] {
    height: 120px;
}
.table-photo-thumbnail[data-v-f87c45c5] {
    width: 40px;
    height: 40px;
}
}

/* ===== IMPROVED TABLE STYLING ===== */
.enhanced-table .q-table tbody tr[data-v-f87c45c5] {
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 2px;
}
.enhanced-table .q-table tbody tr[data-v-f87c45c5]:hover {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.06), rgba(25, 118, 210, 0.03)) !important;
  transform: translateX(4px) scale(1.01);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}
.enhanced-table .q-table tbody tr:hover td[data-v-f87c45c5] {
  border-bottom-color: rgba(25, 118, 210, 0.2);
}

/* ===== ENHANCED BADGES AND CHIPS ===== */
.q-badge[data-v-f87c45c5] {
  border-radius: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}
.q-chip[data-v-f87c45c5] {
  border-radius: 16px !important;
  font-weight: 500 !important;
}

/* ===== IMPROVED BUTTONS ===== */
.q-btn[data-v-f87c45c5] {
  border-radius: 8px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
}
.q-btn.unelevated[data-v-f87c45c5] {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.q-btn[data-v-f87c45c5]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* ===== PROGRESS INDICATORS ===== */
.q-linear-progress[data-v-f87c45c5] {
  border-radius: 4px !important;
}
.q-circular-progress[data-v-f87c45c5] {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* ===== MODAL IMPROVEMENTS ===== */
.q-dialog .q-card[data-v-f87c45c5] {
  border-radius: 16px !important;
  overflow: hidden;
}
.modal-header[data-v-f87c45c5] {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== ICON ENHANCEMENTS ===== */
.q-icon[data-v-f87c45c5] {
  transition: all 0.2s ease;
}
.q-icon[data-v-f87c45c5]:hover {
  transform: scale(1.1);
}

/* ===== TEXT IMPROVEMENTS ===== */
.text-primary[data-v-f87c45c5] {
  color: #1976d2 !important;
}
.text-secondary[data-v-f87c45c5] {
  color: #757575 !important;
}

/* ===== ANIMATION ENHANCEMENTS ===== */
.fade-enter-active[data-v-f87c45c5], .fade-leave-active[data-v-f87c45c5] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-f87c45c5], .fade-leave-to[data-v-f87c45c5] {
  opacity: 0;
}
.slide-up-enter-active[data-v-f87c45c5], .slide-up-leave-active[data-v-f87c45c5] {
  transition: all 0.3s ease;
}
.slide-up-enter-from[data-v-f87c45c5] {
  transform: translateY(20px);
  opacity: 0;
}
.slide-up-leave-to[data-v-f87c45c5] {
  transform: translateY(-20px);
  opacity: 0;
}

/* ===== FOCUS STATES ===== */
.q-input:focus-within .q-field__control[data-v-f87c45c5] {
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2) !important;
}

/* ===== SCROLLBAR STYLING ===== */
[data-v-f87c45c5]::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
[data-v-f87c45c5]::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
[data-v-f87c45c5]::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
[data-v-f87c45c5]::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* ===== HISTORY DRAWER STYLING ===== */
.history-table .q-table tbody tr[data-v-f87c45c5]:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.04)) !important;
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
  transition: all 0.3s ease;
}
.history-drawer .q-splitter__before[data-v-f87c45c5] {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.history-drawer .q-splitter__after[data-v-f87c45c5] {
  background: #ffffff;
}

/* Filter section styling */
.filter-section[data-v-f87c45c5] {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.filter-section .text-subtitle2[data-v-f87c45c5] {
  color: #1976d2;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Enhanced date picker */
.q-date[data-v-f87c45c5] {
  border-radius: 8px !important;
}
.q-date .q-field__control[data-v-f87c45c5] {
  border-radius: 8px !important;
}

/* Full width button styling */
.full-width[data-v-f87c45c5] {
  width: 100%;
}

/* Enhanced table styling for history */
.history-table .q-table thead th[data-v-f87c45c5] {
  background: rgba(76, 175, 80, 0.1);
  font-weight: 600;
  color: #2e7d32;
}
.history-table .q-table tbody td[data-v-f87c45c5] {
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

/* Loading state improvements */
.history-loading[data-v-f87c45c5] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.history-loading .q-spinner[data-v-f87c45c5] {
  margin-bottom: 16px;
}

/* Empty state styling */
.history-empty[data-v-f87c45c5] {
  text-align: center;
  padding: 60px 20px;
}
.history-empty .q-icon[data-v-f87c45c5] {
  font-size: 4em;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}
.history-empty .text-h6[data-v-f87c45c5] {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}
.history-empty .text-body1[data-v-f87c45c5] {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}
.history-empty .text-caption[data-v-f87c45c5] {
  color: rgba(0, 0, 0, 0.4);
}

/* Export button styling */
.export-btn[data-v-f87c45c5] {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  color: white;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 500;
}
.export-btn[data-v-f87c45c5]:hover {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
.border-bottom-green[data-v-f87c45c5] {
  border-bottom: 3px solid #2e7d32 !important;
}

.stat-card-minimal[data-v-d73a191f] {
  border-radius: 12px;
  background: white;
  border: 1px solid #edf2f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stat-card-minimal[data-v-d73a191f]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.stat-line[data-v-d73a191f] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.8;
}
.letter-spacing-1[data-v-d73a191f] {
  letter-spacing: 1px;
}
.opacity-8[data-v-d73a191f] {
  opacity: 0.8;
}
.search-input[data-v-d73a191f] {
  min-width: 200px;
}

.metric-card[data-v-020b1d28] {
  transition: all 0.3s ease;
}
.metric-card[data-v-020b1d28]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.full-width[data-v-020b1d28] {
  width: 100%;
}
.sparkline-container[data-v-020b1d28] {
  width: 100%;
}
.sparkline[data-v-020b1d28] {
  width: 100%;
  height: 160px;
  display: block;
}
.bar-chart[data-v-020b1d28] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}
.bar[data-v-020b1d28] {
  text-align: center;
}
.bar-col[data-v-020b1d28] {
  height: 140px;
  background: #f0f2f5;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bar-fill[data-v-020b1d28] {
  width: 70%;
  border-radius: 4px 4px 0 0;
  transition: height 0.2s ease;
}

.metric-card[data-v-4e19d496] {
  transition: all 0.3s ease;
}
.metric-card[data-v-4e19d496]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-input .q-field__control[data-v-4e19d496] {
  border-radius: 8px;
}

/* Amount cells */
.balance-cell[data-v-4e19d496] {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #1976d2;
}

/* Credit info */
.credit-info[data-v-4e19d496] {
  max-width: 200px;
}
.credit-limit[data-v-4e19d496] {
  font-weight: 600;
  color: #1976d2;
}
.credit-utilization[data-v-4e19d496] {
  font-size: 12px;
  margin-top: 2px;
}

/* Activity cells */
.activity-cell[data-v-4e19d496] {
  max-width: 120px;
}
.activity-date[data-v-4e19d496] {
  font-size: 14px;
  font-weight: 500;
}
.activity-days[data-v-4e19d496] {
  margin-top: 2px;
}

/* Action buttons */
.action-buttons[data-v-4e19d496] {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* Form sections */
.form-section[data-v-4e19d496] {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e1e5e9;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.section-header[data-v-4e19d496] {
  font-size: 16px;
  font-weight: 600;
  color: #37474f;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e3f2fd;
}
.form-grid[data-v-4e19d496] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* Status grid */
.status-grid[data-v-4e19d496] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.status-item[data-v-4e19d496] {
  text-align: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}
.status-label[data-v-4e19d496] {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.status-value[data-v-4e19d496] {
  font-size: 18px;
  font-weight: 600;
  color: #1976d2;
}

/* Adjustment form */
.adjustment-form[data-v-4e19d496] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.full-width[data-v-4e19d496] {
  width: 100%;
}

/* Detail sections */
.detail-section[data-v-4e19d496] {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e1e5e9;
  margin-bottom: 16px;
}
.detail-grid[data-v-4e19d496] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.detail-item[data-v-4e19d496] {
  margin-bottom: 12px;
}
.detail-label[data-v-4e19d496] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.detail-value[data-v-4e19d496] {
  font-size: 16px;
  font-weight: 500;
  color: #37474f;
}

/* Address display */
.address-display[data-v-4e19d496] {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
}
.address-line[data-v-4e19d496] {
  margin-bottom: 4px;
  font-size: 14px;
}
.address-line[data-v-4e19d496]:last-child {
  margin-bottom: 0;
}

/* Enhanced table styling */
.q-table tbody tr[data-v-4e19d496]:hover {
  background-color: #f8f9fa;
}

/* Badge styling */
.q-badge[data-v-4e19d496] {
  font-weight: 500;
  text-transform: capitalize;
}

/* Chip styling */
.q-chip[data-v-4e19d496] {
  font-weight: 500;
  text-transform: capitalize;
}

/* Full Screen Dialog Styles */
.full-screen-card[data-v-4e19d496] {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.full-screen-header[data-v-4e19d496] {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e1e5e9;
  flex-shrink: 0;
}
.full-screen-content[data-v-4e19d496] {
  flex: 1;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
}
.full-screen-footer[data-v-4e19d496] {
  background: #ffffff;
  border-top: 1px solid #e1e5e9;
  flex-shrink: 0;
}

/* Customer Selection Dialog */
.customer-selection-dialog .q-card[data-v-4e19d496] {
  min-width: 600px;
  max-width: 800px;
}
.customer-list[data-v-4e19d496] {
  max-height: 400px;
  overflow-y: auto;
}
.customer-item[data-v-4e19d496] {
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.customer-item[data-v-4e19d496]:hover {
  background-color: #f8f9fa;
}
.customer-balance[data-v-4e19d496] {
  text-align: right;
}
.balance-amount[data-v-4e19d496] {
  font-size: 16px;
  font-weight: 600;
}
.balance-label[data-v-4e19d496] {
  font-size: 12px;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.metric-card .col[data-v-4e19d496] {
    text-align: center;
}
.search-input[data-v-4e19d496] {
    width: 100% !important;
}
.q-table tbody td[data-v-4e19d496] {
    padding: 8px 4px;
}
.q-table thead th[data-v-4e19d496] {
    font-size: 12px;
    padding: 8px 4px;
}
.form-grid[data-v-4e19d496] {
    grid-template-columns: 1fr;
}
.status-grid[data-v-4e19d496] {
    grid-template-columns: 1fr;
}
.detail-grid[data-v-4e19d496] {
    grid-template-columns: 1fr;
}
.credit-info[data-v-4e19d496] {
    max-width: 150px;
}
.activity-cell[data-v-4e19d496] {
    max-width: 100px;
}
}
.add-funds-list[data-v-4e19d496] {
  max-height: 68vh;
  overflow-y: auto;
}
.file-preview-list[data-v-4e19d496] {
  display:flex;
  flex-wrap:wrap;
  gap:16px 18px;
}
.file-preview-item[data-v-4e19d496] {
  max-width: 90px;
  margin-bottom: 10px;
}
.add-funds-summarybar[data-v-4e19d496] {
  border-top: 1.5px solid #e3f2fd;
  box-shadow: 0 -3px 24px rgba(20,24,64,0.05) !important;
}
.add-funds-btn-glow[data-v-4e19d496]:hover,
.add-funds-btn-glow[data-v-4e19d496]:focus {
  box-shadow: 0 0 0 2px #e3f2fd, 0 2px 10px #1976d233;
  transition: box-shadow .21s cubic-bezier(.4,.5,.2,1);
}
.amount-input-huge input[data-v-4e19d496] {
  font-size:2.1rem!important;
  font-weight:600;
  letter-spacing:.1ch;
}
/* SuppliersPage-like styles */
.stat-card-minimal[data-v-4e19d496] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-4e19d496]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-4e19d496] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.filter-container[data-v-4e19d496] {
  border-radius: 12px;
  background: #fdfdfe;
}
.advanced-filters-box[data-v-4e19d496] {
  padding: 16px;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.table-container[data-v-4e19d496] {
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}
.sticky-header-table[data-v-4e19d496] {
  max-height: 70vh;
  max-width: 100%;
}
.status-chip-table[data-v-4e19d496] {
  font-weight: 500;
  text-transform: capitalize;
}

/* Customer View Drawer Styles */
.customer-view-drawer .q-drawer__content[data-v-4e19d496] {
  background: #f5f7fb;
  overflow-x: hidden;
}
.customer-view-drawer[data-v-4e19d496] {
  max-width: 96vw;
}
.customer-view-drawer .q-scrollarea__container[data-v-4e19d496] {
  overflow-x: hidden;
}

/* Modern sections */
.details-section-modern[data-v-4e19d496] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}
.details-section-modern[data-v-4e19d496]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.section-header-modern[data-v-4e19d496] {
  font-size: 16px;
  font-weight: 600;
  color: #37474f;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e3f2fd;
}
.address-display-modern[data-v-4e19d496] {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
}
.address-line-modern[data-v-4e19d496] {
  margin-bottom: 4px;
  font-size: 14px;
}
.address-line-modern[data-v-4e19d496]:last-child {
  margin-bottom: 0;
}
.financial-grid[data-v-4e19d496] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.financial-item[data-v-4e19d496] {
  text-align: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
}
.financial-label[data-v-4e19d496] {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.financial-value[data-v-4e19d496] {
  font-size: 18px;
  font-weight: 600;
  color: #1976d2;
}
.border-bottom-green[data-v-4e19d496] {
  border-bottom: 3px solid #4caf50;
}
.shadow-transition[data-v-4e19d496] {
  transition: box-shadow 0.2s ease;
}
.hover-shadow[data-v-4e19d496]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
@media (max-width:900px){.add-funds-list[data-v-4e19d496]{padding-left:.5rem;padding-right:.5rem;}}
@media (max-width:600px){.add-funds-list[data-v-4e19d496]{padding-left:0;padding-right:0;}
.full-screen-content[data-v-4e19d496]{padding:0 !important;}}

/* Add Funds Modal Styles */
.add-funds-modal[data-v-4e19d496] {
  min-width: 600px;
  max-width: 90vw;
}
.add-funds-form[data-v-4e19d496] {
  max-width: none;
}
.add-funds-form .form-section[data-v-4e19d496] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.add-funds-form .section-title[data-v-4e19d496] {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
}
.add-funds-form .q-field[data-v-4e19d496] {
  margin-bottom: 12px;
}
.add-funds-form .q-field__control[data-v-4e19d496] {
  border-radius: 6px;
}
.border-blue[data-v-4e19d496] {
  border-color: #2196f3 !important;
}

/* Customer Ledger Drawer Styles */
.customer-ledger-drawer .q-drawer__content[data-v-4e19d496] {
  background: #f5f7fb;
  overflow-x: hidden;
}
.customer-ledger-drawer[data-v-4e19d496] {
  max-width: 96vw;
}
.customer-ledger-drawer .q-scrollarea__container[data-v-4e19d496] {
  overflow-x: hidden;
}
.selected-customer[data-v-4e19d496] {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 3px solid #2196f3;
}
.ledger-card[data-v-4e19d496] {
  min-height: 100vh;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.ledger-header[data-v-4e19d496] {
  background: #ffffff;
  border-bottom: 1px solid #e6e9f0;
  padding: 16px 20px;
}
.summary-card-modern[data-v-4e19d496] {
  transition: all 0.2s ease;
}
.summary-card-modern[data-v-4e19d496]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.modern-ledger-table[data-v-4e19d496] {
  border-radius: 8px;
  overflow: hidden;
}
.modern-ledger-table thead th[data-v-4e19d496] {
  background: #f8f9fa;
  font-weight: 600;
  color: #37474f;
}
.modern-ledger-table tbody tr[data-v-4e19d496]:hover {
  background: #f8f9fa;
}
.sticky-top[data-v-4e19d496] {
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}
.z-top[data-v-4e19d496] {
  z-index: 1000;
}
.border-bottom[data-v-4e19d496] {
  border-bottom: 1px solid #e0e0e0;
}
.border-grey[data-v-4e19d496] {
  border: 1px solid #e0e0e0;
}
.border-bottom-green[data-v-4e19d496] {
  border-bottom: 3px solid #4caf50;
}

/* Customer Modal Styling */
.customer-modal[data-v-4e19d496] {
  min-width: 700px;
  max-width: 90vw;
}
.customer-form[data-v-4e19d496] {
  max-width: none;
}
.form-section[data-v-4e19d496] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.section-title[data-v-4e19d496] {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 500;
}
.customer-form .q-field[data-v-4e19d496] {
  margin-bottom: 16px;
}
.customer-form .q-field__control[data-v-4e19d496] {
  border-radius: 6px;
}
.customer-form .q-btn[data-v-4e19d496] {
  border-radius: 6px;
  font-weight: 500;
}

/* Responsive Dialog */
@media (max-width: 1024px) {
.customer-dialog-card[data-v-4e19d496] {
    margin: 16px;
    min-height: 90vh;
}
}
@media (max-width: 600px) {
.customer-form .row.q-col-gutter-lg > .col-12[data-v-4e19d496] {
    padding-left: 8px;
    padding-right: 8px;
}
}

.q-page[data-v-9173e71d] {
  max-width: 1200px;
  margin: 0 auto;
}

/* Stat Cards */
.stat-card-minimal[data-v-9173e71d] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-9173e71d]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-9173e71d] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Filter Container */
.filter-container[data-v-9173e71d] {
  border-radius: 12px;
  background: #fdfdfe;
}
.search-input[data-v-9173e71d] {
  border-radius: 8px;
}
.advanced-filters-box[data-v-9173e71d] {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

/* Table */
.table-container[data-v-9173e71d] {
  border-radius: 12px;
}
.sticky-header-table[data-v-9173e71d] {
  border-radius: 12px;
}
.customer-count-chip[data-v-9173e71d] {
  font-size: 12px;
  padding: 4px 8px;
}
.status-chip-table[data-v-9173e71d] {
  font-size: 11px;
  padding: 2px 6px;
}
.action-buttons[data-v-9173e71d] {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* Drawer Styles */
.group-view-drawer .q-drawer__content[data-v-9173e71d] {
  background: #f5f5f5;
}
.group-view-card[data-v-9173e71d] {
  background: white;
}
.border-bottom-green[data-v-9173e71d] {
  border-bottom: 3px solid #4caf50;
}

/* Dialog Styles */
.group-dialog[data-v-9173e71d] {
  min-width: 600px;
  max-width: 800px;
}
.group-form[data-v-9173e71d] {
  max-width: none;
}

/* Details Section */
.details-section-modern[data-v-9173e71d] {
  background: #fafafa;
  border-left: 4px solid #4caf50;
}
.section-header-modern[data-v-9173e71d] {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.info-grid[data-v-9173e71d] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-item[data-v-9173e71d] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label[data-v-9173e71d] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value[data-v-9173e71d] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Shadow transitions */
.shadow-transition[data-v-9173e71d] {
  transition: box-shadow 0.2s ease;
}
.hover-shadow[data-v-9173e71d]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.q-page[data-v-9173e71d] {
    padding: 16px;
}
.info-grid[data-v-9173e71d] {
    grid-template-columns: 1fr;
}
.action-buttons[data-v-9173e71d] {
    flex-direction: column;
    align-items: center;
}
}

/* Print styles */
@media print {
.q-btn[data-v-9173e71d] {
    display: none !important;
}
.q-dialog[data-v-9173e71d] {
    display: none !important;
}
.q-drawer[data-v-9173e71d] {
    display: none !important;
}
.q-banner[data-v-9173e71d] {
    display: none !important;
}
.q-notifications[data-v-9173e71d] {
    display: none !important;
}
.q-page[data-v-9173e71d] {
    margin: 0;
    max-width: none;
}
.q-card[data-v-9173e71d] {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
}
.q-separator[data-v-9173e71d] {
    display: none !important;
}
}

.q-page[data-v-f17fd8e5] {
  max-width: 1200px;
  margin: 0 auto;
}

/* Stat Cards */
.stat-card-minimal[data-v-f17fd8e5] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-f17fd8e5]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-f17fd8e5] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Filter Container */
.filter-container[data-v-f17fd8e5] {
  border-radius: 12px;
  background: #fdfdfe;
}
.search-input[data-v-f17fd8e5] {
  border-radius: 8px;
}
.advanced-filters-box[data-v-f17fd8e5] {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

/* Table */
.table-container[data-v-f17fd8e5] {
  border-radius: 12px;
}
.credit-limits-table[data-v-f17fd8e5] {
  border-radius: 12px;
}

/* Info Grid */
.info-grid[data-v-f17fd8e5] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.info-item[data-v-f17fd8e5] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label[data-v-f17fd8e5] {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value[data-v-f17fd8e5] {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Details sections */
.details-section-modern[data-v-f17fd8e5] {
  border-radius: 8px;
  border-left: 4px solid #2196f3;
}
.section-header-modern[data-v-f17fd8e5] {
  color: #2196f3;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Customer info display */
.customer-info-display[data-v-f17fd8e5] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* Dialog styles */
.credit-limit-dialog[data-v-f17fd8e5] {
  min-width: 600px;
  max-width: 800px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.q-page[data-v-f17fd8e5] {
    padding: 16px;
}
.info-grid[data-v-f17fd8e5] {
    grid-template-columns: 1fr;
}
.credit-limit-dialog[data-v-f17fd8e5] {
    min-width: 95vw;
    max-width: 95vw;
}
}

/* Print styles */
@media print {
.q-btn[data-v-f17fd8e5] {
    display: none !important;
}
.q-dialog[data-v-f17fd8e5] {
    display: none !important;
}
.q-drawer[data-v-f17fd8e5] {
    display: none !important;
}
.q-banner[data-v-f17fd8e5] {
    display: none !important;
}
.q-notifications[data-v-f17fd8e5] {
    display: none !important;
}
.q-page[data-v-f17fd8e5] {
    margin: 0;
    max-width: none;
}
.q-card[data-v-f17fd8e5] {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
}
.q-separator[data-v-f17fd8e5] {
    display: none !important;
}
}

.q-page[data-v-8e5c1741] {
  max-width: 1200px;
  margin: 0 auto;
}

/* Stat Cards */
.stat-card-minimal[data-v-8e5c1741] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-8e5c1741]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-8e5c1741] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Filter Container */
.filter-container[data-v-8e5c1741] {
  border-radius: 12px;
  background: #fdfdfe;
}
.search-input[data-v-8e5c1741] {
  border-radius: 8px;
}
.advanced-filters-box[data-v-8e5c1741] {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

/* Table */
.table-container[data-v-8e5c1741] {
  border-radius: 12px;
}
.sticky-header-table[data-v-8e5c1741] {
  border-radius: 12px;
}
.type-chip-table[data-v-8e5c1741] {
  font-size: 11px;
  padding: 2px 6px;
}
.status-chip-table[data-v-8e5c1741] {
  font-size: 11px;
  padding: 2px 6px;
}
.action-buttons[data-v-8e5c1741] {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* Drawer Styles */
.list-view-drawer .q-drawer__content[data-v-8e5c1741] {
  background: #f5f5f5;
}
.list-view-card[data-v-8e5c1741] {
  background: white;
}
.border-bottom-green[data-v-8e5c1741] {
  border-bottom: 3px solid #4caf50;
}

/* Dialog Styles */
.list-dialog[data-v-8e5c1741] {
  min-width: 600px;
  max-width: 800px;
}
.list-form[data-v-8e5c1741] {
  max-width: none;
}

/* Regional Pricing Cards */
.regional-price-card[data-v-8e5c1741] {
  transition: all 0.2s ease;
}
.regional-price-card[data-v-8e5c1741]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.general-price-card[data-v-8e5c1741] {
  border: 2px solid #e0e0e0;
}
.settings-card[data-v-8e5c1741] {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}
.bom-details-dialog[data-v-8e5c1741] {
  min-width: 700px;
  max-width: 900px;
}
.info-card[data-v-8e5c1741] {
  height: 100%;
}
.description-card[data-v-8e5c1741] {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.info-grid-simple[data-v-8e5c1741] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-row[data-v-8e5c1741] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 4px;
}
.info-row .label[data-v-8e5c1741] {
  color: #757575;
  font-size: 12px;
}
.info-row .value[data-v-8e5c1741] {
  font-size: 13px;
  color: #212121;
}
.view-region-card[data-v-8e5c1741] {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 8px;
}
.view-region-card[data-v-8e5c1741]:hover {
  border-color: var(--q-primary);
  background: #fdfdfe;
}
.italic[data-v-8e5c1741] {
  font-style: italic;
}
.h-100[data-v-8e5c1741] {
  height: 100%;
}
.opacity-4[data-v-8e5c1741] {
  opacity: 0.4;
  pointer-events: none;
}
.pricing-dialog-maximized[data-v-8e5c1741] {
  max-width: 100vw !important;
  max-height: 100vh !important;
}
.sticky-header[data-v-8e5c1741] {
  position: sticky;
  top: 0;
  z-index: 100;
}
.scroll-area-dialog[data-v-8e5c1741] {
  height: calc(100vh - 80px);
  overflow-y: auto;
}
.max-width-container[data-v-8e5c1741] {
  max-width: 1200px;
}
.mx-auto[data-v-8e5c1741] {
  margin-left: auto;
  margin-right: auto;
}
.border-bottom-green[data-v-8e5c1741] {
  border-bottom: 3px solid #2e7d32;
}
.border-left-primary[data-v-8e5c1741] {
  border-left: 4px solid var(--q-primary);
}
.settings-card[data-v-8e5c1741] {
  background: white;
}
.product-context-box[data-v-8e5c1741] {
  border: 1px dashed var(--q-primary);
}
.region-pricing-card[data-v-8e5c1741] {
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.region-pricing-card[data-v-8e5c1741]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}
.price-input-large[data-v-8e5c1741] .q-field__native {
  font-size: 20px;
  font-weight: bold;
  color: var(--q-primary);
}
.price-input-extra-large[data-v-8e5c1741] .q-field__native {
  font-size: 24px;
  font-weight: 900;
  color: white;
}
.opacity-8[data-v-8e5c1741] {
  opacity: 0.8;
}
.border-dashed[data-v-8e5c1741] {
  border: 1px dashed #e0e0e0;
}
.pricing-view-drawer[data-v-8e5c1741] {
  background-color: #f8f9fa;
}
.pricing-view-card[data-v-8e5c1741] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.truncate[data-v-8e5c1741] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 350px;
}

/* Details Section */
.details-section-modern[data-v-8e5c1741] {
  background: #fafafa;
  border-left: 4px solid #4caf50;
}
.section-header-modern[data-v-8e5c1741] {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.info-grid[data-v-8e5c1741] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-item[data-v-8e5c1741] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label[data-v-8e5c1741] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value[data-v-8e5c1741] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Shadow transitions */
.shadow-transition[data-v-8e5c1741] {
  transition: box-shadow 0.2s ease;
}
.hover-shadow[data-v-8e5c1741]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.q-page[data-v-8e5c1741] {
    padding: 16px;
}
.info-grid[data-v-8e5c1741] {
    grid-template-columns: 1fr;
}
.action-buttons[data-v-8e5c1741] {
    flex-direction: column;
    align-items: center;
}
}

.q-page[data-v-7723bec8] {
  max-width: 1200px;
  margin: 0 auto;
}

/* Stat Cards */
.stat-card-minimal[data-v-7723bec8] {
  border-radius: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.stat-card-minimal[data-v-7723bec8]:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}
.stat-line[data-v-7723bec8] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* Filter Container */
.filter-container[data-v-7723bec8] {
  border-radius: 12px;
  background: #fdfdfe;
}
.search-input[data-v-7723bec8] {
  border-radius: 8px;
}
.advanced-filters-box[data-v-7723bec8] {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

/* Table */
.table-container[data-v-7723bec8] {
  border-radius: 12px;
}
.sticky-header-table[data-v-7723bec8] {
  border-radius: 12px;
}
.type-chip-table[data-v-7723bec8] {
  font-size: 11px;
  padding: 2px 6px;
}
.status-chip-table[data-v-7723bec8] {
  font-size: 11px;
  padding: 2px 6px;
}
.action-buttons[data-v-7723bec8] {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* Drawer Styles */
.profile-view-drawer .q-drawer__content[data-v-7723bec8] {
  background: #f5f5f5;
}
.profile-view-card[data-v-7723bec8] {
  background: white;
}
.border-bottom-green[data-v-7723bec8] {
  border-bottom: 3px solid #4caf50;
}

/* Dialog Styles */
.profile-dialog[data-v-7723bec8] {
  min-width: 600px;
  max-width: 800px;
}
.profile-form[data-v-7723bec8] {
  max-width: none;
}

/* Details Section */
.details-section-modern[data-v-7723bec8] {
  background: #fafafa;
  border-left: 4px solid #4caf50;
}
.section-header-modern[data-v-7723bec8] {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.info-grid[data-v-7723bec8] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-item[data-v-7723bec8] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-label[data-v-7723bec8] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value[data-v-7723bec8] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.tax-details-grid[data-v-7723bec8] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tax-detail-item[data-v-7723bec8] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tax-detail-label[data-v-7723bec8] {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.tax-detail-value[data-v-7723bec8] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Shadow transitions */
.shadow-transition[data-v-7723bec8] {
  transition: box-shadow 0.2s ease;
}
.hover-shadow[data-v-7723bec8]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.q-page[data-v-7723bec8] {
    padding: 16px;
}
.info-grid[data-v-7723bec8] {
    grid-template-columns: 1fr;
}
.tax-details-grid[data-v-7723bec8] {
    grid-template-columns: 1fr;
}
.action-buttons[data-v-7723bec8] {
    flex-direction: column;
    align-items: center;
}
}

.stat-card-minimal[data-v-c5632452] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-c5632452]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-line[data-v-c5632452] {
  height: 4px;
  margin-top: 8px;
}
.search-input[data-v-c5632452] {
  background-color: #f8f9fa;
}
.q-table tbody td[data-v-c5632452] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-c5632452] {
  font-weight: 600;
  font-size: 0.875rem;
}

/* View Details Drawer Styles */
.view-details-drawer[data-v-c5632452] {
  background-color: #f8f9fa;
}
.view-details-drawer .q-drawer__content[data-v-c5632452] {
  display: flex;
  flex-direction: column;
  min-height: 0; /* critical for nested scroll in flex */
}
.view-details-drawer .drawer-header[data-v-c5632452],
.view-details-drawer .drawer-footer[data-v-c5632452] {
  flex: 0 0 auto;
}
.view-details-drawer .drawer-body[data-v-c5632452] {
  flex: 1 1 auto;
  min-height: 0; /* critical: allows q-scroll-area to size correctly */
}
.view-details-drawer .drawer-body[data-v-c5632452] {
  background: #f5f6f7;
}
.drawer-content[data-v-c5632452] {
  padding: 14px;
}
@media (min-width: 600px) {
.drawer-content[data-v-c5632452] {
    padding: 16px;
}
}
.drawer-header[data-v-c5632452] {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.bg-gradient-primary[data-v-c5632452] {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  overflow: hidden;
}
.header-bg-circle[data-v-c5632452] {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.z-top[data-v-c5632452] {
  z-index: 10;
}
.opacity-80[data-v-c5632452] {
  opacity: 0.8;
}
.opacity-70[data-v-c5632452] {
  opacity: 0.7;
}
.opacity-60[data-v-c5632452] {
  opacity: 0.6;
}
.bank-card[data-v-c5632452] {
  background: linear-gradient(135deg, #263238 0%, #37474f 100%);
  border-radius: 16px;
  min-height: 220px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
}
.bank-card-overlay[data-v-c5632452] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
                    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
  pointer-events: none;
}
.font-mono[data-v-c5632452] {
  font-family: 'Roboto Mono', monospace;
}
.letter-spacing-2[data-v-c5632452] {
  letter-spacing: 2px;
}
.info-box[data-v-c5632452] {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.info-box[data-v-c5632452]:hover {
  border-color: #1976d2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.bank-card .q-btn[data-v-c5632452] {
  backdrop-filter: blur(4px);
}
.ellipsis[data-v-c5632452] {
  max-width: 100%;
}
.min-w-0[data-v-c5632452] {
  min-width: 0;
}
.drawer-meta-chips[data-v-c5632452] {
  max-width: 100%;
}
.drawer-meta-chips .q-chip[data-v-c5632452] {
  max-width: 100%;
  margin-left: 0 !important;
}
.bank-account-number[data-v-c5632452] {
  min-width: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.15;
  font-size: clamp(18px, 3vw, 34px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.technical-value[data-v-c5632452] {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.technical-icon-bg[data-v-c5632452] {
  width: 32px;
  height: 32px;
  background: #f1f3f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-card[data-v-c5632452] {
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s ease;
}
.detail-card[data-v-c5632452]:hover {
  border-color: #1976d2;
}
.detail-card-mini[data-v-c5632452] {
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s ease;
}
.detail-card-mini[data-v-c5632452]:hover {
  transform: translateY(-2px);
  border-color: currentColor;
}
.drawer-footer[data-v-c5632452] {
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}
.border-top[data-v-c5632452] {
  border-top: 1px solid #eee;
}
.lh-relaxed[data-v-c5632452] {
  line-height: 1.6;
}
.letter-spacing-1[data-v-c5632452] {
  letter-spacing: 1px;
}
.primary-1[data-v-c5632452] {
  background-color: rgba(25, 118, 210, 0.1);
}
.border-amber-3[data-v-c5632452] {
  border: 1px solid #ffe082;
}

/* Enhanced Bank Account Drawer Styles */
.bank-account-drawer[data-v-c5632452] {
  background-color: #fafafa;
}
.bank-account-drawer .q-drawer__content[data-v-c5632452] {
  background-color: white;
  border-left: 1px solid #e0e0e0;
}
.drawer-section[data-v-c5632452] {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px;
  margin-bottom: 16px;
}
.drawer-section[data-v-c5632452]:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.form-field-enhanced[data-v-c5632452] {
  margin-bottom: 16px;
}
.form-field-enhanced .q-field__control[data-v-c5632452] {
  border-radius: 8px;
}
.form-field-enhanced .q-field__label[data-v-c5632452] {
  font-weight: 500;
  color: #37474f;
}
.validation-error[data-v-c5632452] {
  animation: shake-c5632452 0.5s ease-in-out;
}
@keyframes shake-c5632452 {
0%, 100% { transform: translateX(0);
}
25% { transform: translateX(-5px);
}
75% { transform: translateX(5px);
}
}
.drawer-actions[data-v-c5632452] {
  background-color: white;
  border-top: 1px solid #e0e0e0;
  padding: 16px 24px;
}
.action-button[data-v-c5632452] {
  min-width: 120px;
  border-radius: 8px;
  font-weight: 500;
}

.stat-card[data-v-e3e3bcdb] {
  transition: transform 0.2s;
}
.stat-card[data-v-e3e3bcdb]:hover {
  transform: translateY(-2px);
}

.stat-card[data-v-58d605b0] {
  transition: transform 0.2s;
}
.stat-card[data-v-58d605b0]:hover {
  transform: translateY(-2px);
}

.stat-card-minimal[data-v-fb8da7dc] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-fb8da7dc]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-line[data-v-fb8da7dc] {
  height: 4px;
  margin-top: 8px;
}
.search-input[data-v-fb8da7dc] {
  background-color: #f8f9fa;
}
.q-table tbody td[data-v-fb8da7dc] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-fb8da7dc] {
  font-weight: 600;
  font-size: 0.875rem;
}
/* Procurement Management Style Theming */
[data-v-0e0b6249] .q-page {
  background-color: #f4f7f6;
  color: #333;
}

/* Header Styles */
.page-header-card[data-v-0e0b6249] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.header-content[data-v-0e0b6249] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main[data-v-0e0b6249] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon-wrapper[data-v-0e0b6249] {
  background: #178a2c;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(23, 138, 44, 0.2);
}
.header-text .text-h5[data-v-0e0b6249] {
  color: #178a2c;
  line-height: 1.2;
}

/* Stats Cards */
.stat-card-small[data-v-0e0b6249] {
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.stat-card-small[data-v-0e0b6249]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-icon[data-v-0e0b6249] {
  padding: 8px;
  border-radius: 6px;
}
.stat-value[data-v-0e0b6249] {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label[data-v-0e0b6249] {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.positive-stat .stat-icon[data-v-0e0b6249] {
  background: rgba(23, 138, 44, 0.1);
  color: #178a2c;
}
.info-stat .stat-icon[data-v-0e0b6249] {
  background: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.success-stat .stat-icon[data-v-0e0b6249] {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}
.negative-stat .stat-icon[data-v-0e0b6249] {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
}

/* Controls Container */
.controls-container[data-v-0e0b6249] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.action-btn[data-v-0e0b6249] {
  border-radius: 6px;
  font-weight: 600;
  text-transform: none;
}
.form-field[data-v-0e0b6249] .q-field__control {
  border-radius: 6px;
  background: #fafafa;
}

/* Module Table Card */
.module-card[data-v-0e0b6249] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.card-header[data-v-0e0b6249] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}
.card-title[data-v-0e0b6249] {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}
.module-table[data-v-0e0b6249] {
  border-radius: 0;
}
.module-table[data-v-0e0b6249] thead th {
  background-color: #f8f9fa;
  color: #555;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 12px 16px;
}
.module-table[data-v-0e0b6249] tbody td {
  padding: 12px 16px;
}

/* Stage Progress */
.stage-step[data-v-0e0b6249] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #999;
  transition: all 0.3s ease;
}
.stage-step.completed[data-v-0e0b6249] {
  background: #178a2c;
  color: white;
}
.stage-step.active[data-v-0e0b6249] {
  background: #2196f3;
  color: white;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

/* Modal Styles */
.module-modal[data-v-0e0b6249] {
  border-radius: 12px;
  overflow: hidden;
}
.modal-header[data-v-0e0b6249] {
  background: white;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 24px;
}
.drawer-header[data-v-0e0b6249] {
  border-bottom: 1px solid #f0f0f0;
  background: white;
}
.detail-card[data-v-0e0b6249] {
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

/* Timeline Styles */
.modern-timeline[data-v-0e0b6249] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-item[data-v-0e0b6249] {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 12px;
}
.timeline-item .item-connector[data-v-0e0b6249] {
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: #f0f0f0;
}
.timeline-item:last-child .item-connector[data-v-0e0b6249] {
  display: none;
}
.timeline-item .item-circle[data-v-0e0b6249] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #ccc;
}
.timeline-item.is-completed .item-circle[data-v-0e0b6249] {
  background: #178a2c;
  border-color: #178a2c;
  color: white;
}
.timeline-item.is-completed .item-connector[data-v-0e0b6249] {
  background: #178a2c;
}
.timeline-item.is-active .item-circle[data-v-0e0b6249] {
  border-color: #2196f3;
  color: #2196f3;
}
.product-selection-container[data-v-0e0b6249] {
  border: 1px solid #e0e0e0;
  max-height: 400px;
  overflow-y: auto;
}
.product-row[data-v-0e0b6249] {
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}
.product-row[data-v-0e0b6249]:hover {
  border-color: #178a2c;
  background-color: #f0fff4 !important;
}
.bg-blue-50[data-v-0e0b6249] {
  background-color: #eff6ff;
}
.border-blue-100[data-v-0e0b6249] {
  border: 1px solid #dbeafe;
}
.bg-orange-50[data-v-0e0b6249] {
  background-color: #fff7ed;
}
.border-primary-200[data-v-0e0b6249] {
  border: 1px solid rgba(23, 138, 44, 0.2);
}
.pre-wrap[data-v-0e0b6249] {
  white-space: pre-wrap !important;
}
@media (max-width: 600px) {
.header-content[data-v-0e0b6249] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.header-actions[data-v-0e0b6249] {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
}
.stat-card-minimal[data-v-f6dd2291] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-f6dd2291]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-line[data-v-f6dd2291] {
  height: 4px;
  margin-top: 8px;
}
.search-input[data-v-f6dd2291] {
  background-color: #f8f9fa;
}
.q-table tbody td[data-v-f6dd2291] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-f6dd2291] {
  font-weight: 600;
  font-size: 0.875rem;
}
.conversion-card[data-v-f6dd2291] {
  max-width: 1280px;
  margin: 24px auto;
}

.stat-card-minimal[data-v-6b91ffc6] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-6b91ffc6]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-line[data-v-6b91ffc6] {
  height: 4px;
  margin-top: 8px;
}
.search-input[data-v-6b91ffc6] {
  background-color: #f8f9fa;
}
.q-table tbody td[data-v-6b91ffc6] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-6b91ffc6] {
  font-weight: 600;
  font-size: 0.875rem;
}

.stat-card-minimal[data-v-da145cd8] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-da145cd8]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-line[data-v-da145cd8] {
  height: 4px;
  margin-top: 8px;
}
.search-input[data-v-da145cd8] {
  background-color: #f8f9fa;
}
.q-table tbody td[data-v-da145cd8] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-da145cd8] {
  font-weight: 600;
  font-size: 0.875rem;
}

.stat-card-minimal[data-v-f9bfc737] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-f9bfc737]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-line[data-v-f9bfc737] {
  height: 4px;
  margin-top: 8px;
}
.search-input[data-v-f9bfc737] {
  background-color: #f8f9fa;
}
.q-table tbody td[data-v-f9bfc737] {
  font-size: 0.875rem;
}
.q-table thead th[data-v-f9bfc737] {
  font-weight: 600;
  font-size: 0.875rem;
}

.q-page[data-v-31115279] { max-width: 1200px; margin: 0 auto;
}
.q-page[data-v-d4c08ef3] { max-width: 1200px; margin: 0 auto;
}
.q-page[data-v-7b18c2b3] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-c64021bd] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-d42e652a] { max-width: 1200px; margin: 0 auto;
}
.q-page[data-v-0d466df7] { max-width: 1200px; margin: 0 auto;
}
.q-page[data-v-aafb031a] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-4c8dae8c] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-ea46cb05] { max-width: 1200px; margin: 0 auto;
}
.q-page[data-v-68aef3cb] { max-width: 1200px; margin: 0 auto;
}
.q-page[data-v-1431bad9] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-c86cf5e9] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-ae80a6f7] { max-width: 1200px; margin: 0 auto;
}

.q-table tbody tr[data-v-960669e6]:hover {
  background: #f8f9fa;
}

.q-page[data-v-f4d05f97] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-5a216bd0] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-97905b6d] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-3028b7bf] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-005e182e] { max-width: 1200px; margin: 0 auto;
}

.metric-card[data-v-b761705a] {
  transition: all 0.3s ease;
}
.metric-card[data-v-b761705a]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Amount cells */
.amount-cell[data-v-b761705a] {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #1976d2;
}
.balance-cell[data-v-b761705a] {
  font-family: 'Courier New', monospace;
  font-weight: 700;
}

/* Reference cell */
.reference-cell[data-v-b761705a] {
  max-width: 200px;
}
.reference-number[data-v-b761705a] {
  font-weight: 600;
  color: #37474f;
}
.reference-desc[data-v-b761705a] {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 2px;
}

/* Action buttons */
.action-buttons[data-v-b761705a] {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* Detail items */
.detail-item[data-v-b761705a] {
  margin-bottom: 16px;
}
.detail-label[data-v-b761705a] {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.detail-value[data-v-b761705a] {
  font-size: 16px;
  font-weight: 500;
  color: #37474f;
}

/* Enhanced table styling */
.q-table tbody tr[data-v-b761705a]:hover {
  background-color: #f8f9fa;
}

/* Chip styling */
.q-chip[data-v-b761705a] {
  font-weight: 500;
  text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.metric-card .col[data-v-b761705a] {
    text-align: center;
}
.q-table tbody td[data-v-b761705a] {
    padding: 8px 4px;
}
.q-table thead th[data-v-b761705a] {
    font-size: 12px;
    padding: 8px 4px;
}
.reference-cell[data-v-b761705a] {
    max-width: 150px;
}
.detail-item[data-v-b761705a] {
    margin-bottom: 12px;
}
}

.stat-card-minimal[data-v-04f4b1ff] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-04f4b1ff]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-04f4b1ff] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-04f4b1ff] {
  letter-spacing: 1px;
}
.opacity-8[data-v-04f4b1ff] {
  opacity: 0.8;
}
.full-width[data-v-04f4b1ff] {
  width: 100%;
}

.stat-card-minimal[data-v-3e69145f] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-3e69145f]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-3e69145f] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-3e69145f] {
  letter-spacing: 1px;
}
.opacity-8[data-v-3e69145f] {
  opacity: 0.8;
}
.full-width[data-v-3e69145f] {
  width: 100%;
}

.collection-page[data-v-1d376518] {
  background:
    radial-gradient(circle at 12% 0%, rgba(13, 71, 161, 0.07), transparent 32%),
    radial-gradient(circle at 96% 8%, rgba(46, 125, 50, 0.07), transparent 28%),
    #f8fafc;
}
.hero-card[data-v-1d376518] {
  border: 1px solid rgba(13, 71, 161, 0.15);
  background: linear-gradient(130deg, #f3f8ff 0%, #ffffff 52%, #edf7f0 100%);
}
.filter-card[data-v-1d376518] {
  background: rgba(255, 255, 255, 0.92);
}
.empty-state[data-v-1d376518] {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.full-width[data-v-1d376518] {
  width: 100%;
}
@media (max-width: 599px) {
.collection-page[data-v-1d376518] {
    padding: 10px;
}
}

.stat-card-minimal[data-v-6e87a50c] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-6e87a50c]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-6e87a50c] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-6e87a50c] {
  letter-spacing: 1px;
}
.opacity-8[data-v-6e87a50c] {
  opacity: 0.8;
}
.full-width[data-v-6e87a50c] {
  width: 100%;
}

.q-page[data-v-251cf451] { max-width: 1200px; margin: 0 auto;
}

.stat-card-minimal[data-v-c4dd9bc1] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-c4dd9bc1]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-c4dd9bc1] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-c4dd9bc1] {
  letter-spacing: 1px;
}
.opacity-8[data-v-c4dd9bc1] {
  opacity: 0.8;
}
.full-width[data-v-c4dd9bc1] {
  width: 100%;
}

.summary-card[data-v-c47e80bc] {
  transition: transform 0.2s;
}
.summary-card[data-v-c47e80bc]:hover {
  transform: translateY(-2px);
}
.aging-chart[data-v-c47e80bc] {
  margin: 20px 0;
}
.aging-bars[data-v-c47e80bc] {
  display: flex;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.aging-bar[data-v-c47e80bc] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}
.aging-bar-fill[data-v-c47e80bc] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.aging-bar-label[data-v-c47e80bc] {
  position: relative;
  z-index: 1;
  text-align: center;
}
.aging-bar-label .text-caption[data-v-c47e80bc] {
  font-size: 0.75rem;
  line-height: 1;
}
.aging-legend[data-v-c47e80bc] {
  flex-wrap: wrap;
}
.aging-legend-item[data-v-c47e80bc] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 8px 0;
}
.legend-color[data-v-c47e80bc] {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}
.trend-chart-container[data-v-c47e80bc] {
  position: relative;
  height: 250px;
}
.trend-chart[data-v-c47e80bc] {
  width: 100%;
  height: 100%;
}
.legend-item[data-v-c47e80bc] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legend-item .legend-color[data-v-c47e80bc] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.search-input[data-v-c47e80bc] {
  min-width: 250px;
}

.q-page[data-v-467ed80f] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-baf054b1] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-62f6e5aa] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-17c21d28] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-d79ee72a] { max-width: 1200px; margin: 0 auto;
}

.q-page[data-v-0d007c59] { max-width: 1200px; margin: 0 auto;
}

.stat-card-minimal[data-v-47d46c62] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-47d46c62]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-47d46c62] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-47d46c62] {
  letter-spacing: 1px;
}
.opacity-8[data-v-47d46c62] {
  opacity: 0.8;
}
.full-width[data-v-47d46c62] {
  width: 100%;
}
.transaction-logs-table[data-v-47d46c62] {
  background: white;
}
pre[data-v-47d46c62] {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.stat-card-minimal[data-v-794bfcfb] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-794bfcfb]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-794bfcfb] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-794bfcfb] {
  letter-spacing: 1px;
}
.opacity-8[data-v-794bfcfb] {
  opacity: 0.8;
}
.full-width[data-v-794bfcfb] {
  width: 100%;
}

.status-card[data-v-d0edc058] {
  background: white;
  height: 100%;
}

.stat-card-minimal[data-v-98276f72] {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid #e0e0e0;
}
.stat-card-minimal[data-v-98276f72]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.stat-line[data-v-98276f72] {
  height: 4px;
  margin-top: 0;
}
.letter-spacing-1[data-v-98276f72] {
  letter-spacing: 1px;
}
.opacity-8[data-v-98276f72] {
  opacity: 0.8;
}
.full-width[data-v-98276f72] {
  width: 100%;
}

.dashboard-card[data-v-94e6bb3e] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-94e6bb3e]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-94e6bb3e] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-94e6bb3e]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-94e6bb3e] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.action-tile[data-v-94e6bb3e] {
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}
.action-tile[data-v-94e6bb3e]:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: scale(1.02);
  border-color: var(--q-primary);
}
.alert-card-warning[data-v-94e6bb3e] {
  border-left: 4px solid #ff9800;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
}
.alert-card-negative[data-v-94e6bb3e] {
  border-left: 4px solid #f44336;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}
.alert-card-info[data-v-94e6bb3e] {
  border-left: 4px solid #2196f3;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}
.alert-card-success[data-v-94e6bb3e] {
  border-left: 4px solid #4caf50;
  background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
}
.chart-loading[data-v-94e6bb3e] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #666;
}
.text-uppercase-bold[data-v-94e6bb3e] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.opacity-8[data-v-94e6bb3e] { opacity: 0.8;
}
.full-width[data-v-94e6bb3e] { width: 100%;
}

.dashboard-card[data-v-26c28660] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.summary-card[data-v-26c28660] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.summary-card[data-v-26c28660]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.inflow-card[data-v-26c28660] { background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}
.outflow-card[data-v-26c28660] { background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
}
.net-card[data-v-26c28660] { background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}
.ratio-card[data-v-26c28660] { background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}
.chart-loading[data-v-26c28660] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 350px;
  color: #666;
}
.search-input[data-v-26c28660] {
  width: 250px;
}
.opacity-5[data-v-26c28660] { opacity: 0.5;
}

.dashboard-card[data-v-80f374bd] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.position-card[data-v-80f374bd] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.position-card[data-v-80f374bd]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.bg-blue-1[data-v-80f374bd] { background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}
.bg-green-1[data-v-80f374bd] { background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}
.bg-red-1[data-v-80f374bd] { background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
}
.bg-cyan-1[data-v-80f374bd] { background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}
.chart-loading[data-v-80f374bd] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 350px;
  color: #666;
}
.opacity-5[data-v-80f374bd] { opacity: 0.5;
}

.dashboard-card[data-v-bfeedb52] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.scenario-card[data-v-bfeedb52] {
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.scenario-card[data-v-bfeedb52]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.active-scenario[data-v-bfeedb52] {
  border-color: var(--q-primary);
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}
.chart-loading[data-v-bfeedb52] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #666;
}
.opacity-5[data-v-bfeedb52] { opacity: 0.5;
}

.dashboard-card[data-v-3df45730] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.alert-summary-card[data-v-3df45730] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.alert-summary-card[data-v-3df45730]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.critical[data-v-3df45730] { background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
}
.warning[data-v-3df45730] { background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}
.info[data-v-3df45730] { background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}
.healthy[data-v-3df45730] { background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}
.metric-card[data-v-3df45730] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.metric-card[data-v-3df45730]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-card[data-v-b78aea4b] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-b78aea4b]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-b78aea4b] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-b78aea4b]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-b78aea4b] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.account-header-card[data-v-b78aea4b] {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.text-uppercase-bold[data-v-b78aea4b] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-b78aea4b] {
  width: 100%;
}

/* Drawer specific styles */
.q-drawer[data-v-b78aea4b] {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.q-drawer__content[data-v-b78aea4b] {
  background: #fafbfc;
}

/* Drawer styles */
.q-drawer[data-v-b78aea4b] {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.q-drawer__content[data-v-b78aea4b] {
  background: #fafbfc;
}

/* Responsive drawers */
@media (max-width: 500px) {
.q-drawer[data-v-b78aea4b] {
    width: 100% !important;
}
}
@media (max-width: 600px) {
.q-drawer[data-v-b78aea4b]:has(.transaction-drawer) {
    width: 100% !important;
}
}
@media (max-width: 1024px) {
.q-drawer[data-v-b78aea4b]:has(.ledger-drawer) {
    width: 90% !important;
}
}
@media (max-width: 768px) {
.q-drawer[data-v-b78aea4b]:has(.ledger-drawer) {
    width: 100% !important;
}
}

/* Transaction list styles */
.transaction-item[data-v-b78aea4b] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s;
}
.transaction-item[data-v-b78aea4b]:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Ledger table styles */
.ledger-table[data-v-b78aea4b] {
  border-radius: 8px;
}
.ledger-table .q-table__top[data-v-b78aea4b] {
  background: #f8f9fa;
}
.ledger-table th[data-v-b78aea4b] {
  font-weight: 600;
  background: #f8f9fa;
}
.ledger-table tbody tr[data-v-b78aea4b]:hover {
  background: #f8f9fa;
}

.dashboard-card[data-v-c433164a] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-c433164a]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-c433164a] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-c433164a]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-c433164a] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-c433164a] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-c433164a] { width: 100%;
}

.dashboard-card[data-v-cc2dd42c] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-cc2dd42c]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-cc2dd42c] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-cc2dd42c]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-cc2dd42c] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-cc2dd42c] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-cc2dd42c] {
  width: 100%;
}
.category-form .q-field[data-v-cc2dd42c] {
  margin-bottom: 16px;
}
.cancel-btn[data-v-cc2dd42c] {
  min-width: 80px;
}
.save-btn[data-v-cc2dd42c] {
  min-width: 80px;
}
.ledger-table[data-v-cc2dd42c] {
  border-radius: 8px;
}
.transaction-table[data-v-cc2dd42c] {
  border-radius: 8px;
}

.dashboard-card[data-v-da468953] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-da468953]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-da468953] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-da468953]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-da468953] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-da468953] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-da468953] { width: 100%;
}

.dashboard-card[data-v-46d2b4df] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-46d2b4df]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-46d2b4df] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-46d2b4df]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-46d2b4df] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.limit-card[data-v-46d2b4df] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.2s ease;
}
.limit-card[data-v-46d2b4df]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.text-uppercase-bold[data-v-46d2b4df] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-46d2b4df] { width: 100%;
}

.document-preview-wrapper[data-v-182a1c99] {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.preview-container[data-v-182a1c99] {
  overflow: hidden;
  background: #525659; /* Dark background for better contrast */
}
.preview-image[data-v-182a1c99] {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
}
.preview-iframe[data-v-182a1c99] {
  border: none;
  background: white;
}

.dashboard-card[data-v-261aba99] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-261aba99]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-261aba99] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-261aba99]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-261aba99] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.payment-details-card[data-v-261aba99] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.payment-form-card[data-v-261aba99] {
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
}
.payment-form-card[data-v-261aba99]:hover {
  border-color: var(--q-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.summary-card[data-v-261aba99] {
  border-radius: 16px;
  overflow: hidden;
  background: white;
}
.approval-card[data-v-261aba99] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.bg-primary-1[data-v-261aba99] { background: rgba(var(--q-primary-rgb), 0.1);
}
.bg-secondary-1[data-v-261aba99] { background: rgba(var(--q-secondary-rgb), 0.1);
}
.bg-positive-1[data-v-261aba99] { background: rgba(var(--q-positive-rgb), 0.1);
}
.bg-info-1[data-v-261aba99] { background: rgba(var(--q-info-rgb), 0.1);
}
.bg-warning-1[data-v-261aba99] { background: rgba(var(--q-warning-rgb), 0.1);
}
.bg-blue-50[data-v-261aba99] { background: #f0f7ff;
}
.border-bottom[data-v-261aba99] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sticky-top[data-v-261aba99] {
  position: sticky;
  top: 0;
  z-index: 10;
}
.italic[data-v-261aba99] { font-style: italic;
}
.text-uppercase-bold[data-v-261aba99] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-261aba99] { width: 100%;
}
.full-height[data-v-261aba99] { height: 100%;
}
.document-select-card[data-v-261aba99] {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.document-select-card[data-v-261aba99]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.selected-doc[data-v-261aba99] {
  border: 2px solid var(--q-primary) !important;
  background-color: rgba(var(--q-primary-rgb), 0.05);
}
.selection-overlay[data-v-261aba99] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--q-primary-rgb), 0.4);
  pointer-events: none;
}

.dashboard-card[data-v-1147e52b] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.stat-card-minimal[data-v-1147e52b] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.stat-line[data-v-1147e52b] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-1147e52b] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.dashboard-card[data-v-b15bd54c] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}
.stat-card-minimal[data-v-b15bd54c] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.stat-line[data-v-b15bd54c] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-b15bd54c] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.dashboard-card[data-v-1c20d296] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-1c20d296]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-1c20d296] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-1c20d296]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-1c20d296] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.fund-status-card[data-v-1c20d296] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.2s ease;
}
.fund-status-card[data-v-1c20d296]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.text-uppercase-bold[data-v-1c20d296] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-1c20d296] { width: 100%;
}

.q-form[data-v-8eaaee18] {
  max-width: none;
}

.dashboard-card[data-v-fbf108ba] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}

.dashboard-card[data-v-cc1f98cb] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-cc1f98cb]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-cc1f98cb] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-cc1f98cb]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-cc1f98cb] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-cc1f98cb] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-cc1f98cb] { width: 100%;
}

.dashboard-card[data-v-4125603e] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-4125603e]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-4125603e] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-4125603e]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-4125603e] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.limit-card[data-v-4125603e] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.2s ease;
}
.limit-card[data-v-4125603e]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.text-uppercase-bold[data-v-4125603e] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-4125603e] { width: 100%;
}

.dashboard-card[data-v-162bc3e4] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-162bc3e4]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-162bc3e4] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-162bc3e4]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-162bc3e4] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-162bc3e4] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-162bc3e4] { width: 100%;
}

.dashboard-card[data-v-1e332e0b] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}
.dashboard-card[data-v-1e332e0b]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.stat-card-minimal[data-v-1e332e0b] {
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card-minimal[data-v-1e332e0b]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-line[data-v-1e332e0b] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.text-uppercase-bold[data-v-1e332e0b] {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}
.full-width[data-v-1e332e0b] { width: 100%;
}
/* ========================================
   WAREHOUSE MANAGEMENT THEME
   ========================================
   Modern theme based on ProcurementPage.vue theming
   - Purple-blue gradient theme
   - Clean, professional design
   - Consistent spacing and typography
   ======================================== */

/* ========================================
   CSS VARIABLES - PROCUREMENT THEME SYSTEM
   ======================================== */

/* Colors */
:root {
  /* Primary Colors - Purple-Blue Gradient Theme */
  --warehouse-primary: #667eea;           /* Primary Purple */
  --warehouse-primary-end: #764ba2;       /* Primary Purple End */
  --warehouse-primary-dark: #5a67d8;      /* Dark Purple */
  --warehouse-primary-light: #9f7aea;     /* Light Purple */

  /* Secondary Colors */
  --warehouse-secondary: #1976d2;         /* Blue */
  --warehouse-secondary-light: #e3f2fd;   /* Light Blue */
  --warehouse-secondary-dark: #1565c0;   /* Dark Blue */

  /* Status Colors */
  --warehouse-success: #4CAF50;          /* Green */
  --warehouse-warning: #FF9800;          /* Orange */
  --warehouse-error: #F44336;            /* Red */
  --warehouse-info: #00BCD4;             /* Cyan */

  /* Surface Colors */
  --warehouse-surface: #FFFFFF;          /* White */
  --warehouse-background: #FAFAFA;       /* Light Grey */
  --warehouse-card-background: #FFFFFF; /* White */

  /* Table Colors */
  --warehouse-table-header-bg: #f8f9fa;  /* Light Grey */
  --warehouse-table-header-text: #495057; /* Dark Grey */
  --warehouse-table-row-hover: #f8f9fa;  /* Light Grey */
  --warehouse-table-border: #e9ecef;     /* Light Border */

  /* Text Colors */
  --warehouse-text-primary: #212121;     /* Dark Grey */
  --warehouse-text-secondary: #757575;   /* Medium Grey */
  --warehouse-text-disabled: #BDBDBD;    /* Light Grey */

  /* Border Colors */
  --warehouse-border: #e0e0e0;           /* Light Grey */
  --warehouse-border-light: #F5F5F5;     /* Very Light Grey */
  --warehouse-divider: #dee2e6;          /* Medium Grey */

  /* Shadow Colors */
  --warehouse-shadow-key-penumbra-opacity: 0.1;
  --warehouse-shadow-key-umbra-opacity: 0.08;
  --warehouse-shadow-ambient-shadow-opacity: 0.06;
}

/* ========================================
   TYPOGRAPHY - MATERIAL DESIGN TYPE SCALE
   ======================================== */

.warehouse-typography {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Headlines */
.warehouse-headline-1 { /* h1 */
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.01562em;
  color: var(--warehouse-text-primary);
}

.warehouse-headline-2 { /* h2 */
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.00833em;
  color: var(--warehouse-text-primary);
}

.warehouse-headline-3 { /* h3 */
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: normal;
  color: var(--warehouse-text-primary);
}

.warehouse-headline-4 { /* h4 */
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.00714em;
  color: var(--warehouse-text-primary);
}

/* Body Text */
.warehouse-body-1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03125em;
  color: var(--warehouse-text-primary);
}

.warehouse-body-2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01786em;
  color: var(--warehouse-text-primary);
}

/* Caption */
.warehouse-caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.03333em;
  color: var(--warehouse-text-secondary);
}

/* Button Text */
.warehouse-button {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.08929em;
  text-transform: uppercase;
}

/* ========================================
   SPACING - 8DP GRID SYSTEM
   ======================================== */

.warehouse-spacing-1 { margin: 8px; }
.warehouse-spacing-2 { margin: 16px; }
.warehouse-spacing-3 { margin: 24px; }
.warehouse-spacing-4 { margin: 32px; }
.warehouse-spacing-5 { margin: 40px; }

.warehouse-padding-1 { padding: 8px; }
.warehouse-padding-2 { padding: 16px; }
.warehouse-padding-3 { padding: 24px; }
.warehouse-padding-4 { padding: 32px; }
.warehouse-padding-5 { padding: 40px; }

.warehouse-margin-top-1 { margin-top: 8px; }
.warehouse-margin-top-2 { margin-top: 16px; }
.warehouse-margin-top-3 { margin-top: 24px; }
.warehouse-margin-top-4 { margin-top: 32px; }

.warehouse-margin-bottom-1 { margin-bottom: 8px; }
.warehouse-margin-bottom-2 { margin-bottom: 16px; }
.warehouse-margin-bottom-3 { margin-bottom: 24px; }
.warehouse-margin-bottom-4 { margin-bottom: 32px; }

/* ========================================
   ELEVATION - MATERIAL DESIGN SHADOWS
   ======================================== */

.warehouse-elevation-0 {
  box-shadow: none;
}

.warehouse-elevation-1 {
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2),
              0 1px 1px 0px rgba(0, 0, 0, 0.14),
              0 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-2 {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),
              0 2px 2px 0px rgba(0, 0, 0, 0.14),
              0 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-3 {
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2),
              0 3px 4px 0px rgba(0, 0, 0, 0.14),
              0 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-4 {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
              0 4px 5px 0px rgba(0, 0, 0, 0.14),
              0 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-6 {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
              0 6px 10px 0px rgba(0, 0, 0, 0.14),
              0 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-8 {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
              0 8px 10px 1px rgba(0, 0, 0, 0.14),
              0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-16 {
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2),
              0 16px 24px 2px rgba(0, 0, 0, 0.14),
              0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.warehouse-elevation-24 {
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2),
              0 24px 38px 3px rgba(0, 0, 0, 0.14),
              0 9px 46px 8px rgba(0, 0, 0, 0.12);
}

/* ========================================
   COMPONENTS - PROCUREMENT THEME ELEMENTS
   ======================================== */

/* Cards */
.warehouse-card {
  background-color: var(--warehouse-surface);
  border-radius: 12px;
  border: 1px solid var(--warehouse-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.warehouse-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Buttons */
.warehouse-btn-primary {
  background: linear-gradient(135deg, var(--warehouse-primary) 0%, var(--warehouse-primary-end) 100%);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.warehouse-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.warehouse-btn-secondary {
  background-color: transparent;
  color: var(--warehouse-primary);
  border: 1px solid var(--warehouse-primary);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.warehouse-btn-secondary:hover {
  background-color: rgba(102, 126, 234, 0.04);
  border-color: var(--warehouse-primary-dark);
}

/* Form Inputs */
.warehouse-input {
  width: 100%;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.warehouse-input .q-input__control,
.warehouse-input .q-select__control {
  border-radius: 6px;
}

/* Tables */
.warehouse-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--warehouse-surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.warehouse-table .q-table__top {
  background: linear-gradient(135deg, var(--warehouse-primary) 0%, var(--warehouse-primary-end) 100%);
  color: white;
  border-radius: 8px 8px 0 0;
}

.warehouse-table .q-table__top .q-table__title {
  color: white;
  font-weight: 600;
}

.warehouse-table .q-table__top .q-table__separator {
  background-color: rgba(255, 255, 255, 0.2);
}

.warehouse-table th,
.warehouse-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid var(--warehouse-table-border);
}

.warehouse-table .q-table__thead th {
  background-color: var(--warehouse-table-header-bg);
  color: var(--warehouse-table-header-text);
  font-weight: 600;
  border-bottom: 2px solid var(--warehouse-divider);
}

.warehouse-table tbody tr:hover {
  background-color: var(--warehouse-table-row-hover);
  transition: background-color 0.2s ease;
}

/* Chips/Badges */
.warehouse-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--warehouse-secondary);
  color: white;
}

.warehouse-chip-success {
  background-color: var(--warehouse-success);
}

.warehouse-chip-warning {
  background-color: var(--warehouse-warning);
}

.warehouse-chip-error {
  background-color: var(--warehouse-error);
}

.warehouse-chip-info {
  background-color: var(--warehouse-info);
}

/* Tabs */
.warehouse-tabs .q-tab {
  color: var(--warehouse-text-secondary);
  font-weight: 500;
  transition: all 200.3s ease;
}

.warehouse-tabs .q-tab--active {
  color: var(--warehouse-primary);
  font-weight: 600;
}

.warehouse-tabs .q-tab__indicator {
  background: linear-gradient(135deg, var(--warehouse-primary) 0%, var(--warehouse-primary-end) 100%);
  height: 3px;
  border-radius: 2px;
}

/* Summary Cards (like in procurement) */
.warehouse-summary-card {
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--warehouse-border);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.warehouse-summary-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.warehouse-summary-card__label {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warehouse-text-secondary);
}

.warehouse-summary-card__value {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
  color: var(--warehouse-text-primary);
}

.warehouse-summary-card__meta {
  font-size: 13px;
  display: flex;
  align-items: center;
  color: #9e9e9e;
}

/* Modal/Dialog styling */
.warehouse-dialog .q-card {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.warehouse-dialog .q-card-section {
  border-radius: 12px 12px 0 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.warehouse-text-primary { color: var(--warehouse-text-primary); }
.warehouse-text-secondary { color: var(--warehouse-text-secondary); }
.warehouse-text-disabled { color: var(--warehouse-text-disabled); }

.warehouse-bg-surface { background-color: var(--warehouse-surface); }
.warehouse-bg-background { background-color: var(--warehouse-background); }

.warehouse-border { border: 1px solid var(--warehouse-border); }
.warehouse-border-light { border: 1px solid var(--warehouse-border-light); }

.warehouse-rounded-sm { border-radius: 4px; }
.warehouse-rounded { border-radius: 8px; }
.warehouse-rounded-lg { border-radius: 12px; }
.warehouse-rounded-xl { border-radius: 16px; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .warehouse-padding-4 { padding: 16px; }
  .warehouse-padding-5 { padding: 24px; }

  .warehouse-margin-top-4 { margin-top: 16px; }
  .warehouse-margin-bottom-4 { margin-bottom: 16px; }

  .warehouse-headline-1 { font-size: 20px; line-height: 28px; }
  .warehouse-headline-2 { font-size: 18px; line-height: 24px; }

  .warehouse-card {
    margin: 8px;
  }
}

/* ========================================
   PROCUREMENT PAGE THEME CLASSES
   ======================================== */

/* Professional Financial Theme Styles */
.page-header-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.page-header-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.page-header-card .text-h5 {
  margin-bottom: 8px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.header-text {
  flex: 1;
}

.header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-title {
  font-weight: 700;
  font-size: 1rem;
  color: #263238;
  margin-bottom: 0;
}

/* Module Card Styling */
.module-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  display: flex;
  flex-direction: column;
  min-height: auto;
}

/* Statistics Cards */
.stat-card-small {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 60px;
}

.stat-card-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}

.positive-stat {
  border-left: 4px solid #21ba45;
}

.warning-stat {
  border-left: 4px solid #f39c12;
}

.negative-stat {
  border-left: 4px solid #d32f2f;
}

.info-stat {
  border-left: 4px solid #1976d2;
}

.success-stat {
  border-left: 4px solid #21ba45;
}

.stat-card-small .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1d2939;
}

.stat-card-small .stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.stat-card-small .stat-icon {
  font-size: 24px;
  opacity: 0.6;
  color: inherit;
}

/* Table Styling */
.module-table {
  border-radius: 8px;
  overflow: hidden;
}

.module-table .q-table__top {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}

.module-table .q-table__thead th {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}

.module-table .q-table__tbody tr:hover {
  background: #f8fafc;
}

.module-table .q-table__thead th,
.module-table .q-table__tbody td {
  padding: 8px 12px;
}

/* Action Button Styling */
.action-btn {
  transition: all 0.2s ease;
  opacity: 0.8;
}

.action-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Search Input */
.search-input {
  transition: all 0.2s ease;
}

.search-input:hover {
  transform: translateY(-1px);
}

/* Modal Styling */
.module-modal {
  min-width: 600px;
  max-width: 95vw;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 4px 32px 0 rgba(60, 60, 60, 0.1);
  overflow: hidden;
}

.modal-header {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 12px 24px;
  background: transparent;
}

/* Form Field Styling */
.form-field {
  transition: all 0.2s ease;
}

.form-field:hover {
  transform: translateY(-1px);
}

/* Controls Container Styling */
.controls-container {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.controls-container:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.controls-container .q-card-section {
  padding: 16px 20px;
}

/* Enhanced Action Button Styling */
.controls-container .action-btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.controls-container .action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Filter Controls Spacing */
.controls-container .q-gutter-sm>div {
  margin-right: 8px;
}

.controls-container .q-gutter-sm>div:last-child {
  margin-right: 0;
}

/* ========================================
   EMPTY STATES
   ======================================== */

.empty-state-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 40px 20px;
}

.empty-state {
  text-align: center;
  max-width: 400px;
}

.empty-state-icon {
  margin-bottom: 16px;
  opacity: 0.5;
  animation: fadeIn 0.5s ease-in;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #263238;
  margin-bottom: 8px;
}

.empty-state-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}

/* ========================================
   IMPROVED INTERACTIONS
   ======================================== */

.cursor-pointer {
  cursor: pointer;
  transition: all 0.2s ease;
}

.cursor-pointer:hover {
  transform: translateY(-2px);
}

.stat-card-small.cursor-pointer:hover {
  box-shadow: 0 6px 16px 0 rgba(60, 60, 60, 0.16);
}

/* Better form section styling */
.text-subtitle1.text-weight-medium {
  color: #1976d2;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.text-subtitle1.text-weight-medium .q-icon {
  color: #1976d2;
}

/* Improved button styling */
.q-btn.unelevated {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.q-btn.unelevated:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}

/* Better scrollbar for dialogs */
.scroll::-webkit-scrollbar {
  width: 8px;
}

.scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.scroll::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Status toggle styling */
.bg-grey-1.rounded-borders {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* ========================================
   RESPONSIVE IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .header-actions {
    width: 100%;
    margin-top: 16px;
  }

  .header-actions .q-btn {
    flex: 1;
  }

  .controls-container .row {
    flex-direction: column;
  }

  .controls-container .col-auto {
    width: 100%;
    margin-bottom: 8px;
  }

  .stat-card-small {
    margin-bottom: 8px;
  }

  .empty-state-container {
    min-height: 200px;
    padding: 20px;
  }
}

/* ========================================
   DARK MODE SUPPORT (Optional Future Enhancement)
   ======================================== */

/* @media (prefers-color-scheme: dark) {
  :root {
    --warehouse-surface: #1E1E1E;
    --warehouse-background: #121212;
    --warehouse-text-primary: #FFFFFF;
    --warehouse-text-secondary: #B3B3B3;
    --warehouse-border: #333333;
  }
} */

.warehouse-grid[data-v-0744c037] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
.warehouse-grid[data-v-0744c037] {
    grid-template-columns: 1fr;
    gap: 16px;
}
}

/* Warehouse Profile Card Styles */
.warehouse-profile-card[data-v-0744c037] {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.warehouse-profile-card[data-v-0744c037]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.warehouse-avatar[data-v-0744c037] {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 2px;
}
.warehouse-header[data-v-0744c037] {
  line-height: 1.3;
}
.detail-row[data-v-0744c037] {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.detail-row .q-icon[data-v-0744c037] {
  flex-shrink: 0;
}
.status-chip[data-v-0744c037] {
  font-weight: 500;
  text-transform: capitalize;
}
.action-btn[data-v-0744c037] {
  border-radius: 6px;
  font-weight: 500;
}

/* Hover lift animation */
.hover-lift[data-v-0744c037] {
  cursor: pointer;
}

/* Table View Styles */
.warehouse-table-container[data-v-0744c037] {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.warehouse-table[data-v-0744c037] {
  border-radius: 8px;
}
.warehouse-table .q-table__top[data-v-0744c037] {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.warehouse-table thead th[data-v-0744c037] {
  font-weight: 600;
  color: #1976d2;
  background-color: #f5f5f5;
}
.warehouse-table tbody td[data-v-0744c037] {
  padding: 12px 16px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
.warehouse-grid[data-v-0744c037] {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}
@media (max-width: 600px) {
.warehouse-profile-card .q-card-section[data-v-0744c037] {
    padding: 12px !important;
}
.warehouse-avatar[data-v-0744c037] {
    display: none;
}
.warehouse-header[data-v-0744c037] {
    text-align: center;
}
.warehouse-table-container[data-v-0744c037] {
    border-radius: 0;
}
}

.stock-levels-section[data-v-a3ac6494] {
  width: 100%;
}
.section-header[data-v-a3ac6494] {
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 16px;
}
.stock-overview[data-v-a3ac6494] {
  margin-bottom: 24px;
}
.stock-card[data-v-a3ac6494] {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.stock-card[data-v-a3ac6494]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.stock-card.positive[data-v-a3ac6494]:hover {
  border-color: #4caf50;
}
.stock-card.warning[data-v-a3ac6494]:hover {
  border-color: #ff9800;
}
.stock-card.negative[data-v-a3ac6494]:hover {
  border-color: #f44336;
}
.stock-card.info[data-v-a3ac6494]:hover {
  border-color: #2196f3;
}
.stock-movements-card[data-v-a3ac6494] {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
.stock-overview .col-md-3[data-v-a3ac6494] {
    margin-bottom: 16px;
}
}

.warehouse-movements-section[data-v-6c04bac0] {
  width: 100%;
}

/* No local styles needed as global ProcurementPage.vue styles are used */

/* Professional Financial Theme Styles */
.page-header-card[data-v-858043aa] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-858043aa]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-858043aa] {
  margin-bottom: 8px;
}

/* Controls Container */
.controls-container[data-v-858043aa] {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  border: 1px solid #e0e0e0;
}
.controls-container .q-card-section[data-v-858043aa] {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Module Card Styling */
.module-card[data-v-858043aa] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
}
.card-header[data-v-858043aa] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-858043aa] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
}

/* Table Styling */
.module-table[data-v-858043aa] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-858043aa] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-858043aa] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-858043aa]:hover {
  background: #f8fafc;
}

/* Action Button Styling */
.action-btn[data-v-858043aa] {
  transition: all 0.2s ease;
  opacity: 0.8;
  border-radius: 8px;
  font-weight: 500;
}
.action-btn[data-v-858043aa]:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Form Fields */
.form-field[data-v-858043aa] {
  transition: all 0.2s ease;
}
.form-field[data-v-858043aa]:hover {
  transform: translateY(-1px);
}

/* Modal Styling */
.module-modal[data-v-858043aa] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.modal-header[data-v-858043aa] {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn[data-v-858043aa] {
  color: white;
}
.cancel-btn[data-v-858043aa] {
  border-radius: 8px;
  font-weight: 500;
}
.save-btn[data-v-858043aa] {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  border-radius: 8px;
  font-weight: 500;
}
.form-input[data-v-858043aa] {
  transition: all 0.2s ease;
}
.form-input[data-v-858043aa]:hover {
  transform: translateY(-1px);
}

/* View Dialog Styling */
.view-dialog-card[data-v-858043aa] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Warehouse Visual Grid */
.warehouse-grid[data-v-858043aa] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  padding: 16px;
  min-height: 400px;
}
.location-cell[data-v-858043aa] {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.location-cell[data-v-858043aa]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.location-cell.fifo[data-v-858043aa] {
  border-color: #4caf50;
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}
.location-cell.lifo[data-v-858043aa] {
  border-color: #ff9800;
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
}
.location-cell.wavg[data-v-858043aa] {
  border-color: #2196f3;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.location-header[data-v-858043aa] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.location-code[data-v-858043aa] {
  font-weight: bold;
  font-size: 1.2rem;
  color: #1976d2;
}
.location-details[data-v-858043aa] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.location-details > div[data-v-858043aa] {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #555;
}
.valuation-method[data-v-858043aa] {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.item-count[data-v-858043aa] {
  color: #666;
}
.description[data-v-858043aa] {
  font-style: italic;
  color: #888;
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.2;
}
.location-detail-section[data-v-858043aa] {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.location-detail-section .text-subtitle2[data-v-858043aa] {
  color: #495057;
  font-weight: 600;
  margin-bottom: 8px;
}
.location-detail-section .text-body1[data-v-858043aa] {
  color: #212529;
  line-height: 1.5;
}
.location-detail-section .text-h6[data-v-858043aa] {
  color: #1976d2;
  font-weight: 600;
}

/* Legend */
.legend-item[data-v-858043aa] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid;
}
.legend-container[data-v-858043aa] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legend-item[data-v-858043aa] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legend-color[data-v-858043aa] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #ddd;
}
.legend-color.fifo[data-v-858043aa] {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  border-color: #4caf50;
}
.legend-color.lifo[data-v-858043aa] {
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
  border-color: #ff9800;
}
.legend-color.wavg[data-v-858043aa] {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #2196f3;
}
.legend-text[data-v-858043aa] {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.asset-navbar[data-v-a96da89e] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-a96da89e] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

/* Professional Financial Theme Styles */
.page-header-card[data-v-6011f610] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-6011f610]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-6011f610] {
  margin-bottom: 8px;
}

/* Controls Container */
.controls-container[data-v-6011f610] {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
  border: 1px solid #e0e0e0;
}
.controls-container .q-card-section[data-v-6011f610] {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Statistics Cards */
.stat-card-small[data-v-6011f610] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 80px;
}
.stat-card-small[data-v-6011f610]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.positive-stat[data-v-6011f610] {
  border-left: 4px solid #21ba45;
}
.warning-stat[data-v-6011f610] {
  border-left: 4px solid #f39c12;
}
.info-stat[data-v-6011f610] {
  border-left: 4px solid #1976d2;
}
.success-stat[data-v-6011f610] {
  border-left: 4px solid #21ba45;
}

/* Module Card Styling */
.module-card[data-v-6011f610] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(60, 60, 60, 0.04);
}
.card-header[data-v-6011f610] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.card-title[data-v-6011f610] {
  font-weight: 700;
  font-size: 1.1rem;
  color: #263238;
  margin-bottom: 2px;
}

/* Table Styling */
.module-table[data-v-6011f610] {
  border-radius: 8px;
  overflow: hidden;
}
.module-table .q-table__top[data-v-6011f610] {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
}
.module-table .q-table__thead th[data-v-6011f610] {
  background: #f1f3f4;
  color: #263238;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
}
.module-table .q-table__tbody tr[data-v-6011f610]:hover {
  background: #f8fafc;
}

/* Action Button Styling */
.action-btn[data-v-6011f610] {
  transition: all 0.2s ease;
  opacity: 0.8;
  border-radius: 8px;
  font-weight: 500;
}
.action-btn[data-v-6011f610]:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Form Fields */
.form-field[data-v-6011f610] {
  transition: all 0.2s ease;
}
.form-field[data-v-6011f610]:hover {
  transform: translateY(-1px);
}

/* Chart Container */
.chart-container[data-v-6011f610] {
  position: relative;
  height: 300px;
  width: 100%;
}

.q-page[data-v-be48d1f4] { max-width: 1200px; margin: 0 auto;
}
.ledger-table[data-v-be48d1f4] { border-radius: 10px;
}

.q-page[data-v-70cc9515] { max-width: 1200px; margin: 0 auto;
}

.kpi-card[data-v-fc33c09d] {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.kpi-card[data-v-fc33c09d]:hover {
  transform: translateY(-2px);
}
.workflow-step[data-v-fc33c09d] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  background-color: #f9f9f9;
}
.workflow-step .q-icon[data-v-fc33c09d] {
  margin-bottom: 10px;
}
.workflow-step .text-subtitle1[data-v-fc33c09d] {
  color: #333;
}
.workflow-step .text-caption[data-v-fc33c09d] {
  color: #666;
}
.chart-container[data-v-fc33c09d] {
  position: relative;
  min-height: 300px;
}
.chart-placeholder[data-v-fc33c09d] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f5f5f5;
  border-radius: 8px;
}
.q-card[data-v-fc33c09d] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-table[data-v-fc33c09d] {
  background: white;
}

.current-value-input[data-v-4fda7469] {
  background-color: #f5f5f5;
}
.q-card[data-v-4fda7469] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-table[data-v-4fda7469] {
  background: white;
}
.bg-positive-1[data-v-4fda7469] {
  background-color: rgba(33, 186, 69, 0.1);
}
.bg-negative-1[data-v-4fda7469] {
  background-color: rgba(193, 0, 21, 0.1);
}

.transfer-navigation[data-v-49278d67] {
  min-width: 290px;
}
.transfer-list[data-v-49278d67] {
  border-radius: 10px;
  border-color: #eceff1;
  background: #fff;
}
.transfer-item[data-v-49278d67] {
  border-radius: 8px;
  margin: 4px;
  min-height: 56px;
}
.transfer-item-active[data-v-49278d67] {
  background: #f7f9fb;
  border: 1px solid #dde3e9;
}

.transfer-layout-page[data-v-24648905] {
  background: #fafafa;
}
.transfer-layout-card[data-v-24648905] {
  border: 1px solid #eceff1;
  border-radius: 10px;
  box-shadow: none;
}

.transfer-page[data-v-082be33e] {
  background: #fafafa;
}
.kpi-card[data-v-082be33e],
.main-card[data-v-082be33e] {
  border: 1px solid #eceff1;
  border-radius: 10px;
  box-shadow: none;
}
.quick-link-item[data-v-082be33e] {
  border-radius: 8px;
  margin: 2px 6px;
}

.q-page[data-v-51521c67] {
  background-color: #f5f5f5;
}
.q-card[data-v-51521c67] {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.bg-warning-1[data-v-51521c67] {
  background-color: #fff3cd;
}
.bg-info-1[data-v-51521c67] {
  background-color: #d1ecf1;
}
.bg-positive-1[data-v-51521c67] {
  background-color: #d4edda;
}
.bg-negative-1[data-v-51521c67] {
  background-color: #f8d7da;
}

/* Page Header Styles */
.page-header-card[data-v-7dd5f660] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.header-content[data-v-7dd5f660] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main[data-v-7dd5f660] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon-wrapper[data-v-7dd5f660] {
  background: #178a2c;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(23, 138, 44, 0.2);
}
.header-text .text-h5[data-v-7dd5f660] {
  color: #178a2c;
  line-height: 1.2;
}

/* Stats Cards */
.stat-card-small[data-v-7dd5f660] {
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.stat-card-small[data-v-7dd5f660]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-icon[data-v-7dd5f660] {
  padding: 8px;
  border-radius: 6px;
}
.stat-value[data-v-7dd5f660] {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label[data-v-7dd5f660] {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.positive-stat .stat-icon[data-v-7dd5f660] { background: rgba(23, 138, 44, 0.1); color: #178a2c;
}
.info-stat .stat-icon[data-v-7dd5f660] { background: rgba(33, 150, 243, 0.1); color: #2196f3;
}
.success-stat .stat-icon[data-v-7dd5f660] { background: rgba(76, 175, 80, 0.1); color: #4caf50;
}
.negative-stat .stat-icon[data-v-7dd5f660] { background: rgba(244, 67, 54, 0.1); color: #f44336;
}

/* Controls Container */
.controls-container[data-v-7dd5f660] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.action-btn[data-v-7dd5f660] {
  border-radius: 6px;
  font-weight: 600;
  text-transform: none;
}
.form-field[data-v-7dd5f660] .q-field__control {
  border-radius: 6px;
  background: #fafafa;
}

/* Module Table Card */
.module-card[data-v-7dd5f660] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.card-header[data-v-7dd5f660] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}
.card-title[data-v-7dd5f660] {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}
.module-table[data-v-7dd5f660] {
  border-radius: 0;
}
[data-v-7dd5f660] .module-table thead th {
  background-color: #f8f9fa;
  color: #555;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 12px 16px;
}
[data-v-7dd5f660] .module-table tbody td {
  padding: 12px 16px;
}

/* Loading overlay */
.loading-overlay[data-v-7dd5f660] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-content[data-v-7dd5f660] {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stage Progress */
.stage-step[data-v-7dd5f660] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #999;
  transition: all 0.3s ease;
}
.stage-step.completed[data-v-7dd5f660] {
  background: #178a2c;
  color: white;
}
.stage-step.active[data-v-7dd5f660] {
  background: #2196f3;
  color: white;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

/* Timeline Styles */
.modern-timeline[data-v-7dd5f660] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-item[data-v-7dd5f660] {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 12px;
}
.timeline-item .item-connector[data-v-7dd5f660] {
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: #f0f0f0;
}

/* Vehicle Cards */
.vehicle-card[data-v-7dd5f660] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.vehicle-card[data-v-7dd5f660]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Dispatch Info Cards */
.bg-blue-50[data-v-7dd5f660] { background-color: #eff6ff;
}
.border-blue-100[data-v-7dd5f660] { border: 1px solid #dbeafe;
}
.bg-orange-50[data-v-7dd5f660] { background-color: #fff7ed;
}
.border-primary-200[data-v-7dd5f660] { border: 1px solid rgba(23, 138, 44, 0.2);
}

/* Responsive design */
@media (max-width: 600px) {
.header-content[data-v-7dd5f660] { flex-direction: column; align-items: flex-start; gap: 16px;
}
.header-actions[data-v-7dd5f660] { width: 100%; display: flex; justify-content: flex-end;
}
}

/* Page Header Styles */
.page-header-card[data-v-3a8f2466] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.header-content[data-v-3a8f2466] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main[data-v-3a8f2466] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon-wrapper[data-v-3a8f2466] {
  background: #178a2c;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(23, 138, 44, 0.2);
}
.header-text .text-h5[data-v-3a8f2466] {
  color: #178a2c;
  line-height: 1.2;
}

/* Stats Cards */
.stat-card-small[data-v-3a8f2466] {
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.stat-card-small[data-v-3a8f2466]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-icon[data-v-3a8f2466] {
  padding: 8px;
  border-radius: 6px;
}
.stat-value[data-v-3a8f2466] {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label[data-v-3a8f2466] {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.primary-stat .stat-icon[data-v-3a8f2466] { background: rgba(23, 138, 44, 0.1); color: #178a2c;
}
.positive-stat .stat-icon[data-v-3a8f2466] { background: rgba(76, 175, 80, 0.1); color: #4caf50;
}
.info-stat .stat-icon[data-v-3a8f2466] { background: rgba(33, 150, 243, 0.1); color: #2196f3;
}
.negative-stat .stat-icon[data-v-3a8f2466] { background: rgba(244, 67, 54, 0.1); color: #f44336;
}

/* Controls Container */
.controls-container[data-v-3a8f2466] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.action-btn[data-v-3a8f2466] {
  border-radius: 6px;
  font-weight: 600;
  text-transform: none;
}
.form-field[data-v-3a8f2466] .q-field__control {
  border-radius: 6px;
  background: #fafafa;
}

/* Module Table Card */
.module-card[data-v-3a8f2466] {
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.card-header[data-v-3a8f2466] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}
.card-title[data-v-3a8f2466] {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}
.module-table[data-v-3a8f2466] {
  border-radius: 0;
}
[data-v-3a8f2466] .module-table thead th {
  background-color: #f8f9fa;
  color: #555;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
[data-v-3a8f2466] .module-table tbody tr:hover {
  background-color: #f8f9fa;
}
[data-v-3a8f2466] .module-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

/* Cost Breakdown Cards */
.cost-breakdown[data-v-3a8f2466] {
  margin-top: 15px;
}
.cost-card[data-v-3a8f2466] {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.cost-card[data-v-3a8f2466]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Info Grid */
.info-grid[data-v-3a8f2466] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.info-item[data-v-3a8f2466] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.info-item[data-v-3a8f2466]:last-child {
  border-bottom: none;
}
.info-label[data-v-3a8f2466] {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value[data-v-3a8f2466] {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
.info-grid[data-v-3a8f2466] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.header-content[data-v-3a8f2466] {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.header-actions[data-v-3a8f2466] {
    width: 100%;
    justify-content: flex-end;
}
.stat-card-small[data-v-3a8f2466] {
    margin-bottom: 8px;
}
}

/* Copy styles from the original page */

.ap-navbar[data-v-282da129] {
  min-width: 220px;
  max-width: 240px;
  border-right: 1px solid #eee;
  background: #fafbfc;
  height: 100%;
  padding-top: 16px;
}
.q-table__top[data-v-282da129] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

/* Custom Styles */
.q-table__top[data-v-211127f2] {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
}

.hover-bg-grey-1[data-v-282482e4]:hover {
  background-color: #f5f5f5;
}
.border-bottom-light[data-v-282482e4] {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.border-top-light[data-v-282482e4] {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.border-right-light[data-v-282482e4] {
  border-right: 1px solid rgba(0,0,0,0.12);
}
.json-view[data-v-282482e4] {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0;
  color: #424242;
}

.movement-table[data-v-e4a32550] {
  border-radius: 10px;
}

.font-mono[data-v-bb5b2a85] {
  font-family: 'Courier New', monospace;
}

/* Modal styling to match SCM design */
.module-modal[data-v-bb5b2a85] {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.modal-header[data-v-bb5b2a85] {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #dee2e6;
  padding: 16px 24px;
}
.scroll[data-v-bb5b2a85] {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}
.scroll[data-v-bb5b2a85]::-webkit-scrollbar {
  width: 6px;
}
.scroll[data-v-bb5b2a85]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.scroll[data-v-bb5b2a85]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.scroll[data-v-bb5b2a85]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.q-form[data-v-7a99fa74] {
  max-width: 800px;
}

.q-table[data-v-bdafea46] {
  cursor: pointer;
}

.font-mono[data-v-1c87908f] {
  font-family: 'Courier New', monospace;
}

.font-mono[data-v-58507dc5] {
  font-family: 'Courier New', monospace;
}

/* Event Dictionary specific styling */
.event-dictionary-card[data-v-58507dc5] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.event-table[data-v-58507dc5] {
  border-radius: 8px;
}
.event-table .q-table__top[data-v-58507dc5] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.event-table .q-table__bottom[data-v-58507dc5] {
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

/* List-like styling for event name column */
.event-table .q-td[data-v-58507dc5]:has(.text-weight-medium) {
  padding: 16px 12px;
}
.event-table .text-weight-medium[data-v-58507dc5] {
  margin-bottom: 4px;
}
.event-table .text-caption[data-v-58507dc5] {
  line-height: 1.4;
  color: #666;
}

/* Modal styling to match SCM design */
.module-modal[data-v-58507dc5] {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.modal-header[data-v-58507dc5] {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #dee2e6;
  padding: 16px 24px;
}
.scroll[data-v-58507dc5] {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}
.scroll[data-v-58507dc5]::-webkit-scrollbar {
  width: 6px;
}
.scroll[data-v-58507dc5]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.scroll[data-v-58507dc5]::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.scroll[data-v-58507dc5]::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.kpi-card[data-v-909c38c5] {
  transition: all 0.3s ease;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}
.kpi-card[data-v-909c38c5]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.icon-wrapper[data-v-909c38c5] {
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-card[data-v-909c38c5] {
  transition: all 0.3s ease;
  border-radius: 12px;
  height: 100%;
}
.module-card[data-v-909c38c5]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--q-primary);
}
.compliance-item[data-v-909c38c5] {
  border-radius: 12px;
  background-color: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.03);
  height: 100%;
  transition: all 0.3s ease;
}
.compliance-item[data-v-909c38c5]:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.financial-control-item[data-v-909c38c5] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafafa;
  transition: all 0.2s ease;
}
.financial-control-item[data-v-909c38c5]:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.hover-bg-grey-1[data-v-909c38c5]:hover {
  background-color: #f5f5f5;
}
.border-bottom-light[data-v-909c38c5] {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.border-bottom-light[data-v-909c38c5]:last-child {
  border-bottom: none;
}
.line-height-tight[data-v-909c38c5] {
  line-height: 1.1;
}
.opacity-20[data-v-909c38c5] {
  opacity: 0.2;
}

/* Custom Text Utilities */
.text-white-8[data-v-909c38c5] { color: rgba(255,255,255,0.8) !important;
}
.text-white-7[data-v-909c38c5] { color: rgba(255,255,255,0.7) !important;
}

/* Custom Text Sizes */
.text-h3[data-v-909c38c5] {
  font-size: 2.5rem;
  letter-spacing: -1px;
}

.stat-card[data-v-e12cfc48] {
  border-radius: 12px;
  transition: transform 0.2s;
}
.stat-card[data-v-e12cfc48]:hover {
  transform: translateY(-4px);
}
.search-input[data-v-e12cfc48] {
  width: 200px;
}
.text-truncate[data-v-e12cfc48] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric-card[data-v-f8d60cf8] {
  transition: transform 0.2s;
}
.metric-card[data-v-f8d60cf8]:hover {
  transform: translateY(-2px);
}
.q-card[data-v-f8d60cf8] {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-item[data-v-f8d60cf8] {
  border-radius: 8px;
  margin: 4px 0;
}
.q-item[data-v-f8d60cf8]:hover {
  background-color: #f5f5f5;
}

.metric-card[data-v-7ca6b639] {
  transition: transform 0.2s;
}
.metric-card[data-v-7ca6b639]:hover {
  transform: translateY(-2px);
}
.q-card[data-v-7ca6b639] {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.q-item[data-v-7ca6b639] {
  border-radius: 8px;
  margin: 4px 0;
}
.q-item[data-v-7ca6b639]:hover {
  background-color: #f5f5f5;
}

.executive-dashboard-page[data-v-70817a58] {
  min-height: 100%;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(46, 125, 50, 0.05) 0%, rgba(245, 247, 246, 0) 260px),
    #f5f7f6;
}
.executive-header-card[data-v-70817a58] {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
  overflow: hidden;
}
.executive-header-section[data-v-70817a58] {
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(21, 101, 192, 0.06)),
    #ffffff;
}
.dashboard-eyebrow[data-v-70817a58] {
  color: var(--q-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.dashboard-title[data-v-70817a58] {
  margin-top: 2px;
  color: #172033;
}
.dashboard-subtitle[data-v-70817a58] {
  margin-top: 4px;
  max-width: 760px;
  color: rgba(15, 23, 42, 0.64);
  font-size: 13px;
  line-height: 1.45;
}
.header-actions[data-v-70817a58] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.last-update-label[data-v-70817a58] {
  color: rgba(15, 23, 42, 0.58);
  font-size: 11px;
  font-weight: 600;
}
.executive-filter-section[data-v-70817a58] {
  padding: 14px 18px 16px;
  background: rgba(251, 252, 253, 0.82);
}
.filter-label[data-v-70817a58] {
  margin-bottom: 5px;
  color: #172033;
  font-size: 12px;
  font-weight: 800;
}
.branch-tabs[data-v-70817a58] {
  color: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #ffffff;
}
.branch-note[data-v-70817a58] {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.52);
  font-size: 11px;
}
.executive-summary-strip[data-v-70817a58] {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.summary-tile[data-v-70817a58] {
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}
.summary-tile .q-icon[data-v-70817a58] {
  margin-top: 2px;
  color: var(--q-primary);
}
.summary-copy[data-v-70817a58] {
  min-width: 0;
}
.summary-question[data-v-70817a58] {
  color: rgba(15, 23, 42, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.summary-value[data-v-70817a58] {
  margin-top: 4px;
  color: #172033;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}
.summary-sublabel[data-v-70817a58] {
  margin-top: 3px;
  color: rgba(15, 23, 42, 0.58);
  font-size: 11px;
  line-height: 1.35;
}
.summary-positive[data-v-70817a58] {
  border-color: rgba(46, 125, 50, 0.2);
}
.summary-warning[data-v-70817a58] {
  border-color: rgba(245, 124, 0, 0.28);
  background: #fffaf2;
}
.summary-grey[data-v-70817a58] {
  background: #fbfcfd;
}
.section-gap[data-v-70817a58] {
  margin-bottom: 18px;
}
.module-tabs[data-v-70817a58] {
  margin-bottom: 16px;
  color: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}
.kpi-card[data-v-70817a58] {
  min-height: 136px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kpi-card[data-v-70817a58]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.kpi-clickable[data-v-70817a58] {
  cursor: pointer;
}
.kpi-clickable[data-v-70817a58]:hover {
  border-color: rgba(46, 125, 50, 0.3);
}
.kpi-supply_chain[data-v-70817a58] {
  border-left: 4px solid #1976d2;
}
.kpi-operations[data-v-70817a58] {
  border-left: 4px solid #388e3c;
}
.kpi-accounts[data-v-70817a58] {
  border-left: 4px solid #f57c00;
}
.kpi-hr[data-v-70817a58] {
  border-left: 4px solid #7b1fa2;
}
.kpi-crm[data-v-70817a58] {
  border-left: 4px solid #d32f2f;
}
.executive-kpi[data-v-70817a58] {
  border-left: 4px solid #ff6f00;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(255, 111, 0, 0.08);
}
.executive-kpi[data-v-70817a58]:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 111, 0, 0.2);
}
.department-card[data-v-70817a58] {
  min-height: 112px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.department-card[data-v-70817a58]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.department-active[data-v-70817a58] {
  border-color: rgba(46, 125, 50, 0.45);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(21, 101, 192, 0.05));
}
.metric-card[data-v-70817a58] {
  border-radius: 12px;
  transition: all 0.3s ease;
}
.metric-card[data-v-70817a58]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chart-panel[data-v-70817a58] {
  border: 1px solid rgba(2, 119, 189, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.chart-empty[data-v-70817a58] {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.ask-hybrid-ai-panel[data-v-70817a58] {
  width: min(780px, 98vw);
  height: 85vh;
  max-height: 85vh;
  margin-bottom: 15vh;
  display: flex;
  flex-direction: column;
}
.ask-hybrid-ai-chat[data-v-70817a58] {
  flex: 1;
  min-height: 0;
}
.ask-hybrid-fab[data-v-70817a58] {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.25);
}
@media (max-width: 1100px) {
.executive-summary-strip[data-v-70817a58] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 720px) {
.executive-dashboard-page[data-v-70817a58] {
    padding: 12px;
}
.executive-summary-strip[data-v-70817a58] {
    grid-template-columns: 1fr;
}
.header-actions[data-v-70817a58] {
    justify-content: flex-start;
}
}

.stat-card[data-v-abcc8595] {
  transition: all 0.3s ease;
}
.stat-card[data-v-abcc8595]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.approval-item[data-v-abcc8595] {
  transition: background-color 0.2s ease;
}
.approval-item[data-v-abcc8595]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.urgent-item[data-v-abcc8595] {
  border-left: 4px solid #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}

.md-financial-page[data-v-04351a26] {
  background:
    radial-gradient(circle at 10% 0%, rgba(21, 101, 192, 0.08), transparent 34%),
    radial-gradient(circle at 95% 6%, rgba(56, 142, 60, 0.08), transparent 25%),
    #f8fafc;
}
.hero-card[data-v-04351a26] {
  border: 1px solid rgba(13, 71, 161, 0.15);
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 45%, #edf7f0 100%);
}
.stat-card[data-v-04351a26] {
  border: 1px solid rgba(2, 119, 189, 0.12);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.stat-card[data-v-04351a26]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(2, 32, 71, 0.1);
}
.empty-state[data-v-04351a26] {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 599px) {
.md-financial-page[data-v-04351a26] {
    padding: 10px;
}
}

.page-header-card[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
}
.stat-card-small[data-v-c0ddaf77] {
  border-radius: 12px;
  transition: transform 0.2s ease-in-out;
}
.stat-card-small[data-v-c0ddaf77]:hover {
  transform: translateY(-2px);
}
.positive-stat[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}
.primary-stat[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.warning-stat[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
}
.info-stat[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
}
.secondary-stat[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}
.negative-stat[data-v-c0ddaf77] {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

/* Main container styles */
.dashboard-page-container[data-v-579de8c1] {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
  padding: 0;
  position: relative;
}
.dashboard-content[data-v-579de8c1] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header Section with Glassmorphism */
.header-section[data-v-579de8c1] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.header-section[data-v-579de8c1]:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* Filters Section */
.filters-section[data-v-579de8c1] {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.quick-filters[data-v-579de8c1] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Enhanced KPI Cards with Modern Design */
.kpi-card-modern[data-v-579de8c1] {
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}
.kpi-card-modern[data-v-579de8c1]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #45a049);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.kpi-card-modern[data-v-579de8c1]:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
}
.kpi-card-modern[data-v-579de8c1]:hover::before {
  opacity: 1;
}
.kpi-card-content[data-v-579de8c1] {
  padding: 20px;
}
.kpi-header[data-v-579de8c1] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.kpi-icon[data-v-579de8c1] {
  background: rgba(76, 175, 80, 0.1);
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.kpi-card-modern:hover .kpi-icon[data-v-579de8c1] {
  background: rgba(76, 175, 80, 0.2);
  transform: scale(1.1);
}
.kpi-trend[data-v-579de8c1] {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}
.kpi-value[data-v-579de8c1] {
  font-size: 2rem;
  font-weight: 700;
  color: #263238;
  margin-bottom: 8px;
  line-height: 1.2;
}
.kpi-label[data-v-579de8c1] {
  font-size: 0.875rem;
  color: #616161;
  font-weight: 500;
  margin-bottom: 4px;
}
.kpi-subtitle[data-v-579de8c1] {
  font-size: 0.75rem;
  color: #9e9e9e;
}

/* Section Titles */
.section-title[data-v-579de8c1] {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid rgba(76, 175, 80, 0.2);
  margin-bottom: 16px;
}

/* Chart Cards with Modern Design */
.chart-card[data-v-579de8c1] {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  overflow: hidden;
}
.chart-card[data-v-579de8c1]:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.chart-header[data-v-579de8c1] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.chart-loading[data-v-579de8c1] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  min-height: 300px;
}

/* Alerts Card */
.alerts-card[data-v-579de8c1] {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FFC107;
}
.alert-item[data-v-579de8c1] {
  border-radius: 8px;
  margin: 4px 0;
  transition: all 0.2s ease;
}
.alert-item[data-v-579de8c1]:hover {
  background: rgba(76, 175, 80, 0.05);
}

/* Animations */
@keyframes fadeInUp-579de8c1 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes slideIn-579de8c1 {
from {
    opacity: 0;
    transform: translateX(-20px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
.kpi-card-modern[data-v-579de8c1] {
  animation: fadeInUp-579de8c1 0.6s ease-out;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(1) { animation-delay: 0.1s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(2) { animation-delay: 0.2s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(3) { animation-delay: 0.3s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(4) { animation-delay: 0.4s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(5) { animation-delay: 0.5s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(6) { animation-delay: 0.6s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(7) { animation-delay: 0.7s;
}
.kpi-card-modern[data-v-579de8c1]:nth-child(8) { animation-delay: 0.8s;
}
.chart-card[data-v-579de8c1] {
  animation: slideIn-579de8c1 0.5s ease-out;
}

/* Loading container */
.loading-container[data-v-579de8c1] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  gap: 16px;
}

/* Error container */
.error-container[data-v-579de8c1] {
  border-radius: 12px;
  background: rgba(255, 82, 82, 0.05);
  border: 1px solid rgba(255, 82, 82, 0.2);
  max-width: 600px;
  margin: 60px auto 0;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 82, 82, 0.1);
}

/* Improved focus indicators for accessibility */
[data-v-579de8c1] .q-focus-helper:focus-visible {
  outline: 2px solid var(--q-primary);
  outline-offset: 2px;
}
[data-v-579de8c1] button:focus-visible,[data-v-579de8c1] a:focus-visible,[data-v-579de8c1] .q-field:focus-visible {
  outline: 2px solid var(--q-primary);
  outline-offset: 2px;
}

/* Skip-to-content for keyboard users */
.skip-to-content[data-v-579de8c1] {
  position: absolute;
  left: -9999px;
  top: 1em;
  z-index: 999;
  background: var(--q-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
}
.skip-to-content[data-v-579de8c1]:focus {
  left: 1em;
  outline: 2px solid var(--q-primary);
  outline-offset: 2px;
}

/* Loading container */
.loading-container[data-v-579de8c1] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
  gap: 16px;
}

/* Error container */
.error-container[data-v-579de8c1] {
  border-radius: 16px;
  background: rgba(255, 82, 82, 0.05);
  border: 1px solid rgba(255, 82, 82, 0.2);
  max-width: 600px;
  margin: 60px auto 0;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 82, 82, 0.1);
}

/* Improved focus indicators for accessibility */
[data-v-579de8c1] .q-focus-helper:focus-visible {
  outline: 2px solid var(--q-primary);
  outline-offset: 2px;
}
[data-v-579de8c1] button:focus-visible,[data-v-579de8c1] a:focus-visible,[data-v-579de8c1] .q-field:focus-visible {
  outline: 2px solid var(--q-primary);
  outline-offset: 2px;
}

/* Skip-to-content for keyboard users */
.skip-to-content[data-v-579de8c1] {
  position: absolute;
  left: -9999px;
  top: 1em;
  z-index: 999;
  background: var(--q-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
}
.skip-to-content[data-v-579de8c1]:focus {
  left: 1em;
  outline: 2px solid var(--q-primary);
  outline-offset: 2px;
}

/* Responsive styles */
@media (max-width: 1024px) {
.header-section[data-v-579de8c1] {
    padding: 20px;
}
.kpi-card-modern[data-v-579de8c1] {
    margin-bottom: 16px;
}
.kpi-value[data-v-579de8c1] {
    font-size: 1.75rem;
}
}
@media (max-width: 768px) {
.dashboard-content[data-v-579de8c1] {
    padding: 12px;
}
.header-section[data-v-579de8c1] {
    padding: 16px;
}
.header-section .row[data-v-579de8c1] {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.header-section .col-auto[data-v-579de8c1] {
    margin-bottom: 8px;
}
.kpi-card-modern[data-v-579de8c1] {
    margin-bottom: 12px;
}
.kpi-value[data-v-579de8c1] {
    font-size: 1.5rem;
}
.quick-filters[data-v-579de8c1] {
    width: 100%;
}
.chart-card[data-v-579de8c1] {
    margin-bottom: 16px;
}
}
@media (max-width: 480px) {
.dashboard-content[data-v-579de8c1] {
    padding: 8px;
}
.header-section[data-v-579de8c1] {
    padding: 12px;
}
.header-section .text-h5[data-v-579de8c1] {
    font-size: 1.25rem;
}
.kpi-value[data-v-579de8c1] {
    font-size: 1.25rem;
}
.kpi-icon[data-v-579de8c1] {
    padding: 8px;
}
.chart-header[data-v-579de8c1] {
    padding: 12px 16px;
}
.section-title[data-v-579de8c1] {
    font-size: 0.875rem;
}
}

.page-header-card[data-v-42c510b5] {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stat-card-small[data-v-42c510b5] {
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.stat-card-small[data-v-42c510b5]:hover {
  transform: translateY(-2px);
}
.positive-stat[data-v-42c510b5] {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}
.warning-stat[data-v-42c510b5] {
  background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
}
.info-stat[data-v-42c510b5] {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.success-stat[data-v-42c510b5] {
  background: linear-gradient(135deg, #e8f5e8 0%, #a5d6a7 100%);
}
.negative-stat[data-v-42c510b5] {
  background: linear-gradient(135deg, #ffebee 0%, #ef9a9a 100%);
}
.controls-container[data-v-42c510b5] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.action-btn[data-v-42c510b5] {
  border-radius: 8px;
  font-weight: 500;
}
.module-card[data-v-42c510b5] {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.card-header[data-v-42c510b5] {
  border-bottom: 2px solid #f0f0f0;
}
.card-title[data-v-42c510b5] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}
.data-table[data-v-42c510b5] {
  border-radius: 8px;
}
.status-chip[data-v-42c510b5] {
  font-weight: 500;
}
.form-field[data-v-42c510b5] {
  border-radius: 8px;
}
.search-input[data-v-42c510b5] {
  border-radius: 8px;
}

/* Card and container styling */
.filter-card[data-v-54e28143] {
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  overflow: hidden;
}
.contracts-table-card[data-v-54e28143] {
  border-radius: 8px;
  overflow: hidden;
}

/* Professional Financial Theme Styles */
.page-header-card[data-v-54e28143] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-54e28143]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-54e28143] {
  margin-bottom: 8px;
}

/* Table styling */
.status-chip[data-v-54e28143] {
  min-width: 90px;
  justify-content: center;
}
.document-card[data-v-54e28143] {
  transition: transform 0.2s, box-shadow 0.2s;
}
.document-card[data-v-54e28143]:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.expiry-date[data-v-54e28143] {
  display: flex;
  align-items: center;
}

/* Status colors */
.text-red[data-v-54e28143] {
  color: #f44336 !important;
}
.text-orange[data-v-54e28143] {
  color: #ff9800 !important;
}
.text-yellow[data-v-54e28143] {
  color: #ffc107 !important;
}
.text-green[data-v-54e28143] {
  color: #4caf50 !important;
}

/* Hover effects */
.q-table tbody tr[data-v-54e28143] {
  transition: background-color 0.2s;
}
.q-table tbody tr[data-v-54e28143]:hover {
  background-color: rgba(25, 118, 210, 0.05);
}

/* Button effects */
.q-btn[data-v-54e28143]:not(.q-btn--flat):not(.q-btn--outline) {
  transition: transform 0.2s, box-shadow 0.2s;
}
.q-btn[data-v-54e28143]:not(.q-btn--flat):not(.q-btn--outline):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Animation for active status */
@keyframes pulse-54e28143 {
0% { opacity: 0.6;
}
50% { opacity: 1;
}
100% { opacity: 0.6;
}
}
.pulse-animation[data-v-54e28143] {
  animation: pulse-54e28143 2s infinite;
}

/* Responsive table styles */
.contracts-table[data-v-54e28143] {
  min-width: 800px;
}
.contracts-table .q-table__top[data-v-54e28143] {
  background-color: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
}
.contracts-table .q-table__thead th[data-v-54e28143] {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
  padding: 16px 12px;
  font-size: 0.875rem;
}
.contracts-table .q-table__tbody tr[data-v-54e28143]:hover {
  background-color: rgba(25, 118, 210, 0.05);
  transition: background-color 0.2s ease;
}
.contracts-table .q-table__tbody td[data-v-54e28143] {
  border-bottom: 1px solid #e9ecef;
  padding: 12px;
  vertical-align: middle;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
.contracts-table[data-v-54e28143] {
    font-size: 0.875rem;
}
.contracts-table .q-table__thead th[data-v-54e28143],
  .contracts-table .q-table__tbody td[data-v-54e28143] {
    padding: 8px 6px;
}
.page-header-card .text-h5[data-v-54e28143] {
    font-size: 1.25rem;
}
.filter-card[data-v-54e28143] {
    margin-bottom: 1rem;
}
}
@media (max-width: 600px) {
.contracts-table[data-v-54e28143] {
    font-size: 0.8rem;
}
.page-header-card .text-h5[data-v-54e28143] {
    font-size: 1.1rem;
}
}
/* Professional Financial Theme Styles */
.page-header-card[data-v-46e175d7] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-46e175d7]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-46e175d7] {
  margin-bottom: 8px;
}

/* Component-specific styles */
.chart-placeholder[data-v-46e175d7] {
  border: 1px dashed #ccc;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  color: #555;
}/* Professional Financial Theme Styles */
.page-header-card[data-v-57e6318b] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-57e6318b]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-57e6318b] {
  margin-bottom: 8px;
}

/* Header styles */
h5[data-v-57e6318b] {
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* Main card styling */
.main-card[data-v-57e6318b] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Table styling */
.responsive-table[data-v-57e6318b] th,
.responsive-table[data-v-57e6318b] td {
  white-space: normal !important;
  padding: 8px;
}
.responsive-table[data-v-57e6318b] .q-table__container {
  max-width: 100%;
  overflow-x: auto;
}
.responsive-table[data-v-57e6318b] thead tr:first-child th {
  background-color: #f5f5f5;
  font-weight: 500;
}
.responsive-table[data-v-57e6318b] tbody tr:hover {
  background-color: rgba(25, 118, 210, 0.05);
}

/* Tab styling */
.q-tabs[data-v-57e6318b] .q-tab {
  min-height: 48px;
}
.q-tabs[data-v-57e6318b] .q-tab__icon {
  margin-right: 8px;
}
.q-tab-panel[data-v-57e6318b] {
  padding: 16px;
}

/* Button animations */
.q-btn[data-v-57e6318b]:not(.q-btn--flat):not(.q-btn--outline) {
  transition: transform 0.2s, box-shadow 0.2s;
}
.q-btn[data-v-57e6318b]:not(.q-btn--flat):not(.q-btn--outline):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Card hover effects */
.wallet-card[data-v-57e6318b] {
  transition: transform 0.2s;
}
.wallet-card[data-v-57e6318b]:hover {
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
.q-tab-panel[data-v-57e6318b] {
    padding: 12px 8px;
}
.q-table[data-v-57e6318b] {
    font-size: 12px;
}
}
.sales-chart[data-v-100b3c66] {
  width: 100%;
  height: 260px;
}
.chart-loading[data-v-100b3c66] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 4px;
}
/* Professional Financial Theme Styles */
.page-header-card[data-v-3b13b78d] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-3b13b78d]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-3b13b78d] {
  margin-bottom: 8px;
}

/* Component-specific styles */
.chart-placeholder[data-v-3b13b78d] {
  border: 1px dashed #ccc;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  color: #555;
}/* Professional Financial Theme Styles */
.page-header-card[data-v-1fed9920] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-1fed9920]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-1fed9920] {
  margin-bottom: 8px;
}
.main-communication-card[data-v-1fed9920] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.q-tabs .q-tab[data-v-1fed9920] {
  min-height: 48px;
}
.q-tabs .q-tab__icon[data-v-1fed9920] {
  margin-right: 8px;
}
.q-tab-panel[data-v-1fed9920] {
  padding: 16px;
}
.conversation-inbox-container[data-v-1fed9920] {
  min-height: calc(100vh - 300px); /* Adjust height as needed */
  max-height: calc(100vh - 300px); /* Adjust height as needed */
}
.conversations-list-card[data-v-1fed9920] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.conversations-list[data-v-1fed9920] {
  flex-grow: 1;
}
.message-thread-card[data-v-1fed9920] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.message-list-scroll-area[data-v-1fed9920] {
  flex-grow: 1;
  height: 100%; /* Ensure it takes full height of parent */
}
.message-list[data-v-1fed9920] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.message-bubble[data-v-1fed9920] {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 15px;
  position: relative;
  word-wrap: break-word;
}
.incoming-message[data-v-1fed9920] {
  background-color: #e0e0e0;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.outgoing-message[data-v-1fed9920] {
  background-color: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.message-timestamp[data-v-1fed9920] {
  font-size: 0.7em;
  color: #757575;
  margin-top: 5px;
  text-align: right;
}
.message-attachment[data-v-1fed9920] {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px;
}
.message-input-area[data-v-1fed9920] {
  border-top: 1px solid #e0e0e0;
}
.status-select[data-v-1fed9920], .assign-select[data-v-1fed9920] {
  min-width: 120px;
}
.template-preview-content[data-v-1fed9920] {
  white-space: pre-wrap; /* Preserve whitespace and line breaks */
  word-break: break-word;
}

/* Message Modal Styles */
.message-modal-card[data-v-1fed9920] {
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.message-composition[data-v-1fed9920] {
  max-width: 800px;
  margin: 0 auto;
}

/* Method Selection */
.method-selection .q-option-group[data-v-1fed9920] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.method-checkboxes .q-checkbox[data-v-1fed9920] {
  margin: 0;
}
.method-checkboxes .q-checkbox__label[data-v-1fed9920] {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Message Content */
.message-content .q-editor[data-v-1fed9920] {
  border-radius: 8px;
  border: 2px solid #e1e5e9;
}
.message-content .q-editor[data-v-1fed9920]:focus-within {
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

/* Message Preview */
.message-preview[data-v-1fed9920] {
  margin-top: 20px;
}
.preview-card[data-v-1fed9920] {
  background: #f8f9fa;
  border-radius: 8px;
}
.message-preview-content[data-v-1fed9920] {
  font-size: 14px;
  line-height: 1.5;
  color: #495057;
}
.message-preview-content p[data-v-1fed9920] {
  margin: 8px 0;
}
.message-preview-content strong[data-v-1fed9920] {
  font-weight: 600;
}
.message-preview-content ul[data-v-1fed9920],
.message-preview-content ol[data-v-1fed9920] {
  margin: 8px 0;
  padding-left: 20px;
}
.message-preview-content a[data-v-1fed9920] {
  color: #1976d2;
  text-decoration: underline;
}

/* Recipients List */
.recipients-list[data-v-1fed9920] {
  margin-top: 20px;
}
.recipients-card[data-v-1fed9920] {
  background: #f8f9fa;
  border-radius: 8px;
}
.recipients-grid[data-v-1fed9920] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  max-height: 200px;
  overflow-y: auto;
}
.recipient-item[data-v-1fed9920] {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.recipient-info[data-v-1fed9920] {
  flex: 1;
  min-width: 0;
}
.recipient-name[data-v-1fed9920] {
  font-weight: 500;
  font-size: 14px;
  color: #495057;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recipient-contact[data-v-1fed9920] {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recipient-methods[data-v-1fed9920] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.selected-methods-chips[data-v-1fed9920] {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.last-communication-cell[data-v-1fed9920] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.communication-date[data-v-1fed9920] {
  font-weight: 500;
}
.communication-days[data-v-1fed9920] {
  font-size: 0.75rem;
}/* Professional Financial Theme Styles */
.page-header-card[data-v-872e846f] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-872e846f]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-872e846f] {
  margin-bottom: 8px;
}

/* Header styles */
h5[data-v-872e846f] {
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* Card styling */
.filter-card[data-v-872e846f] {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #4CAF50;
}
.main-card[data-v-872e846f] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Table styling */
[data-v-872e846f] .q-table th {
  font-weight: 500;
  background-color: #f5f5f5;
}
[data-v-872e846f] .q-table tbody tr:hover {
  background-color: rgba(25, 118, 210, 0.05);
}

/* Chart visualization styles */
.chart-visualization[data-v-872e846f] {
  transition: filter 0.3s ease;
}
.bar-chart-item[data-v-872e846f] {
  transition: transform 0.2s ease;
}
.bar-chart-item[data-v-872e846f]:hover {
  transform: translateX(4px);
}
.key-contributor-item[data-v-872e846f] {
  transition: background-color 0.2s ease;
}
.key-contributor-item[data-v-872e846f]:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Loading state */
.blur-content[data-v-872e846f] {
  filter: blur(1px);
  opacity: 0.7;
}

/* Animation effects */
@keyframes pulse-872e846f {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
100% {
    transform: scale(1);
}
}
.pareto-visualization .q-card[data-v-872e846f] {
  transition: transform 0.3s ease;
}
.pareto-visualization .q-card[data-v-872e846f]:hover {
  transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
.chart-visualization[data-v-872e846f] {
    overflow-x: auto;
}
.bar-chart-item[data-v-872e846f] {
    min-width: 350px;
}
}.page-header-card[data-v-527a7a7f] {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-left: 4px solid #178a2c;
}
.statistics-cards .stat-card[data-v-527a7a7f] {
  transition: transform 0.2s, box-shadow 0.2s;
}
.statistics-cards .stat-card[data-v-527a7a7f]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.filter-card[data-v-527a7a7f] {
  background-color: #fafafa;
}
.description-cell[data-v-527a7a7f] {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
/* Add any specific styles for this modal here if needed */

.upload-zone[data-v-f38e6c50] {
  border: 2px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.upload-zone[data-v-f38e6c50]:hover,
.upload-zone.drag-over[data-v-f38e6c50] {
  border-color: var(--q-primary);
  background-color: rgba(0, 123, 255, 0.05);
}
.upload-zone.drag-over[data-v-f38e6c50] {
  background-color: rgba(0, 123, 255, 0.1);
}

.text-document-editor[data-v-16370ef5] {
  width: 100%;
}
.editor-header[data-v-16370ef5] {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}
.editor-actions[data-v-16370ef5] {
  display: flex;
  gap: 8px;
}
.fullscreen-btn[data-v-16370ef5] {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.fullscreen-btn[data-v-16370ef5]:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}
.rich-editor-container[data-v-16370ef5] {
  position: relative;
}
.resize-guide[data-v-16370ef5] {
  position: absolute;
  width: 1px;
  background: #178a2c;
  z-index: 10;
}
.table-overlay[data-v-16370ef5] {
  position: absolute;
  border: 1px dashed #178a2c;
  pointer-events: none;
  z-index: 9;
}
.table-overlay .handle[data-v-16370ef5] {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #178a2c;
  border-radius: 2px;
  pointer-events: auto;
  cursor: pointer;
}
.table-overlay .handle.move[data-v-16370ef5] {
  left: -14px;
  top: -14px;
  cursor: grab;
}
.table-overlay .handle.br[data-v-16370ef5] {
  right: -6px;
  bottom: -6px;
  cursor: se-resize;
}
.table-overlay .handle.l[data-v-16370ef5] {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  cursor: ew-resize;
}
.table-overlay .handle.indent[data-v-16370ef5] {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.insert-guide[data-v-16370ef5] {
  position: absolute;
  height: 2px;
  background: #21ba45;
  z-index: 8;
}

/* Image overlay */
.image-overlay[data-v-16370ef5] {
  position: absolute;
  border: 1px dashed #1a73e8;
  pointer-events: none;
  z-index: 9;
}
.image-overlay .handle[data-v-16370ef5] {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #1a73e8;
  border-radius: 2px;
  pointer-events: auto;
  cursor: pointer;
}
.image-overlay .handle.move[data-v-16370ef5] {
  left: -14px;
  top: -14px;
  cursor: grab;
  width: 14px;
  height: 14px;
}
.image-overlay .handle.indent[data-v-16370ef5] {
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.image-overlay .handle.tl[data-v-16370ef5] { left: -6px; top: -6px; cursor: nw-resize;
}
.image-overlay .handle.tr[data-v-16370ef5] { right: -6px; top: -6px; cursor: ne-resize;
}
.image-overlay .handle.bl[data-v-16370ef5] { left: -6px; bottom: -6px; cursor: sw-resize;
}
.image-overlay .handle.br[data-v-16370ef5] { right: -6px; bottom: -6px; cursor: se-resize;
}
.image-overlay .handle.l[data-v-16370ef5] { left: -6px; top: 50%; transform: translateY(-50%); cursor: ew-resize;
}
.image-overlay .handle.r[data-v-16370ef5] { right: -6px; top: 50%; transform: translateY(-50%); cursor: ew-resize;
}
.image-overlay .handle.t[data-v-16370ef5] { top: -6px; left: 50%; transform: translateX(-50%); cursor: ns-resize;
}
.image-overlay .handle.b[data-v-16370ef5] { bottom: -6px; left: 50%; transform: translateX(-50%); cursor: ns-resize;
}
.rich-text-editor[data-v-16370ef5] {
  background: white;
  border-radius: 4px;
  overflow: hidden;
}
.rich-text-editor[data-v-16370ef5] .q-editor__content {
  padding: 20px;
  line-height: 1.6;
  font-size: 14px;
  /* Ensure floats do not overflow the container */
  overflow: auto;
}
.rich-text-editor[data-v-16370ef5] .q-editor__toolbar {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
}
.rich-text-editor[data-v-16370ef5] .q-editor__toolbar .q-btn {
  border-radius: 4px;
  margin: 2px;
  min-width: 32px;
  min-height: 32px;
}
.rich-text-editor[data-v-16370ef5] .q-editor__toolbar .q-btn:hover {
  background: rgba(33, 186, 69, 0.1);
}

/* Table default classes for newly inserted tables */
.dms-table[data-v-16370ef5] {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.dms-table .dms-cell[data-v-16370ef5] {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

/* Image Upload Styles */
.upload-area[data-v-16370ef5] {
  padding: 16px;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.image-preview[data-v-16370ef5] {
  text-align: center;
}
.preview-image[data-v-16370ef5] {
  max-width: 100%;
  max-height: 200px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* Table Preview Styles */
.table-preview[data-v-16370ef5] {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.table-grid[data-v-16370ef5] {
  display: grid;
  gap: 1px;
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.table-row[data-v-16370ef5] {
  display: contents;
}

/* Imported Table Styles */
.table-imported[data-v-16370ef5] {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 1px solid #e0e0e0;
  background: white;
}
.table-imported th[data-v-16370ef5],
.table-imported td[data-v-16370ef5] {
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
  min-width: 80px;
}
.table-imported th[data-v-16370ef5] {
  background-color: #f8f9fa;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}
.table-imported tr[data-v-16370ef5]:nth-child(even) {
  background-color: #f8f9fa;
}
.table-imported tr[data-v-16370ef5]:hover {
  background-color: #e9ecef;
}

/* Image wrapping */
.img-wrap[data-v-16370ef5] {
  display: inline-block;
  max-width: 100%;
}
.img-wrap.left[data-v-16370ef5] {
  float: left;
  margin: 0 16px 8px 0;
}
.img-wrap.right[data-v-16370ef5] {
  float: right;
  margin: 0 0 8px 16px;
}
.img-wrap.break[data-v-16370ef5] {
  display: block;
  float: none;
  clear: both;
  margin: 12px auto;
}
.table-cell[data-v-16370ef5] {
  background: white;
  min-height: 20px;
  border: 1px solid #ddd;
}
.modal-card[data-v-16370ef5] {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 768px) {
.rich-text-editor[data-v-16370ef5] .q-editor__content {
    min-height: 300px;
    padding: 16px;
}
}

.drawer-content[data-v-63cf45d1] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer-header[data-v-63cf45d1] {
  border-bottom: 2px solid var(--q-primary);
}
.dms-page[data-v-63cf45d1] {
  height: 100%;
  background: #fafafa;
  min-height: calc(100vh - 64px);
  padding: 24px;
}
.dms-navigation[data-v-63cf45d1] {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 24px;
  border: none;
}
.dms-header[data-v-63cf45d1] {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  color: #263238;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  margin-bottom: 24px;
}
.dms-header-icon[data-v-63cf45d1] {
  background: rgba(33, 186, 69, 0.12);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: none;
}
.dms-header-icon .q-icon[data-v-63cf45d1] {
  color: #21ba45;
}
.dms-header h5[data-v-63cf45d1] {
  color: #178a2c;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 16px 0 8px 0;
}
.dms-header p[data-v-63cf45d1] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}
.nav-btn[data-v-63cf45d1] {
  text-align: left;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  border: none;
  background: transparent;
  color: #263238;
  margin-bottom: 4px;
  min-height: 48px;
}
.nav-btn[data-v-63cf45d1]:hover {
  background: rgba(33, 186, 69, 0.08);
  color: #21ba45;
  box-shadow: none;
}
.nav-btn-active[data-v-63cf45d1] {
  background: rgba(33, 186, 69, 0.12);
  color: #21ba45 !important;
  border: none;
  box-shadow: none;
  font-weight: 500;
}
.dms-actions[data-v-63cf45d1] {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 20px;
}
.action-btn[data-v-63cf45d1] {
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  min-height: 48px;
  text-transform: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.action-btn[data-v-63cf45d1]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.folders-section[data-v-63cf45d1] {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 20px;
}
.folders-header h6[data-v-63cf45d1] {
  color: #263238;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 16px 0;
}
.folders-list[data-v-63cf45d1] {
  max-height: 300px;
  overflow-y: auto;
}
.folder-item[data-v-63cf45d1] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4px;
  border: none;
  min-height: 48px;
}
.folder-item[data-v-63cf45d1]:hover {
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.folder-active[data-v-63cf45d1] {
  background: rgba(33, 186, 69, 0.12);
  color: #21ba45;
  border: none;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.folder-content[data-v-63cf45d1] {
  display: flex;
  align-items: center;
  flex: 1;
}
.folder-name[data-v-63cf45d1] {
  font-weight: 500;
  margin-right: 8px;
  font-size: 0.875rem;
}
.folder-count[data-v-63cf45d1] {
  color: #666;
  font-size: 0.75rem;
}
.dms-content[data-v-63cf45d1] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: calc(100vh - 120px);
  border: none;
}
.new-document-modal[data-v-63cf45d1] {
  max-width: 1200px;
  width: 90vw;
  border-radius: 8px;
}
.document-details[data-v-63cf45d1] {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: none;
}
.text-editor-section[data-v-63cf45d1] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
}
.fullscreen-editor-modal[data-v-63cf45d1] {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}
.fullscreen-header[data-v-63cf45d1] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 24px;
}
.fullscreen-actions[data-v-63cf45d1] {
  display: flex;
  gap: 8px;
}
.fullscreen-content[data-v-63cf45d1] {
  background: #fff;
}
.upload-modal[data-v-63cf45d1],
.folder-modal[data-v-63cf45d1] {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Input Styling */
.q-input--outlined .q-field__control[data-v-63cf45d1] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-input--outlined .q-field__control[data-v-63cf45d1]:hover {
  border-color: #21ba45;
}
.q-input--outlined .q-field--focused .q-field__control[data-v-63cf45d1] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Button Styling */
.q-btn[data-v-63cf45d1] {
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-btn--outline[data-v-63cf45d1] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
}
.q-btn--outline[data-v-63cf45d1]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
}

/* Material Design Card Styling */
.q-card[data-v-63cf45d1] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.q-card[data-v-63cf45d1]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Dialog Styling */
.q-dialog__inner--minimized > div[data-v-63cf45d1] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 768px) {
.dms-page[data-v-63cf45d1] {
    padding: 16px;
}
.dms-navigation[data-v-63cf45d1] {
    padding: 16px;
}
.nav-btn[data-v-63cf45d1] {
    min-height: 44px;
    padding: 10px 14px;
}
.action-btn[data-v-63cf45d1] {
    min-height: 44px;
}
}

/* PO-inspired Card Styling */
.document-card[data-v-a439a857] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 80px;
  background: #fff;
}
.document-card[data-v-a439a857]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.document-header[data-v-a439a857] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.document-status[data-v-a439a857] {
  display: flex;
  justify-content: flex-start;
}
.document-actions-top[data-v-a439a857] {
  display: flex;
  gap: 4px;
  opacity: 1;
}
.document-icon-section[data-v-a439a857] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}
.document-icon[data-v-a439a857] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(33, 186, 69, 0.1);
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.document-card:hover .document-icon[data-v-a439a857] {
  transform: scale(1.05);
  background: rgba(33, 186, 69, 0.15);
}
.document-info[data-v-a439a857] {
  flex: 1;
  text-align: center;
}
.document-title[data-v-a439a857] {
  color: #263238;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2; /* Standard property for line clamping */
}
.document-meta[data-v-a439a857] {
  display: flex;
  gap: 4px;
  margin: 0 0 4px 0;
  justify-content: center;
    font-weight: 500;
}
.document-type[data-v-a439a857] {
    color: #666;
  font-size: 0.625rem;
  font-weight: 500;
  background: #f5f5f5;
  padding: 1px 3px;
  border-radius: 2px;
}
.document-size[data-v-a439a857] {
  color: #999;
  font-size: 0.625rem;
}
.document-details[data-v-a439a857] {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
}
.detail-item[data-v-a439a857] {
  display: flex;
  align-items: center;
  gap: 3px;
}
.detail-text[data-v-a439a857] {
  color: #666;
  font-size: 0.625rem;
}
.amount-text[data-v-a439a857] {
  color: #21ba45;
  font-weight: 600;
}
.description-text[data-v-a439a857] {
  color: #666;
  font-style: italic;
  max-width: 120px;
    overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.approval-text[data-v-a439a857] {
  color: #1976d2;
    font-weight: 500;
}
.document-actions-bottom[data-v-a439a857] {
  border-top: 1px solid #f0f0f0;
  padding-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.action-buttons-left[data-v-a439a857] {
  display: flex;
  gap: 2px;
}
.view-btn[data-v-a439a857],
.share-btn[data-v-a439a857],
.edit-btn[data-v-a439a857],
.options-btn[data-v-a439a857],
.copy-btn[data-v-a439a857] {
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.view-btn[data-v-a439a857]:hover {
  background: rgba(33, 186, 69, 0.1);
  transform: scale(1.1);
}
.share-btn[data-v-a439a857]:hover {
  background: rgba(156, 39, 176, 0.1);
  transform: scale(1.1);
}
.edit-btn[data-v-a439a857]:hover {
  background: rgba(255, 152, 0, 0.1);
  transform: scale(1.1);
}
.options-btn[data-v-a439a857]:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}
.copy-btn[data-v-a439a857]:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}

/* PO-inspired Menu Styling */
.document-options-menu[data-v-a439a857] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: none;
}
.document-options-menu .q-item[data-v-a439a857] {
  min-height: 48px;
  padding: 12px 16px;
    border-radius: 4px;
  margin: 2px 4px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.document-options-menu .q-item[data-v-a439a857]:hover {
  background: rgba(33, 186, 69, 0.08);
}
.document-options-menu .q-item-section[data-v-a439a857] {
  min-width: 0;
}
.document-options-menu .q-item-section--avatar[data-v-a439a857] {
  min-width: 40px;
}

/* PO-inspired Button Styling */
.q-btn[data-v-a439a857] {
  border-radius: 6px;
  font-weight: 500;
  text-transform: none;
  transition: all 0.2s ease;
}
.q-btn--flat[data-v-a439a857] {
    box-shadow: none;
}
.q-btn--flat[data-v-a439a857]:hover {
    background: rgba(0, 0, 0, 0.08);
}
.q-btn--round[data-v-a439a857] {
    border-radius: 50%;
}
  
/* PO-inspired Chip Styling */
.q-chip[data-v-a439a857] {
  border-radius: 16px;
  font-weight: 500;
  min-height: 18px;
  padding: 0 5px;
}

/* Accounts Dashboard Card Styling */
.document-card[data-v-a439a857] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-left: 4px solid var(--q-primary);
}
.document-card[data-v-a439a857]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Document Card Themes based on status */
.document-card[data-status="For Approval"][data-v-a439a857] {
  background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
  border-left: 4px solid var(--q-orange);
}
.document-card[data-status="Approved"][data-v-a439a857] {
  background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
  border-left: 4px solid var(--q-positive);
}
.document-card[data-status="Rejected"][data-v-a439a857] {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-left: 4px solid var(--q-negative);
}
.document-card[data-status="Draft"][data-v-a439a857] {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border-left: 4px solid var(--q-info);
}

/* General card styling */
.q-card[data-v-a439a857] {
  border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}
.q-card[data-v-a439a857]:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
  
/* Responsive Design */
@media (max-width: 768px) {
.document-actions-top[data-v-a439a857] {
    opacity: 1;
}
.copy-btn[data-v-a439a857],
  .view-btn[data-v-a439a857],
  .share-btn[data-v-a439a857],
  .edit-btn[data-v-a439a857],
  .options-btn[data-v-a439a857] {
    min-width: 24px;
    min-height: 24px;
}
.document-title[data-v-a439a857] {
    font-size: 0.6875rem;
}
.document-meta[data-v-a439a857] {
    flex-direction: column;
    gap: 1px;
}
.document-icon[data-v-a439a857] {
    width: 36px;
    height: 36px;
}
}

  /* Trash view styling */
.trash-card[data-v-a439a857] {
    opacity: 0.7;
    border: 1px solid #ff6b6b !important;
}
.trash-card[data-v-a439a857]:hover {
    opacity: 0.8;
}
.restore-btn[data-v-a439a857] {
    background-color: #1976d2 !important;
    color: white !important;
}
  
/* Add any specific styles for your modal here */

/* Add any specific styles for the modal here if needed */

.document-grid-view[data-v-1b461996] {
  padding: 24px;
  background: #fafafa;
}
.grid-header[data-v-1b461996] {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.grid-header h4[data-v-1b461996] {
  color: #178a2c;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 4px 0;
}
.grid-header p[data-v-1b461996] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}
.filters-section[data-v-1b461996] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.grid-content[data-v-1b461996] {
  min-height: 400px;
}
.list-content[data-v-1b461996] {
  min-height: 400px;
}
.documents-table[data-v-1b461996] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.status-chip[data-v-1b461996] {
  font-weight: 500;
  border-radius: 16px;
  min-height: 24px;
  padding: 0 8px;
}
.pagination-section[data-v-1b461996] {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 24px;
}
.pagination-section p[data-v-1b461996] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

/* Material Design Input Styling */
.q-input--outlined .q-field__control[data-v-1b461996] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-input--outlined .q-field__control[data-v-1b461996]:hover {
  border-color: #21ba45;
}
.q-input--outlined .q-field--focused .q-field__control[data-v-1b461996] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Button Styling */
.q-btn[data-v-1b461996] {
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
}
.q-btn--outline[data-v-1b461996] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.q-btn--outline[data-v-1b461996]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.q-btn--flat[data-v-1b461996] {
  box-shadow: none;
}
.q-btn--flat[data-v-1b461996]:hover {
  background: rgba(0, 0, 0, 0.08);
}
.q-btn--round[data-v-1b461996] {
  border-radius: 50%;
}

/* Material Design Card Styling */
.q-card[data-v-1b461996] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.q-card[data-v-1b461996]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Table Styling */
.q-table[data-v-1b461996] {
  border-radius: 8px;
  overflow: hidden;
}
.q-table__thead th[data-v-1b461996] {
  background: #f5f5f5;
  color: #263238;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
  min-height: 48px;
}
.q-table__tbody tr[data-v-1b461996] {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-table__tbody tr[data-v-1b461996]:hover {
  background: rgba(33, 186, 69, 0.04);
}
.q-table__tbody td[data-v-1b461996] {
  border-bottom: 1px solid #f0f0f0;
  min-height: 48px;
}

/* Material Design Pagination Styling */
.q-pagination[data-v-1b461996] {
  border-radius: 4px;
}
.q-pagination .q-btn[data-v-1b461996] {
  border-radius: 4px;
  min-width: 40px;
  min-height: 40px;
  margin: 0 2px;
}
.q-pagination .q-btn--active[data-v-1b461996] {
  background: #21ba45;
  color: white;
  box-shadow: 0 2px 4px rgba(33, 186, 69, 0.3);
}

/* Material Design Select Styling */
.q-select--outlined .q-field__control[data-v-1b461996] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-select--outlined .q-field__control[data-v-1b461996]:hover {
  border-color: #21ba45;
}
.q-select--outlined .q-field--focused .q-field__control[data-v-1b461996] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Menu Styling */
.q-menu[data-v-1b461996] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.q-list[data-v-1b461996] {
  border-radius: 8px;
}
.q-list .q-item[data-v-1b461996] {
  border-radius: 4px;
  margin: 2px 4px;
  min-height: 48px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-list .q-item[data-v-1b461996]:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
.document-grid-view[data-v-1b461996] {
    padding: 16px;
}
.filters-section[data-v-1b461996] {
    padding: 16px;
}
.grid-content .col-12[data-v-1b461996] {
    margin-bottom: 16px;
}
.q-btn[data-v-1b461996] {
    min-height: 36px;
}
.q-pagination .q-btn[data-v-1b461996] {
    min-width: 36px;
    min-height: 36px;
}
}

/* ─── Shell ─── */
.dms-scanner-card[data-v-f5ae0dec] {
  background: #f6f8fb;
  color: #202124;
  overflow-y: auto;
}
.scanner-topbar[data-v-f5ae0dec] {
  height: 56px;
  background: #fff;
  flex-shrink: 0;
  border-bottom: 1px solid #e6e9ef;
}
.scanner-sublabel[data-v-f5ae0dec] {
  background: #fff;
  flex-shrink: 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf0f4;
}

/* ─── Step indicator ─── */
.step-row[data-v-f5ae0dec] { gap: 4px;
}
.step-dot[data-v-f5ae0dec] {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d5dbe5;
  transition: background 0.3s;
}
.step-dot--active[data-v-f5ae0dec] { background: #1976d2;
}
.step-dot--done[data-v-f5ae0dec]   { background: #21ba45;
}
.step-line[data-v-f5ae0dec] {
  width: 24px; height: 2px;
  background: #d5dbe5;
  border-radius: 1px;
  transition: background 0.3s;
}
.step-line--active[data-v-f5ae0dec] { background: #21ba45;
}

/* ─── Camera toolbar ─── */
.camera-toolbar[data-v-f5ae0dec] {
  background: #fff;
  flex-shrink: 0;
  border-bottom: 1px solid #edf0f4;
}

/* ─── Camera video ─── */
.scanner-workspace[data-v-f5ae0dec] {
  min-height: 0;
  overflow: visible;
  background: #f6f8fb;
}
.scanner-main-panel[data-v-f5ae0dec] {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.scanner-side-panel[data-v-f5ae0dec],
.right-rail[data-v-f5ae0dec] {
  min-height: 320px;
  max-height: 680px;
  overflow: hidden;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.right-rail--light[data-v-f5ae0dec] {
  background: #fff;
  border-color: #e3e7ee;
  height: auto;
}
.right-rail-title[data-v-f5ae0dec] {
  flex-shrink: 0;
  min-height: 28px;
  color: #d8dde4;
  color: #435064;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.right-rail--light .right-rail-title[data-v-f5ae0dec] {
  color: #435064;
}
.right-doc-list[data-v-f5ae0dec] {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 2px 2px;
}
.right-doc-thumb[data-v-f5ae0dec] {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #eef1f6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}
.right-doc-thumb[data-v-f5ae0dec]:hover {
  border-color: #26a69a;
  transform: translateY(-1px);
}
.right-doc-thumb--active[data-v-f5ae0dec] {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.18);
}
.right-doc-img[data-v-f5ae0dec] {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.right-doc-num[data-v-f5ae0dec] {
  position: absolute;
  left: 6px;
  bottom: 5px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: rgba(0,0,0,0.68);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.right-doc-del[data-v-f5ae0dec] {
  position: absolute;
  top: 4px;
  right: 4px;
  color: white;
  background: rgba(0,0,0,0.55) !important;
}
.right-doc-badge[data-v-f5ae0dec] {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 9px;
  height: 9px;
  min-height: 9px;
  padding: 0;
}
.empty-rail[data-v-f5ae0dec] {
  flex: 1;
  min-height: 160px;
  color: #8b95a5;
}
.camera-video-section[data-v-f5ae0dec] {
  background: #000;
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.camera-inner[data-v-f5ae0dec] {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.camera-video[data-v-f5ae0dec] {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  display: block; object-fit: contain;
}
.camera-overlay-svg[data-v-f5ae0dec] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ─── Fade transition ─── */
.fade-enter-active[data-v-f5ae0dec], .fade-leave-active[data-v-f5ae0dec] { transition: opacity 0.25s;
}
.fade-enter-from[data-v-f5ae0dec], .fade-leave-to[data-v-f5ae0dec] { opacity: 0;
}

/* ─── Capture flash ─── */
.capture-flash[data-v-f5ae0dec] {
  position: absolute; inset: 0;
  background: white;
  pointer-events: none;
  animation: flash-fade-f5ae0dec 0.22s ease-out forwards;
}
@keyframes flash-fade-f5ae0dec {
0%   { opacity: 0.75;
}
100% { opacity: 0;
}
}

/* ─── Batch strip ─── */
.batch-strip[data-v-f5ae0dec] {
  flex-shrink: 0;
  padding-top: 8px;
}
.batch-strip-scroll[data-v-f5ae0dec] {
  display: flex; flex-direction: row; gap: 8px;
  overflow-x: auto; padding-bottom: 4px;
}
.batch-thumb[data-v-f5ae0dec] {
  position: relative; flex-shrink: 0;
  width: 60px; height: 80px;
  border-radius: 6px; overflow: hidden;
  background: #2a2a2a; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.batch-thumb[data-v-f5ae0dec]:hover { border-color: #21ba45;
}
.batch-thumb-img[data-v-f5ae0dec] { width: 100%; height: 100%; object-fit: cover; display: block;
}
.batch-thumb-num[data-v-f5ae0dec] {
  position: absolute; bottom: 2px; right: 3px;
  font-size: 9px; font-weight: 700; color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}
.batch-thumb-del[data-v-f5ae0dec] {
  position: absolute; top: 1px; left: 1px;
  background: rgba(0,0,0,0.6) !important;
}

/* ─── Camera action bar ─── */
.camera-actions[data-v-f5ae0dec] {
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ─── Shutter button ─── */
.shutter-btn[data-v-f5ae0dec] {
  width: 68px; height: 68px; border-radius: 50%;
  background: white;
  border: 4px solid rgba(255,255,255,0.25);
  outline: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1), 0 4px 20px rgba(0,0,0,0.5);
}
.shutter-btn[data-v-f5ae0dec]:hover { transform: scale(1.06); box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 6px 24px rgba(0,0,0,0.6);
}
.shutter-btn[data-v-f5ae0dec]:active { transform: scale(0.93);
}
.shutter-btn[data-v-f5ae0dec]:disabled { opacity: 0.35; cursor: not-allowed; transform: none;
}
.shutter-inner[data-v-f5ae0dec] {
  width: 52px; height: 52px; border-radius: 50%;
  background: #222;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.4);
}

/* ─── Preview phase ─── */
.preview-bg[data-v-f5ae0dec] {
  background: #f6f8fb;
  overflow: visible;
}
.preview-layout[data-v-f5ae0dec] {
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}
.selected-doc-panel[data-v-f5ae0dec] {
  background: white;
  border: 1px solid #e3e7ee;
  border-radius: 8px;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.selected-doc-toolbar[data-v-f5ae0dec] {
  min-height: 48px;
  border-bottom: 1px solid #e9edf3;
  background: #fbfcfe;
  flex-shrink: 0;
}
.selected-doc-stage[data-v-f5ae0dec] {
  flex: 1;
  min-height: 420px;
  background: #15171b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.selected-doc-img[data-v-f5ae0dec] {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.selected-doc-info[data-v-f5ae0dec] {
  flex-shrink: 0;
  border-top: 1px solid #e9edf3;
  background: #fff;
}
.preview-doc-card[data-v-f5ae0dec] {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.18s, transform 0.15s;
}
.preview-doc-card[data-v-f5ae0dec]:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.preview-thumb-wrap[data-v-f5ae0dec] {
  position: relative;
  padding-top: 140%;
  background: #ddd;
  cursor: zoom-in;
  overflow: hidden;
}
.preview-thumb-img[data-v-f5ae0dec] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.2s;
}
.preview-thumb-wrap:hover .preview-thumb-img[data-v-f5ae0dec] { transform: scale(1.04);
}
.preview-thumb-zoom[data-v-f5ae0dec] {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
}
.preview-thumb-wrap:hover .preview-thumb-zoom[data-v-f5ae0dec] { background: rgba(0,0,0,0.3);
}
.preview-doc-num[data-v-f5ae0dec] {
  position: absolute; top: 6px; left: 6px;
  background: rgba(0,0,0,0.55);
  color: white; font-size: 10px; font-weight: 700;
  border-radius: 4px; padding: 1px 5px;
}
.preview-cropped-badge[data-v-f5ae0dec] {
  position: absolute; bottom: 6px; right: 6px;
  font-size: 9px;
}
.preview-doc-actions[data-v-f5ae0dec] { background: #f9f9f9; border-top: 1px solid #f0f0f0;
}

/* ─── Metadata panel ─── */
.metadata-panel[data-v-f5ae0dec] {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.metadata-panel--embedded[data-v-f5ae0dec] {
  flex-shrink: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  max-height: 320px;
  overflow-y: auto;
}
.metadata-panel-header[data-v-f5ae0dec] {
  background: #f7f8fa;
  border-bottom: 1px solid #eee;
  padding: 14px 16px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ─── Uploading phase ─── */
.uploading-bg[data-v-f5ae0dec] { background: #f2f4f6;
}
.upload-pulse[data-v-f5ae0dec] { animation: pulse-f5ae0dec 1.8s ease-in-out infinite;
}
@keyframes pulse-f5ae0dec {
0%, 100% { opacity: 1; transform: scale(1);
}
50% { opacity: 0.6; transform: scale(0.92);
}
}
.upload-item-list[data-v-f5ae0dec] { display: flex; flex-direction: column; gap: 6px;
}
.upload-item-row[data-v-f5ae0dec] {
  background: white; border-radius: 6px;
  padding: 6px 10px;
  border: 1px solid #eee;
}

/* ─── Full preview dialog ─── */
.full-preview-card[data-v-f5ae0dec] { background: #111; max-width: 94vw;
}
.full-preview-body[data-v-f5ae0dec] {
  display: flex; align-items: center; justify-content: center;
  max-height: calc(92vh - 48px); overflow: auto; padding: 8px;
}
.full-preview-img[data-v-f5ae0dec] { max-width: 100%; max-height: calc(90vh - 64px); object-fit: contain; display: block;
}

/* ─── Responsive ─── */
@media (max-width: 599px) {
.scanner-workspace[data-v-f5ae0dec] { padding: 8px;
}
.scanner-side-panel[data-v-f5ae0dec],
  .right-rail[data-v-f5ae0dec] {
    max-height: 180px;
}
.right-doc-list[data-v-f5ae0dec] {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
}
.right-doc-thumb[data-v-f5ae0dec] {
    width: 76px;
    flex: 0 0 76px;
}
.selected-doc-panel[data-v-f5ae0dec] {
    min-height: 520px;
}
.selected-doc-stage[data-v-f5ae0dec] {
    min-height: 320px;
}
.preview-thumb-wrap[data-v-f5ae0dec] { padding-top: 100%;
}
.shutter-btn[data-v-f5ae0dec] { width: 60px; height: 60px;
}
.shutter-inner[data-v-f5ae0dec] { width: 44px; height: 44px;
}
}

.header-section[data-v-7177fee0] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
}
.kpi-card[data-v-7177fee0] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
}
.kpi-card[data-v-7177fee0]:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.kpi-card.kpi-loading[data-v-7177fee0] {
  min-height: 140px;
}
.styled-card[data-v-7177fee0] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease-in-out;
  border: none;
}
.styled-card[data-v-7177fee0]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Quick Actions */
.quick-actions-card[data-v-7177fee0] {
  overflow: hidden;
}
.quick-action-tile[data-v-7177fee0] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 12px;
  border-radius: 10px;
  border: 1.5px solid #f0f0f0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
  -webkit-user-select: none;
          user-select: none;
  height: 100%;
}
.quick-action-tile[data-v-7177fee0]:hover {
  border-color: #1976d2;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.10);
  transform: translateY(-2px);
}
.quick-action-tile[data-v-7177fee0]:active {
  transform: translateY(0);
  box-shadow: none;
}
.quick-action-tile--highlight[data-v-7177fee0] {
  border-color: rgba(0, 150, 136, 0.3);
  background: rgba(0, 150, 136, 0.03);
}
.quick-action-tile--highlight[data-v-7177fee0]:hover {
  border-color: #00796b;
  box-shadow: 0 4px 16px rgba(0, 150, 136, 0.14);
}
.quick-action-icon-wrap[data-v-7177fee0] {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-action-label[data-v-7177fee0] {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.quick-action-sub[data-v-7177fee0] {
  font-size: 11px;
  color: #9e9e9e;
  line-height: 1.2;
}

.header-section[data-v-33040bd4] {
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.styled-card[data-v-33040bd4] {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: none;
}
.search-input[data-v-33040bd4] {
    width: 300px;
}
.full-height[data-v-33040bd4] {
    height: 100%;
}

\3c style scoped>
.template-library-page[data-v-9b3a44e4] {
  background: #fafafa;
  min-height: 100vh;
}
.page-header[data-v-9b3a44e4] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content[data-v-9b3a44e4] {
  max-width: 1200px;
  margin: 0 auto;
}
.header-text h3[data-v-9b3a44e4] {
  color: white !important;
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0 0 8px 0;
}
.header-text p[data-v-9b3a44e4] {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  margin: 0;
}
.header-actions[data-v-9b3a44e4] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-content[data-v-9b3a44e4] {
  max-width: 1200px;
  margin: 0 auto;
}
.content-wrapper[data-v-9b3a44e4] {
  background: transparent;
}
.search-filters[data-v-9b3a44e4] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.templates-grid[data-v-9b3a44e4] {
  min-height: 400px;
}
.template-card[data-v-9b3a44e4] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.template-card[data-v-9b3a44e4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.template-icon[data-v-9b3a44e4] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.template-info[data-v-9b3a44e4] {
  text-align: center;
}
.template-title[data-v-9b3a44e4] {
  color: #263238;
  font-weight: 500;
  font-size: 1.125rem;
  margin: 0 0 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.template-description[data-v-9b3a44e4] {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0 0 16px 0;
}
.template-meta[data-v-9b3a44e4] {
  margin-bottom: 16px;
}
.template-stats[data-v-9b3a44e4] {
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
}
.no-templates[data-v-9b3a44e4] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.preview-dialog[data-v-9b3a44e4] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.template-info-card[data-v-9b3a44e4],
.preview-card[data-v-9b3a44e4] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  height: fit-content;
}
.template-header[data-v-9b3a44e4] {
  text-align: center;
}
.template-details[data-v-9b3a44e4] {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.detail-item[data-v-9b3a44e4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-label[data-v-9b3a44e4] {
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
}
.detail-value[data-v-9b3a44e4] {
  color: #263238;
  font-weight: 500;
}
.rating[data-v-9b3a44e4] {
  display: flex;
  gap: 2px;
}
.template-actions[data-v-9b3a44e4] {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.template-content[data-v-9b3a44e4] {
  background: #fafafa;
  border-radius: 4px;
  padding: 20px;
  min-height: 400px;
  border: 1px solid #e0e0e0;
  line-height: 1.6;
}
.template-fields-info[data-v-9b3a44e4] {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.fields-grid[data-v-9b3a44e4] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.field-item[data-v-9b3a44e4] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.field-item[data-v-9b3a44e4]:hover {
  background: #e3f2fd;
  border-color: #2196f3;
}
.field-variable[data-v-9b3a44e4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.variable-code[data-v-9b3a44e4] {
  background: #f1f3f4;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.8rem;
  color: #d32f2f;
  font-weight: 500;
}
.field-label[data-v-9b3a44e4] {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}
.field-type[data-v-9b3a44e4] {
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
  background: #e8f5e8;
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid #4caf50;
}
.field-required[data-v-9b3a44e4] {
  color: #f44336;
  font-weight: bold;
  font-size: 0.875rem;
  background: #ffebee;
  padding: 2px 6px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.create-template-dialog[data-v-9b3a44e4] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.template-preview-card[data-v-9b3a44e4] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  height: fit-content;
}
.template-preview-content[data-v-9b3a44e4] {
  background: #fafafa;
  border-radius: 4px;
  padding: 16px;
  min-height: 300px;
  border: 1px solid #e0e0e0;
  line-height: 1.6;
}
.fullscreen-template-editor[data-v-9b3a44e4] {
  height: 100vh;
  border-radius: 0;
}
.fullscreen-template-editor .q-card__section[data-v-9b3a44e4] {
  padding: 16px;
}
.fullscreen-template-editor .q-card__section--vert[data-v-9b3a44e4] {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Material Design Button Styling */
.q-btn[data-v-9b3a44e4] {
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
}
.q-btn--outline[data-v-9b3a44e4] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.q-btn--outline[data-v-9b3a44e4]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.q-btn--flat[data-v-9b3a44e4] {
  box-shadow: none;
}
.q-btn--flat[data-v-9b3a44e4]:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Material Design Input Styling */
.q-input--outlined .q-field__control[data-v-9b3a44e4] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-input--outlined .q-field__control[data-v-9b3a44e4]:hover {
  border-color: #21ba45;
}
.q-input--outlined .q-field--focused .q-field__control[data-v-9b3a44e4] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Select Styling */
.q-select--outlined .q-field__control[data-v-9b3a44e4] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-select--outlined .q-field__control[data-v-9b3a44e4]:hover {
  border-color: #21ba45;
}
.q-select--outlined .q-field--focused .q-field__control[data-v-9b3a44e4] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Card Styling */
.q-card[data-v-9b3a44e4] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.q-card[data-v-9b3a44e4]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Chip Styling */
.q-chip[data-v-9b3a44e4] {
  border-radius: 16px;
  font-weight: 500;
  min-height: 24px;
  padding: 0 8px;
}

/* Material Design Dialog Styling */
.q-dialog__inner--minimized > div[data-v-9b3a44e4] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 768px) {
.header-actions[data-v-9b3a44e4] {
    margin-top: 24px;
}
.search-filters[data-v-9b3a44e4] {
    padding: 16px;
}
.template-card[data-v-9b3a44e4] {
    margin-bottom: 16px;
}
.q-btn[data-v-9b3a44e4] {
    min-height: 36px;
}
}

.signature-pad-container[data-v-dc7365d0] {
  width: 100%;
}
.signature-card[data-v-dc7365d0] {
  min-width: 600px;
  max-width: 800px;
}
.signature-card.full-width[data-v-dc7365d0] {
  min-width: 100%;
  max-width: 100%;
}
.signature-content[data-v-dc7365d0] {
  padding: 16px 0;
}
.document-info[data-v-dc7365d0] {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
}
.canvas-container[data-v-dc7365d0] {
  border: 2px dashed #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.signature-canvas[data-v-dc7365d0] {
  display: block;
  touch-action: none;
  cursor: crosshair;
}
.signature-controls[data-v-dc7365d0] {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 768px) {
.signature-card[data-v-dc7365d0] {
    margin: 0;
    border-radius: 0;
    height: 100vh;
}
.signature-content[data-v-dc7365d0] {
    padding: 8px 0;
}
.canvas-container[data-v-dc7365d0] {
    margin: 0 -16px;
    border-left: none;
    border-right: none;
    border-radius: 0;
}
}

.mobile-signing-page[data-v-4e7b6f2a] {
  background: #f8f9fa;
  min-height: 100vh;
}
.page-header[data-v-4e7b6f2a] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  margin-bottom: 0;
}
.header-content[data-v-4e7b6f2a] {
  max-width: 1400px;
  margin: 0 auto;
}
.header-text h3[data-v-4e7b6f2a] {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-text p[data-v-4e7b6f2a] {
  color: rgba(255,255,255,0.9) !important;
}
.main-content[data-v-4e7b6f2a] {
  max-width: 1400px;
  margin: 0 auto;
}
.signing-step[data-v-4e7b6f2a] {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #e0e0e0;
}
.signing-step[data-v-4e7b6f2a]:last-child {
  margin-bottom: 0;
}
.signing-action[data-v-4e7b6f2a] {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.history-item[data-v-4e7b6f2a] {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 8px;
}
.history-item[data-v-4e7b6f2a]:last-child {
  margin-bottom: 0;
}
.document-preview[data-v-4e7b6f2a] {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.preview-container[data-v-4e7b6f2a] {
  max-height: 500px;
  overflow-y: auto;
}
.preview-content[data-v-4e7b6f2a] {
  padding: 24px;
}
.signature-placeholder[data-v-4e7b6f2a] {
  margin-bottom: 16px;
}
.signature-box[data-v-4e7b6f2a] {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background: #f8f9fa;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.signature-completed[data-v-4e7b6f2a] {
  color: #4CAF50;
}
.signature-pending[data-v-4e7b6f2a] {
  color: #9e9e9e;
}
.signature-pad[data-v-4e7b6f2a] {
  text-align: center;
}
.signature-area[data-v-4e7b6f2a] {
  display: inline-block;
}
@media (max-width: 768px) {
.signing-actions-card[data-v-4e7b6f2a],
  .signing-history-card[data-v-4e7b6f2a] {
    margin-bottom: 16px;
}
.preview-content[data-v-4e7b6f2a] {
    padding: 16px;
}
}

.approval-page[data-v-d8e4e8ab] {
  background: #f8f9fa;
  min-height: 100vh;
}
.page-header[data-v-d8e4e8ab] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  margin-bottom: 0;
}
.header-content[data-v-d8e4e8ab] {
  max-width: 1400px;
  margin: 0 auto;
}
.header-text h3[data-v-d8e4e8ab] {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-text p[data-v-d8e4e8ab] {
  color: rgba(255,255,255,0.9) !important;
}
.main-content[data-v-d8e4e8ab] {
  max-width: 1400px;
  margin: 0 auto;
}
.stat-card[data-v-d8e4e8ab] {
  transition: all 0.3s ease;
}
.stat-card[data-v-d8e4e8ab]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.stat-card.pending[data-v-d8e4e8ab] {
  border-left: 4px solid #ff9800;
}
.stat-card.approved[data-v-d8e4e8ab] {
  border-left: 4px solid #4caf50;
}
.stat-card.rejected[data-v-d8e4e8ab] {
  border-left: 4px solid #f44336;
}
.stat-card.total[data-v-d8e4e8ab] {
  border-left: 4px solid #2196f3;
}
.approval-card[data-v-d8e4e8ab] {
  transition: all 0.3s ease;
}
.approval-card[data-v-d8e4e8ab]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.approval-meta[data-v-d8e4e8ab] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.document-preview[data-v-d8e4e8ab] {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  min-height: 400px;
}
.signature-pad[data-v-d8e4e8ab] {
  text-align: center;
}
.signature-pad canvas[data-v-d8e4e8ab] {
  cursor: crosshair;
}
.qr-code-container[data-v-d8e4e8ab] {
  background: white;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.qr-canvas[data-v-d8e4e8ab] {
  width: 200px;
  height: 200px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
}
.approval-review-dialog[data-v-d8e4e8ab] {
  min-width: 800px;
}
.empty-state[data-v-d8e4e8ab] {
  background: white;
  border-radius: 12px;
  margin: 32px 0;
}
.vue-pdf-embed[data-v-d8e4e8ab] {
  width: 100%;
  height: auto; /* Auto height for natural PDF size */
  min-height: 600px; /* Minimum readable height */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.pdf-container[data-v-d8e4e8ab] {
  width: 100%;
  overflow-y: auto; /* Allow scrolling for long PDFs */
  max-height: none; /* Remove height restrictions */
}
.bulk-pdf-view[data-v-d8e4e8ab] {
  min-height: 800px; /* Minimum height for bulk modal */
}
@media (max-width: 768px) {
.approval-actions[data-v-d8e4e8ab] {
    margin-top: 16px;
}
.approval-card .row[data-v-d8e4e8ab] {
    flex-direction: column;
}
}

/* Bulk Approval Styles */
.approval-card.selected[data-v-d8e4e8ab] {
  border-color: #1976d2;
  background-color: #e3f2fd;
}
.bulk-approval-modal[data-v-d8e4e8ab] {
  min-height: 80vh;
}

/* Ensure proper alignment in bulk approval modal */
.bulk-approval-modal .row[data-v-d8e4e8ab] {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.bulk-approval-modal .col-12.col-md-6[data-v-d8e4e8ab] {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.documents-list .q-item[data-v-d8e4e8ab] {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 8px;
}
.bulk-actions[data-v-d8e4e8ab] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.selection-section[data-v-d8e4e8ab] {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
  background-color: #fafafa;
  margin: -16px -16px 12px -16px;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
}

/* Bulk Actions Toolbar */
.bulk-actions-toolbar[data-v-d8e4e8ab] {
  position: relative;
}

/* Responsive Design for Bulk Actions */
@media (max-width: 768px) {
.bulk-actions-card .row[data-v-d8e4e8ab] {
    flex-direction: column;
    align-items: stretch !important;
}
.bulk-actions-card .col[data-v-d8e4e8ab] {
    margin-bottom: 12px;
}
.bulk-actions-card .col-auto[data-v-d8e4e8ab] {
    margin-bottom: 8px;
}
.bulk-action-buttons[data-v-d8e4e8ab] {
    justify-content: center;
}
.bulk-action-buttons .q-btn[data-v-d8e4e8ab] {
    flex: 1;
    min-width: auto;
    height: 48px;
    padding: 0 16px;
}
}
.bulk-actions-card[data-v-d8e4e8ab] {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e3f2fd;
  transition: all 0.3s ease;
}
.bulk-actions-card[data-v-d8e4e8ab]:hover {
  border-color: #2196f3;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}
.selection-controls[data-v-d8e4e8ab] {
  display: flex;
  align-items: center;
}
.select-all-checkbox[data-v-d8e4e8ab] {
  font-weight: 500;
  color: #424242;
}
.selection-counter[data-v-d8e4e8ab] {
  animation: slideIn-d8e4e8ab 0.3s ease-out;
}
.selection-chip[data-v-d8e4e8ab] {
  font-weight: 600;
  animation: pulse-d8e4e8ab 2s infinite;
}
.bulk-action-buttons[data-v-d8e4e8ab] {
  display: flex;
  gap: 12px;
  align-items: center;
}
.bulk-action-buttons .q-btn[data-v-d8e4e8ab] {
  min-width: 140px;
  height: 52px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.2;
}
.bulk-action-buttons .q-btn[data-v-d8e4e8ab]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.pending-count[data-v-d8e4e8ab] {
  opacity: 0.8;
}
.pending-chip[data-v-d8e4e8ab] {
  font-weight: 500;
}

/* Animations */
@keyframes slideIn-d8e4e8ab {
from {
    opacity: 0;
    transform: translateX(-10px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes pulse-d8e4e8ab {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
100% {
    transform: scale(1);
}
}
.document-preview[data-v-d8e4e8ab] {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  min-height: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.text-content[data-v-d8e4e8ab] {
  max-height: 600px;
  overflow-y: auto;
  background: #f8f9fa;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.document-content[data-v-d8e4e8ab] {
  min-height: 500px;
  max-height: none; /* Remove height restrictions */
  overflow-y: auto;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.document-view-optimized[data-v-d8e4e8ab] {
  min-height: 700px;
  height: auto; /* Allow natural height expansion */
  max-height: none; /* Remove any height restrictions */
}
.document-view-optimized .vue-pdf-embed[data-v-d8e4e8ab] {
  min-height: 900px; /* Minimum height for optimized view */
}
.document-view-optimized .document-content[data-v-d8e4e8ab] {
  min-height: 600px;
  max-height: none; /* Remove height restrictions */
}

/* Ensure modal content allows full scrolling */
.q-dialog__inner > .q-card[data-v-d8e4e8ab] {
  max-height: 95vh;
  overflow-y: auto;
}
.document-view-modal .q-card[data-v-d8e4e8ab] {
  height: auto;
  max-height: 95vh;
}

.cash-request-form[data-v-47deb524] {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}
.form-card[data-v-47deb524] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.form-header[data-v-47deb524] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 24px;
  text-align: center;
}
.company-info[data-v-47deb524] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.company-logo[data-v-47deb524] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px;
}
.company-details[data-v-47deb524] {
  text-align: left;
}
.company-name[data-v-47deb524] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}
.company-address[data-v-47deb524],
.company-contact[data-v-47deb524],
.company-website[data-v-47deb524] {
  font-size: 0.875rem;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.9);
}
.form-title-section[data-v-47deb524] {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
}
.form-title[data-v-47deb524] {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-number[data-v-47deb524] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.form-content[data-v-47deb524] {
  padding: 32px;
}
.form-section[data-v-47deb524] {
  margin-bottom: 32px;
}
.section-title[data-v-47deb524] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #178a2c;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.form-field[data-v-47deb524] {
  margin-bottom: 16px;
}
.field-label[data-v-47deb524] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 4px;
  display: block;
}
.field-value[data-v-47deb524] {
  font-size: 1rem;
  color: #555;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-height: 20px;
}
.total-amount[data-v-47deb524] {
  font-weight: 700;
  color: #178a2c;
  font-size: 1.125rem;
}
.amount-words[data-v-47deb524] {
  font-style: italic;
  color: #666;
}
.items-table[data-v-47deb524] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.items-table .q-table__top[data-v-47deb524] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.signatures-section[data-v-47deb524] {
  border-top: 2px solid #e0e0e0;
  padding-top: 24px;
}
.signature-box[data-v-47deb524] {
  text-align: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.signature-line[data-v-47deb524] {
  height: 2px;
  background: #333;
  margin: 20px 0;
  border-radius: 1px;
}
.signature-label[data-v-47deb524] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-info[data-v-47deb524] {
  font-size: 0.75rem;
  color: #666;
}
.signature-date[data-v-47deb524],
.signature-time[data-v-47deb524] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.signature-date label[data-v-47deb524],
.signature-time label[data-v-47deb524] {
  font-weight: 500;
}
.form-footer[data-v-47deb524] {
  background: #f8f9fa;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.footer-text[data-v-47deb524] {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px 0;
}
.footer-stamp[data-v-47deb524] {
  display: flex;
  justify-content: center;
}
.stamp-circle[data-v-47deb524] {
  width: 80px;
  height: 80px;
  border: 2px solid #178a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transform: rotate(-15deg);
}
.stamp-circle span[data-v-47deb524] {
  font-size: 0.625rem;
  font-weight: 700;
  color: #178a2c;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
.company-info[data-v-47deb524] {
    flex-direction: column;
    text-align: center;
}
.company-details[data-v-47deb524] {
    text-align: center;
}
.form-content[data-v-47deb524] {
    padding: 16px;
}
.signature-box[data-v-47deb524] {
    margin-bottom: 16px;
}
}

.cash-transfer-request-form[data-v-1ff8fdd8] {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}
.form-card[data-v-1ff8fdd8] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.form-header[data-v-1ff8fdd8] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 24px;
  text-align: center;
}
.company-info[data-v-1ff8fdd8] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.company-logo[data-v-1ff8fdd8] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px;
}
.company-details[data-v-1ff8fdd8] {
  text-align: left;
}
.company-name[data-v-1ff8fdd8] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}
.company-address[data-v-1ff8fdd8],
.company-contact[data-v-1ff8fdd8],
.company-website[data-v-1ff8fdd8] {
  font-size: 0.875rem;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.9);
}
.form-title-section[data-v-1ff8fdd8] {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
}
.form-title[data-v-1ff8fdd8] {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-number[data-v-1ff8fdd8] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.form-content[data-v-1ff8fdd8] {
  padding: 32px;
}
.form-section[data-v-1ff8fdd8] {
  margin-bottom: 32px;
}
.section-title[data-v-1ff8fdd8] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #178a2c;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.form-field[data-v-1ff8fdd8] {
  margin-bottom: 16px;
}
.field-label[data-v-1ff8fdd8] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 4px;
  display: block;
}
.field-value[data-v-1ff8fdd8] {
  font-size: 1rem;
  color: #555;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-height: 20px;
}
.description-field[data-v-1ff8fdd8],
.comments-field[data-v-1ff8fdd8] {
  min-height: 60px;
  white-space: pre-wrap;
}
.total-amount[data-v-1ff8fdd8] {
  font-weight: 700;
  color: #178a2c;
  font-size: 1.125rem;
}
.amount-words[data-v-1ff8fdd8] {
  font-style: italic;
  color: #666;
}
.signatures-section[data-v-1ff8fdd8] {
  border-top: 2px solid #e0e0e0;
  padding-top: 24px;
}
.signature-box[data-v-1ff8fdd8] {
  text-align: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.signature-line[data-v-1ff8fdd8] {
  height: 2px;
  background: #333;
  margin: 20px 0;
  border-radius: 1px;
}
.signature-label[data-v-1ff8fdd8] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-info[data-v-1ff8fdd8] {
  font-size: 0.75rem;
  color: #666;
}
.signature-date[data-v-1ff8fdd8],
.signature-time[data-v-1ff8fdd8],
.signature-status[data-v-1ff8fdd8] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  align-items: center;
}
.signature-date label[data-v-1ff8fdd8],
.signature-time label[data-v-1ff8fdd8],
.signature-status label[data-v-1ff8fdd8] {
  font-weight: 500;
}
.status-badge[data-v-1ff8fdd8] {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
}
.status-approved[data-v-1ff8fdd8] {
  background: #e8f5e8;
  color: #21ba45;
}
.status-rejected[data-v-1ff8fdd8] {
  background: #ffebee;
  color: #d32f2f;
}
.status-pending[data-v-1ff8fdd8] {
  background: #fff3e0;
  color: #f39c12;
}
.form-footer[data-v-1ff8fdd8] {
  background: #f8f9fa;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.footer-text[data-v-1ff8fdd8] {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px 0;
}
.footer-stamp[data-v-1ff8fdd8] {
  display: flex;
  justify-content: center;
}
.stamp-circle[data-v-1ff8fdd8] {
  width: 80px;
  height: 80px;
  border: 2px solid #178a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transform: rotate(-15deg);
}
.stamp-circle span[data-v-1ff8fdd8] {
  font-size: 0.625rem;
  font-weight: 700;
  color: #178a2c;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
.company-info[data-v-1ff8fdd8] {
    flex-direction: column;
    text-align: center;
}
.company-details[data-v-1ff8fdd8] {
    text-align: center;
}
.form-content[data-v-1ff8fdd8] {
    padding: 16px;
}
.signature-box[data-v-1ff8fdd8] {
    margin-bottom: 16px;
}
}

.payment-voucher-form[data-v-1c83f7aa] {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}
.form-card[data-v-1c83f7aa] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.form-header[data-v-1c83f7aa] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 24px;
  text-align: center;
}
.company-info[data-v-1c83f7aa] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.company-logo[data-v-1c83f7aa] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px;
}
.company-details[data-v-1c83f7aa] {
  text-align: left;
}
.company-name[data-v-1c83f7aa] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}
.company-address[data-v-1c83f7aa],
.company-contact[data-v-1c83f7aa],
.company-website[data-v-1c83f7aa] {
  font-size: 0.875rem;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.9);
}
.form-title-section[data-v-1c83f7aa] {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
}
.form-title[data-v-1c83f7aa] {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-number[data-v-1c83f7aa] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.form-content[data-v-1c83f7aa] {
  padding: 32px;
}
.form-section[data-v-1c83f7aa] {
  margin-bottom: 32px;
}
.section-title[data-v-1c83f7aa] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #178a2c;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.form-field[data-v-1c83f7aa] {
  margin-bottom: 16px;
}
.field-label[data-v-1c83f7aa] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 4px;
  display: block;
}
.field-value[data-v-1c83f7aa] {
  font-size: 1rem;
  color: #555;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-height: 20px;
}
.total-amount[data-v-1c83f7aa] {
  font-weight: 700;
  color: #178a2c;
  font-size: 1.125rem;
}
.amount-words[data-v-1c83f7aa] {
  font-style: italic;
  color: #666;
}
.remarks-field[data-v-1c83f7aa] {
  min-height: 60px;
  white-space: pre-wrap;
}
.payment-table[data-v-1c83f7aa] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.payment-table .q-table__top[data-v-1c83f7aa] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.signatures-section[data-v-1c83f7aa] {
  border-top: 2px solid #e0e0e0;
  padding-top: 24px;
}
.signature-box[data-v-1c83f7aa] {
  text-align: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.signature-line[data-v-1c83f7aa] {
  height: 2px;
  background: #333;
  margin: 20px 0;
  border-radius: 1px;
}
.signature-label[data-v-1c83f7aa] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-info[data-v-1c83f7aa] {
  font-size: 0.75rem;
  color: #666;
}
.signature-name[data-v-1c83f7aa] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-date[data-v-1c83f7aa],
.signature-time[data-v-1c83f7aa] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.signature-date label[data-v-1c83f7aa],
.signature-time label[data-v-1c83f7aa] {
  font-weight: 500;
}
.form-footer[data-v-1c83f7aa] {
  background: #f8f9fa;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.footer-text[data-v-1c83f7aa] {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px 0;
}
.footer-stamp[data-v-1c83f7aa] {
  display: flex;
  justify-content: center;
}
.stamp-circle[data-v-1c83f7aa] {
  width: 80px;
  height: 80px;
  border: 2px solid #178a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transform: rotate(-15deg);
}
.stamp-circle span[data-v-1c83f7aa] {
  font-size: 0.625rem;
  font-weight: 700;
  color: #178a2c;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
.company-info[data-v-1c83f7aa] {
    flex-direction: column;
    text-align: center;
}
.company-details[data-v-1c83f7aa] {
    text-align: center;
}
.form-content[data-v-1c83f7aa] {
    padding: 16px;
}
.signature-box[data-v-1c83f7aa] {
    margin-bottom: 16px;
}
}

.approval-forms-demo-page[data-v-1cdff0d4] {
  background: #fafafa;
  min-height: 100vh;
}
.page-header[data-v-1cdff0d4] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content[data-v-1cdff0d4] {
  max-width: 1200px;
  margin: 0 auto;
}
.header-text h3[data-v-1cdff0d4] {
  color: white !important;
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0 0 8px 0;
}
.header-text p[data-v-1cdff0d4] {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  margin: 0;
}
.header-actions[data-v-1cdff0d4] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-content[data-v-1cdff0d4] {
  max-width: 1200px;
  margin: 0 auto;
}
.content-wrapper[data-v-1cdff0d4] {
  background: transparent;
}
.selection-card[data-v-1cdff0d4],
.action-card[data-v-1cdff0d4] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  height: fit-content;
}
.selection-card[data-v-1cdff0d4]:hover,
.action-card[data-v-1cdff0d4]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.form-type-card[data-v-1cdff0d4] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
}
.form-type-card[data-v-1cdff0d4]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.form-type-active[data-v-1cdff0d4] {
  border-color: #21ba45;
  box-shadow: 0 4px 12px 0 rgba(33, 186, 69, 0.2);
  background: rgba(33, 186, 69, 0.05);
}
.placeholder-card[data-v-1cdff0d4] {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PO-inspired Button Styling */
.q-btn[data-v-1cdff0d4] {
  border-radius: 6px;
  font-weight: 500;
  text-transform: none;
  transition: all 0.2s ease;
  min-height: 40px;
}
.q-btn--outline[data-v-1cdff0d4] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.q-btn--outline[data-v-1cdff0d4]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

/* Responsive Design */
@media (max-width: 768px) {
.header-actions[data-v-1cdff0d4] {
    margin-top: 24px;
}
.form-type-card[data-v-1cdff0d4] {
    margin-bottom: 16px;
}
}

.document-preview-dialog[data-v-a444c7f8] {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.preview-container[data-v-a444c7f8] {
  height: calc(100vh - 200px);
  overflow: auto;
}
.pdf-preview[data-v-a444c7f8] {
  border: none;
  height: 100%;
  min-height: 500px;
}
.image-preview[data-v-a444c7f8] {
  max-width: 100%;
  max-height: calc(100vh - 250px);
  object-fit: contain;
}
.text-preview[data-v-a444c7f8] {
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: auto;
  max-height: calc(100vh - 250px);
  overflow-wrap: break-word; /* Ensure long words break */
}
.text-preview pre[data-v-a444c7f8] {
  white-space: pre-wrap;
  font-family: monospace;
}
.document-info[data-v-a444c7f8] {
  border-top: 1px solid #e0e0e0;
  margin-top: 16px;
}
.preview-container-embedded[data-v-a444c7f8] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    min-height: 500px;
}
.preview-content-embedded[data-v-a444c7f8] {
    height: 100%;
}
.docx-preview[data-v-a444c7f8] {
    background-color: #fff;
}
.vue-pdf-embed[data-v-a444c7f8] {
    height: 100%;
    width: 100%;
}
.html-preview[data-v-a444c7f8] {
    background-color: #fff;
    overflow-wrap: break-word; /* Ensure long words break */
    white-space: pre-wrap; /* Preserve whitespace and handle line breaks */
}

/* Add any component-specific styles here */

.highlight-comment-input-card[data-v-b9f5d1ea] {
  background-color: #e8f5e9; /* Light green */
  border-left: 5px solid #4CAF50; /* Green border */
}
.existing-highlight-comments-card[data-v-b9f5d1ea] {
  background-color: #f0f4f8; /* Light blue-grey */
}

.document-view-page[data-v-4265b9aa] {
  background: #fafafa;
  min-height: 100vh;
}
.page-header[data-v-4265b9aa] {
  background: linear-gradient(135deg, #178a2c 0%, #21ba45 100%);
  color: white;
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content[data-v-4265b9aa] {
  max-width: 1200px;
  margin: 0 auto;
}
.header-text h3[data-v-4265b9aa] {
  color: white !important;
  font-weight: 500;
  font-size: 1.75rem;
}
.header-actions[data-v-4265b9aa] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.main-content[data-v-4265b9aa] {
  max-width: 1200px;
  margin: 0 auto;
}
.content-wrapper[data-v-4265b9aa] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.document-header-card[data-v-4265b9aa] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  border: 1px solid #e0e0e0;
}
.company-logo[data-v-4265b9aa] {
  border-radius: 4px;
}
.company-details h4[data-v-4265b9aa] {
  color: #178a2c !important;
}
.document-meta[data-v-4265b9aa] {
  text-align: right;
}
.meta-item[data-v-4265b9aa] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meta-label[data-v-4265b9aa] {
  font-weight: 600;
  color: #666;
  font-size: 0.875rem;
}
.meta-value[data-v-4265b9aa] {
  color: #263238;
  font-size: 0.875rem;
}
.amount-value[data-v-4265b9aa] {
  color: #21ba45;
  font-weight: 600;
}
.document-content-card[data-v-4265b9aa] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  border: 1px solid #e0e0e0;
}
.generic-document[data-v-4265b9aa] {
  padding: 24px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow-wrap: break-word; /* Ensure long words break */
  white-space: pre-wrap; /* Preserve whitespace and handle line breaks */
}
.docx-html-preview[data-v-4265b9aa] {
  width: 100%;
  height: 100%; /* Ensure it takes full height of the card section */
  overflow-y: auto; /* Allow scrolling if content is large */
  overflow-wrap: break-word; /* Ensure long words break */
  white-space: pre-wrap; /* Preserve whitespace and handle line breaks */
}
.highlight-comments-card[data-v-4265b9aa] {
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  border: 1px solid #e0e0e0;
  height: 100%; /* Ensure it takes full height of the sidebar */
}
.highlight-comments-card .q-card__section[data-v-4265b9aa] {
  padding: 16px;
}
.highlight-comments-card .text-h6[data-v-4265b9aa] {
  color: #333;
  font-weight: 600;
}
.highlight-comments-card p[data-v-4265b9aa] {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.highlight-class[data-v-4265b9aa] {
   background-color: #ffd700; /* A nice yellow for highlights */
   border-radius: 3px;
   padding: 1px 2px;
   cursor: pointer;
}
.approval-workflow-section[data-v-4265b9aa] {
  padding: 24px;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  border: 1px solid #e0e0e0;
}
.approval-card[data-v-4265b9aa] {
  min-width: 250px;
  max-width: 300px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.digital-signatures-section[data-v-4265b9aa] {
  padding: 24px;
  /* background: #f5f5f5; */
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  border: 1px solid #e0e0e0;
}
.digital-signature-card[data-v-4265b9aa] {
  border: 1px solid #e0e0e0;
  padding: 8px;
  border-radius: 4px;
  /* background-color: #f9f9f9; */
  min-width: 220px; /* Ensure a minimum width for better presentation */
}
.digital-signature-image[data-v-4265b9aa] {
  max-width: 200px;
  height: auto;
  display: block;
}
.rejection-message-section[data-v-4265b9aa] {
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  border: 1px solid #e0e0e0;
}
.rejection-card[data-v-4265b9aa] {
  background: #ffebee;
  border: 1px solid #ef5350;
}
@media (max-width: 768px) {
.header-actions[data-v-4265b9aa] {
    justify-content: center;
}
.document-meta[data-v-4265b9aa] {
    text-align: left;
    margin-top: 16px;
}
.meta-item[data-v-4265b9aa] {
    justify-content: flex-start;
    gap: 8px;
}
}

.text-document-page[data-v-f59dd801] {
  background: #fafafa;
  min-height: 100vh;
}
.page-header[data-v-f59dd801] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content[data-v-f59dd801] {
  max-width: 1200px;
  margin: 0 auto;
}
.header-text h3[data-v-f59dd801] {
  color: white !important;
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0 0 8px 0;
}
.header-text p[data-v-f59dd801] {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  margin: 0;
}
.header-actions[data-v-f59dd801] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-content[data-v-f59dd801] {
  max-width: 1200px;
  margin: 0 auto;
}
.content-wrapper[data-v-f59dd801] {
  background: transparent;
}
.form-card[data-v-f59dd801],
.editor-card[data-v-f59dd801] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  height: fit-content;
}
.form-card[data-v-f59dd801]:hover,
.editor-card[data-v-f59dd801]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Fullscreen Editor Modal */
.fullscreen-editor-modal[data-v-f59dd801] {
  background: white;
  border-radius: 0;
  box-shadow: none;
}
.fullscreen-header[data-v-f59dd801] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 24px;
}
.fullscreen-actions[data-v-f59dd801] {
  display: flex;
  gap: 8px;
}
.fullscreen-content[data-v-f59dd801] {
  background: white;
}

/* Material Design Button Styling */
.q-btn[data-v-f59dd801] {
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
}
.q-btn--outline[data-v-f59dd801] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.q-btn--outline[data-v-f59dd801]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

/* Responsive Design */
@media (max-width: 768px) {
.header-actions[data-v-f59dd801] {
    margin-top: 24px;
}
.form-card[data-v-f59dd801],
  .editor-card[data-v-f59dd801] {
    margin-bottom: 16px;
}
}

.edit-document-page .page-header[data-v-8857ac9c] {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.shared-documents-page[data-v-c015be43] {
  max-width: 1000px;
  margin: 0 auto;
}
.header-section h4[data-v-c015be43] {
  color: #178a2c;
}
.documents-card[data-v-c015be43] {
  border-radius: 8px;
}
.empty-state[data-v-c015be43] {
  border-radius: 8px;
}

.document-view-page[data-v-d0b1c3a8] { background: #fafafa; min-height: 100vh;
}
.page-header[data-v-d0b1c3a8] { background: linear-gradient(135deg, #178a2c 0%, #21ba45 100%); color: white; margin-bottom: 0; border-bottom: 1px solid #e0e0e0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content[data-v-d0b1c3a8] { max-width: 1200px; margin: 0 auto;
}
.header-text h3[data-v-d0b1c3a8] { color: white !important; font-weight: 500; font-size: 1.75rem;
}
.header-actions[data-v-d0b1c3a8] { display: flex; gap: 8px; flex-wrap: wrap;
}
.main-content[data-v-d0b1c3a8] { max-width: 1200px; margin: 0 auto;
}
.content-wrapper[data-v-d0b1c3a8] { background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); overflow: hidden;
}
.document-header-card[data-v-d0b1c3a8] { background: white; border-radius: 8px; box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06); border: 1px solid #e0e0e0;
}
.company-logo[data-v-d0b1c3a8] { border-radius: 4px;
}
.company-details h4[data-v-d0b1c3a8] { color: #178a2c !important;
}
.document-meta[data-v-d0b1c3a8] { text-align: right;
}
.meta-item[data-v-d0b1c3a8] { display: flex; justify-content: space-between; align-items: center;
}
.meta-label[data-v-d0b1c3a8] { font-weight: 600; color: #666; font-size: 0.875rem;
}
.meta-value[data-v-d0b1c3a8] { color: #263238; font-size: 0.875rem;
}
.document-content-card[data-v-d0b1c3a8] { background: white; border-radius: 8px; box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06); border: 1px solid #e0e0e0;
}

.cash-request-document[data-v-eb8c3afd] {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}
.document-card[data-v-eb8c3afd] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.document-header[data-v-eb8c3afd] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 24px;
  text-align: center;
}
.company-info[data-v-eb8c3afd] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.company-logo[data-v-eb8c3afd] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px;
}
.company-details[data-v-eb8c3afd] {
  text-align: left;
}
.company-name[data-v-eb8c3afd] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}
.company-address[data-v-eb8c3afd],
.company-contact[data-v-eb8c3afd],
.company-website[data-v-eb8c3afd] {
  font-size: 0.875rem;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.9);
}
.document-title-section[data-v-eb8c3afd] {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
}
.document-title[data-v-eb8c3afd] {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.document-number[data-v-eb8c3afd] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.document-content[data-v-eb8c3afd] {
  padding: 32px;
}
.document-section[data-v-eb8c3afd] {
  margin-bottom: 32px;
}
.section-title[data-v-eb8c3afd] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #178a2c;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.document-field[data-v-eb8c3afd] {
  margin-bottom: 16px;
}
.field-label[data-v-eb8c3afd] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 4px;
  display: block;
}
.field-value[data-v-eb8c3afd] {
  font-size: 1rem;
  color: #555;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-height: 20px;
}
.total-amount[data-v-eb8c3afd] {
  font-weight: 700;
  color: #178a2c;
  font-size: 1.125rem;
}
.amount-words[data-v-eb8c3afd] {
  font-style: italic;
  color: #666;
}
.items-table[data-v-eb8c3afd] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.items-table .q-table__top[data-v-eb8c3afd] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.signatures-section[data-v-eb8c3afd] {
  border-top: 2px solid #e0e0e0;
  padding-top: 24px;
}
.signature-box[data-v-eb8c3afd] {
  text-align: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.signature-line[data-v-eb8c3afd] {
  height: 2px;
  background: #333;
  margin: 20px 0;
  border-radius: 1px;
}
.signature-label[data-v-eb8c3afd] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-info[data-v-eb8c3afd] {
  font-size: 0.75rem;
  color: #666;
}
.signature-date[data-v-eb8c3afd],
.signature-time[data-v-eb8c3afd] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.signature-date label[data-v-eb8c3afd],
.signature-time label[data-v-eb8c3afd] {
  font-weight: 500;
}
.document-footer[data-v-eb8c3afd] {
  background: #f8f9fa;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.footer-text[data-v-eb8c3afd] {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px 0;
}
.footer-stamp[data-v-eb8c3afd] {
  display: flex;
  justify-content: center;
}
.stamp-circle[data-v-eb8c3afd] {
  width: 80px;
  height: 80px;
  border: 2px solid #178a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transform: rotate(-15deg);
}
.stamp-circle span[data-v-eb8c3afd] {
  font-size: 0.625rem;
  font-weight: 700;
  color: #178a2c;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
.company-info[data-v-eb8c3afd] {
    flex-direction: column;
    text-align: center;
}
.company-details[data-v-eb8c3afd] {
    text-align: center;
}
.document-content[data-v-eb8c3afd] {
    padding: 16px;
}
.signature-box[data-v-eb8c3afd] {
    margin-bottom: 16px;
}
}

.cash-transfer-document[data-v-f55c6c4c] {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}
.document-card[data-v-f55c6c4c] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.document-header[data-v-f55c6c4c] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 24px;
  text-align: center;
}
.company-info[data-v-f55c6c4c] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.company-logo[data-v-f55c6c4c] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px;
}
.company-details[data-v-f55c6c4c] {
  text-align: left;
}
.company-name[data-v-f55c6c4c] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}
.company-address[data-v-f55c6c4c],
.company-contact[data-v-f55c6c4c],
.company-website[data-v-f55c6c4c] {
  font-size: 0.875rem;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.9);
}
.document-title-section[data-v-f55c6c4c] {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
}
.document-title[data-v-f55c6c4c] {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.document-number[data-v-f55c6c4c] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.document-content[data-v-f55c6c4c] {
  padding: 32px;
}
.document-section[data-v-f55c6c4c] {
  margin-bottom: 32px;
}
.section-title[data-v-f55c6c4c] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #178a2c;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.document-field[data-v-f55c6c4c] {
  margin-bottom: 16px;
}
.field-label[data-v-f55c6c4c] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 4px;
  display: block;
}
.field-value[data-v-f55c6c4c] {
  font-size: 1rem;
  color: #555;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-height: 20px;
}
.description-field[data-v-f55c6c4c],
.comments-field[data-v-f55c6c4c] {
  min-height: 60px;
  white-space: pre-wrap;
}
.total-amount[data-v-f55c6c4c] {
  font-weight: 700;
  color: #178a2c;
  font-size: 1.125rem;
}
.amount-words[data-v-f55c6c4c] {
  font-style: italic;
  color: #666;
}
.signatures-section[data-v-f55c6c4c] {
  border-top: 2px solid #e0e0e0;
  padding-top: 24px;
}
.signature-box[data-v-f55c6c4c] {
  text-align: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.signature-line[data-v-f55c6c4c] {
  height: 2px;
  background: #333;
  margin: 20px 0;
  border-radius: 1px;
}
.signature-label[data-v-f55c6c4c] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-info[data-v-f55c6c4c] {
  font-size: 0.75rem;
  color: #666;
}
.signature-date[data-v-f55c6c4c],
.signature-time[data-v-f55c6c4c],
.signature-status[data-v-f55c6c4c] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  align-items: center;
}
.signature-date label[data-v-f55c6c4c],
.signature-time label[data-v-f55c6c4c],
.signature-status label[data-v-f55c6c4c] {
  font-weight: 500;
}
.status-badge[data-v-f55c6c4c] {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
}
.status-approved[data-v-f55c6c4c] {
  background: #e8f5e8;
  color: #21ba45;
}
.status-rejected[data-v-f55c6c4c] {
  background: #ffebee;
  color: #d32f2f;
}
.status-pending[data-v-f55c6c4c] {
  background: #fff3e0;
  color: #f39c12;
}
.document-footer[data-v-f55c6c4c] {
  background: #f8f9fa;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.footer-text[data-v-f55c6c4c] {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px 0;
}
.footer-stamp[data-v-f55c6c4c] {
  display: flex;
  justify-content: center;
}
.stamp-circle[data-v-f55c6c4c] {
  width: 80px;
  height: 80px;
  border: 2px solid #178a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transform: rotate(-15deg);
}
.stamp-circle span[data-v-f55c6c4c] {
  font-size: 0.625rem;
  font-weight: 700;
  color: #178a2c;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
.company-info[data-v-f55c6c4c] {
    flex-direction: column;
    text-align: center;
}
.company-details[data-v-f55c6c4c] {
    text-align: center;
}
.document-content[data-v-f55c6c4c] {
    padding: 16px;
}
.signature-box[data-v-f55c6c4c] {
    margin-bottom: 16px;
}
}

.payment-voucher-document[data-v-ff760fde] {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}
.document-card[data-v-ff760fde] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.document-header[data-v-ff760fde] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 24px;
  text-align: center;
}
.company-info[data-v-ff760fde] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.company-logo[data-v-ff760fde] {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 8px;
}
.company-details[data-v-ff760fde] {
  text-align: left;
}
.company-name[data-v-ff760fde] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}
.company-address[data-v-ff760fde],
.company-contact[data-v-ff760fde],
.company-website[data-v-ff760fde] {
  font-size: 0.875rem;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.9);
}
.document-title-section[data-v-ff760fde] {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
}
.document-title[data-v-ff760fde] {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.document-number[data-v-ff760fde] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.document-content[data-v-ff760fde] {
  padding: 32px;
}
.document-section[data-v-ff760fde] {
  margin-bottom: 32px;
}
.section-title[data-v-ff760fde] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #178a2c;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.document-field[data-v-ff760fde] {
  margin-bottom: 16px;
}
.field-label[data-v-ff760fde] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 4px;
  display: block;
}
.field-value[data-v-ff760fde] {
  font-size: 1rem;
  color: #555;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  min-height: 20px;
}
.total-amount[data-v-ff760fde] {
  font-weight: 700;
  color: #178a2c;
  font-size: 1.125rem;
}
.amount-words[data-v-ff760fde] {
  font-style: italic;
  color: #666;
}
.remarks-field[data-v-ff760fde] {
  min-height: 60px;
  white-space: pre-wrap;
}
.payment-table[data-v-ff760fde] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.payment-table .q-table__top[data-v-ff760fde] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.signatures-section[data-v-ff760fde] {
  border-top: 2px solid #e0e0e0;
  padding-top: 24px;
}
.signature-box[data-v-ff760fde] {
  text-align: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.signature-line[data-v-ff760fde] {
  height: 2px;
  background: #333;
  margin: 20px 0;
  border-radius: 1px;
}
.signature-label[data-v-ff760fde] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-info[data-v-ff760fde] {
  font-size: 0.75rem;
  color: #666;
}
.signature-name[data-v-ff760fde] {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.signature-date[data-v-ff760fde],
.signature-time[data-v-ff760fde] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.signature-date label[data-v-ff760fde],
.signature-time label[data-v-ff760fde] {
  font-weight: 500;
}
.document-footer[data-v-ff760fde] {
  background: #f8f9fa;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  position: relative;
}
.footer-text[data-v-ff760fde] {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 16px 0;
}
.footer-stamp[data-v-ff760fde] {
  display: flex;
  justify-content: center;
}
.stamp-circle[data-v-ff760fde] {
  width: 80px;
  height: 80px;
  border: 2px solid #178a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transform: rotate(-15deg);
}
.stamp-circle span[data-v-ff760fde] {
  font-size: 0.625rem;
  font-weight: 700;
  color: #178a2c;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
.company-info[data-v-ff760fde] {
    flex-direction: column;
    text-align: center;
}
.company-details[data-v-ff760fde] {
    text-align: center;
}
.document-content[data-v-ff760fde] {
    padding: 16px;
}
.signature-box[data-v-ff760fde] {
    margin-bottom: 16px;
}
}

.create-document-page[data-v-064ac670] {
  background: #fafafa;
  min-height: 100vh;
}
.page-header[data-v-064ac670] {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content[data-v-064ac670] {
  max-width: 1200px;
  margin: 0 auto;
}
.header-text h3[data-v-064ac670] {
  color: white !important;
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0 0 8px 0;
}
.header-text p[data-v-064ac670] {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  margin: 0;
}
.header-actions[data-v-064ac670] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-content[data-v-064ac670] {
  max-width: 1200px;
  margin: 0 auto;
}
.content-wrapper[data-v-064ac670] {
  background: transparent;
}
.form-card[data-v-064ac670],
.editor-card[data-v-064ac670] {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  height: fit-content;
}
.form-card[data-v-064ac670]:hover,
.editor-card[data-v-064ac670]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.template-preview-container[data-v-064ac670] {
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
  padding: 16px;
}
.editor-header[data-v-064ac670] {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}
.editor-actions[data-v-064ac670] {
  display: flex;
  gap: 8px;
}
.fullscreen-btn[data-v-064ac670] {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.fullscreen-btn[data-v-064ac670]:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}
.rich-editor-container[data-v-064ac670] {
  position: relative;
}
.rich-text-editor[data-v-064ac670] {
  background: white;
  border-radius: 4px;
  overflow: hidden;
}
.rich-text-editor[data-v-064ac670] .q-editor__content {
  min-height: 400px;
  padding: 20px;
  line-height: 1.6;
  font-size: 14px;
}
.rich-text-editor[data-v-064ac670] .q-editor__toolbar {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
}
.rich-text-editor[data-v-064ac670] .q-editor__toolbar .q-btn {
  border-radius: 4px;
  margin: 2px;
  min-width: 32px;
  min-height: 32px;
}
.rich-text-editor[data-v-064ac670] .q-editor__toolbar .q-btn:hover {
  background: rgba(33, 186, 69, 0.1);
}

/* Fullscreen Editor Modal */
.fullscreen-editor-modal[data-v-064ac670] {
  background: white;
  border-radius: 0;
  box-shadow: none;
}
.fullscreen-header[data-v-064ac670] {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 24px;
}
.fullscreen-actions[data-v-064ac670] {
  display: flex;
  gap: 8px;
}
.fullscreen-content[data-v-064ac670] {
  background: white;
}
.fullscreen-rich-editor[data-v-064ac670] {
  background: white;
  border: none;
}
.fullscreen-rich-editor[data-v-064ac670] .q-editor__content {
  min-height: calc(100vh - 120px);
  padding: 24px;
  line-height: 1.6;
  font-size: 16px;
  background: white;
}
.fullscreen-rich-editor[data-v-064ac670] .q-editor__toolbar {
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 24px;
  border-radius: 0;
}
.fullscreen-rich-editor[data-v-064ac670] .q-editor__toolbar .q-btn {
  border-radius: 4px;
  margin: 2px;
  min-width: 36px;
  min-height: 36px;
}
.fullscreen-rich-editor[data-v-064ac670] .q-editor__toolbar .q-btn:hover {
  background: rgba(33, 186, 69, 0.1);
}

/* Image Upload Styles */
.upload-area[data-v-064ac670] {
  padding: 16px;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.image-preview[data-v-064ac670] {
  text-align: center;
}
.preview-image[data-v-064ac670] {
  max-width: 100%;
  max-height: 200px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* Table Preview Styles */
.table-preview[data-v-064ac670] {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.table-grid[data-v-064ac670] {
  display: grid;
  gap: 1px;
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.table-row[data-v-064ac670] {
  display: contents;
}
.table-cell[data-v-064ac670] {
  background: white;
  min-height: 20px;
  border: 1px solid #ddd;
}
.modal-card[data-v-064ac670] {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Button Styling */
.q-btn[data-v-064ac670] {
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
}
.q-btn--outline[data-v-064ac670] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.q-btn--outline[data-v-064ac670]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.q-btn--flat[data-v-064ac670] {
  box-shadow: none;
}
.q-btn--flat[data-v-064ac670]:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Material Design Input Styling */
.q-input--outlined .q-field__control[data-v-064ac670] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-input--outlined .q-field__control[data-v-064ac670]:hover {
  border-color: #21ba45;
}
.q-input--outlined .q-field--focused .q-field__control[data-v-064ac670] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Select Styling */
.q-select--outlined .q-field__control[data-v-064ac670] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-select--outlined .q-field__control[data-v-064ac670]:hover {
  border-color: #21ba45;
}
.q-select--outlined .q-field--focused .q-field__control[data-v-064ac670] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Card Styling */
.q-card[data-v-064ac670] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.q-card[data-v-064ac670]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Dialog Styling */
.q-dialog__inner--minimized > div[data-v-064ac670] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 768px) {
.header-actions[data-v-064ac670] {
    margin-top: 24px;
}
.form-card[data-v-064ac670],
  .editor-card[data-v-064ac670] {
    margin-bottom: 16px;
}
.rich-text-editor[data-v-064ac670] .q-editor__content {
    min-height: 300px;
    padding: 16px;
}
.fullscreen-rich-editor[data-v-064ac670] .q-editor__content {
    min-height: calc(100vh - 100px);
    padding: 16px;
}
.q-btn[data-v-064ac670] {
    min-height: 36px;
}

  /* Imported Table Styles for Preview */
.template-preview-content .table-imported[data-v-064ac670] {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid #e0e0e0;
    background: white;
}
.template-preview-content .table-imported th[data-v-064ac670],
  .template-preview-content .table-imported td[data-v-064ac670] {
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
    min-width: 80px;
}
.template-preview-content .table-imported th[data-v-064ac670] {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}
.template-preview-content .table-imported tr[data-v-064ac670]:nth-child(even) {
    background-color: #f8f9fa;
}
.template-preview-content .table-imported tr[data-v-064ac670]:hover {
    background-color: #e9ecef;
}
}
.analytics-dashboard .filter-bar-card[data-v-ec4b9782] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.analytics-dashboard .kpi-card[data-v-ec4b9782] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  text-align: center;
}
.analytics-dashboard .kpi-card .text-h4[data-v-ec4b9782] {
  margin-top: 8px;
}
.analytics-dashboard .q-tab-panels[data-v-ec4b9782] {
  min-height: 500px; /* Ensure tab panels have a minimum height */
}
.analytics-dashboard canvas[data-v-ec4b9782] {
  max-height: 300px; /* Limit chart height */
  width: 100% !important;
  height: auto !important;
}/* Professional Financial Theme Styles */
.page-header-card[data-v-ceef4216] {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.page-header-card[data-v-ceef4216]:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-header-card .text-h5[data-v-ceef4216] {
  margin-bottom: 8px;
}
.q-card[data-v-ceef4216] {
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12);
}
.text-h5[data-v-ceef4216] {
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* Table responsive styling */
.responsive-table[data-v-ceef4216] {
  height: calc(100vh - 280px);
  max-height: 600px;
}

/* Make text in table cells wrap properly */
.responsive-table[data-v-ceef4216] th,
.responsive-table[data-v-ceef4216] td {
  white-space: normal !important;
  padding: 8px;
}

/* Set a max-width for the table and handle overflow */
.responsive-table[data-v-ceef4216] .q-table__container {
  max-width: 100%;
  overflow-x: auto;
}

/* Make the Actions column and header sticky */
.responsive-table[data-v-ceef4216] th.action-column,
.responsive-table[data-v-ceef4216] td.action-column {
  position: sticky;
  right: 0;
  z-index: 2;
  background-color: white;
}

/* Sticky header styling */
.responsive-table[data-v-ceef4216] .q-table__top,
.responsive-table[data-v-ceef4216] thead tr:first-child th {
  background-color: white;
  position: sticky;
  z-index: 1;
}
.responsive-table[data-v-ceef4216] thead tr:first-child th {
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Make sticky header and action column corners have higher z-index */
.responsive-table[data-v-ceef4216] th.action-column {
  z-index: 3;
}

/* Hover effect for table rows */
.q-table tbody tr[data-v-ceef4216]:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Button animations */
.q-btn[data-v-ceef4216] {
  transition: transform 0.2s;
}
.q-btn[data-v-ceef4216]:hover:not(.q-btn--flat) {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Fade transitions */
.fade-enter-active[data-v-ceef4216], .fade-leave-active[data-v-ceef4216] {
  transition: opacity 0.3s;
}
.fade-enter[data-v-ceef4216], .fade-leave-to[data-v-ceef4216] {
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
.responsive-table[data-v-ceef4216] {
    height: calc(100vh - 320px);
}
}
@media (max-width: 599px) {
.responsive-table[data-v-ceef4216] {
    height: calc(100vh - 360px);
}
}.page-header-card[data-v-9068405d] {
  background-color: #ffffff;
  border-left: 6px solid #178a2c;
}
.stat-card-small .q-card-section[data-v-9068405d] {
  padding: 16px;
}
.stat-card-small .q-card-section[data-v-9068405d]:first-child {
  padding-bottom: 0;
}
.stat-card-small .q-card-section[data-v-9068405d]:last-child {
  padding-top: 0;
}
.primary-stat .text-h4[data-v-9068405d] {
  color: #1976D2;
}
.accent-stat .text-h4[data-v-9068405d] {
  color: #7C4DFF;
}
.warning-stat .text-h4[data-v-9068405d] {
  color: #F2C037;
}
.info-stat .text-h4[data-v-9068405d] {
  color: #00B4FF;
}
.my-card[data-v-9068405d] {
  width: 100%;
}
@media (max-width: 1023.98px) {
.q-table__container .q-table--grid .q-table__card[data-v-9068405d] {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
}
}.my-sticky-header-table[data-v-00007ed6] {
  /* height or max-height is important */
  max-height: 600px;
}
.my-sticky-header-table .q-table__top[data-v-00007ed6],
.my-sticky-header-table .q-table__bottom[data-v-00007ed6],
.my-sticky-header-table thead tr:first-child th[data-v-00007ed6] {
  /* bg color is important for th; just specify one */
  background-color: #f2f2f2;
}
.my-sticky-header-table thead tr th[data-v-00007ed6] {
  position: sticky;
  z-index: 1;
}
.my-sticky-header-table thead tr:first-child th[data-v-00007ed6] {
  top: 0;
}
.my-sticky-header-table[data-v-00007ed6] {
  /* this is when the loading indicator appears */
}
.my-sticky-header-table.q-table--loading thead tr:last-child th[data-v-00007ed6] {
  /* height of all previous header rows */
  top: 48px;
}
.my-sticky-header-table[data-v-00007ed6] {
  /* prevent scrolling from behind sticky top row on focus */
}
.my-sticky-header-table tbody[data-v-00007ed6] {
  /* height of all previous header rows */
  scroll-margin-top: 48px;
}
.training-portal-card[data-v-17458979] {
    max-width: 1400px;
    margin: 0 auto;
}
.calendar-grid-header[data-v-17458979], .calendar-grid[data-v-17458979] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.calendar-grid-header .col[data-v-17458979] {
    padding: 8px 0;
}
.calendar-cell[data-v-17458979] {
    border: 1px solid #e0e0e0;
    min-height: 100px;
    padding: 4px;
    overflow: hidden;
    position: relative;
}
.calendar-cell[data-v-17458979]:hover {
    background-color: #f5f5f5;
}
.feedback-comments[data-v-17458979] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
  /* Print: only stats cards + table, no header/navbar/layout. Word wrap for table. */
@media print {
  /* Hide entire layout - header, sidebar, navbar, stepper, buttons, etc. */
body * {
    visibility: hidden;
}
#payroll-print-area, #payroll-print-area * {
    visibility: visible;
}
#payroll-print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
  /* Word wrap for table cells - fit A4 */
#payroll-print-area table td, #payroll-print-area table th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    max-width: 120px;
    font-size: 9px;
    padding: 4px;
}
#payroll-print-area table {
    width: 100%;
    table-layout: fixed;
}
@page {
    size: A4;
    margin: 15mm;
}
body {
    print-color-adjust: exact;
}
}/* Add any specific styles for PortalPage here *//* Print styles for employee profile */
@media print {
body[data-v-49ba86c3] * {
    visibility: hidden;
}
#printEmployeeProfileSection[data-v-49ba86c3], #printEmployeeProfileSection[data-v-49ba86c3] * {
    visibility: visible;
}
#printEmployeeProfileSection[data-v-49ba86c3] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.q-dialog__inner[data-v-49ba86c3] {
    display: none !important;
}
}/* Centralized color & styling */
/* Page header */
.page-header-card[data-v-dfb9b582] {
  background-color: #ffffff;
  border-left: 6px solid #178a2c;
}
.page-header-card .header-title[data-v-dfb9b582] {
  color: #178a2c;
}

/* Banner */
.banner-warning[data-v-dfb9b582] {
  background-color: #fff4e5;
  color: #7a4b00;
}

/* KPI cards */
.stat-card-small .q-card-section[data-v-dfb9b582]:first-child {
  padding-bottom: 0;
}
.stat-card-small .q-card-section[data-v-dfb9b582]:last-child {
  padding-top: 0;
}
.stat-card-small .kpi-number[data-v-dfb9b582] {
  font-weight: 700;
  letter-spacing: 0.2px;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.15;
}
.stat-card-small .kpi-number-md[data-v-dfb9b582] {
  font-size: 1.7rem;
}
.stat-card-small .kpi-number-sm[data-v-dfb9b582] {
  font-size: 1.35rem;
}
.stat-card-small .kpi-number-xs[data-v-dfb9b582] {
  font-size: 1.1rem;
}

/* Colors mapping (consistent with Quasar-style tokens) */
.positive-stat .text-h4[data-v-dfb9b582] {
  color: #21ba45;
}
.info-stat .text-h4[data-v-dfb9b582] {
  color: #178a2c;
}
.warning-stat .text-h4[data-v-dfb9b582] {
  color: #F2C037;
}
.primary-stat .text-h4[data-v-dfb9b582] {
  color: #1976D2;
}
.accent-stat .text-h4[data-v-dfb9b582] {
  color: #7C4DFF;
}
.negative-stat .text-h4[data-v-dfb9b582] {
  color: #C10015;
}
.teal-stat .text-h4[data-v-dfb9b582] {
  color: #00BFA5;
}
.red-stat .text-h4[data-v-dfb9b582] {
  color: #C10015;
}
.orange-stat .text-h4[data-v-dfb9b582] {
  color: #F2C037;
}

/* Card header */
.card-header[data-v-dfb9b582] {
  padding: 12px 16px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.card-header .text-h6[data-v-dfb9b582] {
  margin: 0;
  font-weight: 600;
}

/* profile mini card (top-right) */
.profile-mini[data-v-dfb9b582] {
  min-width: 240px;
}

/* responsive chart container */
.my-card[data-v-dfb9b582] {
  width: 100%;
}

/* table tweaks */
.q-table .q-table__bottom[data-v-dfb9b582] {
  padding-top: 8px;
}

/* small screens */
@media (max-width: 599px) {
.stat-card-small[data-v-dfb9b582] {
    margin-bottom: 8px;
}
.card-header[data-v-dfb9b582] {
    padding: 10px;
}
q-scroll-area[data-v-dfb9b582] {
    min-height: 240px;
}
}
.q-drawer[data-v-7048865e] {
  background-color: #f5f5f5;
}
.q-item[data-v-7048865e] {
  transition: background-color 0.3s ease;
}
.q-item[data-v-7048865e]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Active navbar item styling */
.q-item.bg-primary.text-white[data-v-7048865e] {
  background-color: #21ba45 !important;
  color: white !important;
  font-weight: 500;
}
.q-item.bg-primary.text-white .q-icon[data-v-7048865e] {
  color: white !important;
}
.q-item.bg-primary.text-white[data-v-7048865e]:hover {
  background-color: #1da237 !important;
}

.main-container[data-v-d93bb9ba] {
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  min-height: 100vh;
  padding: 24px;
}
.card-container[data-v-d93bb9ba] {
  max-width: 1000px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.branding-section[data-v-d93bb9ba] {
  background: linear-gradient(to right, #004D40, #00796B); /* Dark Green Gradient */
  padding: 48px;
}
.form-section[data-v-d93bb9ba] {
  background: #ffffff;
  padding: 48px;
}
@media (max-width: 1023px) {
.branding-section[data-v-d93bb9ba] {
    border-radius: 16px 16px 0 0;
}
.form-section[data-v-d93bb9ba] {
    border-radius: 0 0 16px 16px;
}
}

.q-table__title[data-v-0c832120] {
  font-size: 1.25rem;
  font-weight: 600;
}
