.countdown-timer[data-v-a48e91d2] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}
.countdown-text[data-v-a48e91d2] {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--q-primary);
}
.countdown-warning .countdown-text[data-v-a48e91d2] {
  color: var(--q-warning);
}
.countdown-expired .countdown-text[data-v-a48e91d2] {
  color: var(--q-negative);
}
[data-v-1af06949] .q-field__native {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: inherit;
}
[data-v-1af06949] .q-field__input {
  display: flex;
  align-items: center;
  line-height: normal;
  color: inherit;
}
[data-v-1af06949] .q-field__control {
  color: inherit;
}

/* Ensure selected text is visible in both light and dark modes */
[data-v-1af06949] .q-field__native span,[data-v-1af06949] .q-field__input span {
  color: currentColor;
}

/* Floating label styling with contrast colors */
[data-v-1af06949] .q-field__label {
  color: rgba(0, 0, 0, 0.6);
}
[data-v-1af06949] .q-field--focused .q-field__label,[data-v-1af06949] .q-field--float .q-field__label {
  color: var(--q-primary);
}

/* Dark mode label colors */
.body--dark[data-v-1af06949] .q-field__label {
  color: rgba(255, 255, 255, 0.7);
}
.body--dark[data-v-1af06949] .q-field--focused .q-field__label,
.body--dark[data-v-1af06949] .q-field--float .q-field__label {
  color: var(--q-primary);
}

/* Error state label */
[data-v-1af06949] .q-field--error .q-field__label {
  color: var(--q-negative);
}

.async-q-card[data-v-a9f76846] {
  transition: all 0.3s ease;
}
.async-q-card--loading[data-v-a9f76846] {
  overflow: hidden;
}
.async-card-skeleton[data-v-a9f76846] {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.skeleton-content[data-v-a9f76846] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Skeleton elements - Light mode */
.skeleton-icon[data-v-a9f76846],
.skeleton-number[data-v-a9f76846],
.skeleton-label[data-v-a9f76846],
.skeleton-sublabel[data-v-a9f76846] {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.06) 25%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.06) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading-a9f76846 1.5s infinite;
}
.skeleton-icon[data-v-a9f76846] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.skeleton-number[data-v-a9f76846] {
  width: 80px;
  height: 40px;
  border-radius: 8px;
  animation-delay: 0.1s;
}
.skeleton-label[data-v-a9f76846] {
  width: 120px;
  height: 16px;
  border-radius: 4px;
  animation-delay: 0.2s;
}
.skeleton-sublabel[data-v-a9f76846] {
  width: 100px;
  height: 12px;
  border-radius: 4px;
  animation-delay: 0.3s;
}

/* Skeleton animation */
@keyframes skeleton-loading-a9f76846 {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}

/* Dark mode support */
.body--dark .skeleton-icon[data-v-a9f76846],
.body--dark .skeleton-number[data-v-a9f76846],
.body--dark .skeleton-label[data-v-a9f76846],
.body--dark .skeleton-sublabel[data-v-a9f76846] {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.08) 75%
  );
  background-size: 200% 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.async-card-skeleton[data-v-a9f76846] {
    padding: 20px 12px;
    min-height: 120px;
}
.skeleton-number[data-v-a9f76846] {
    width: 60px;
    height: 32px;
}
.skeleton-label[data-v-a9f76846] {
    width: 100px;
}
.skeleton-sublabel[data-v-a9f76846] {
    width: 80px;
}
}

/* Animation for smooth transitions */
.skeleton-icon[data-v-a9f76846],
.skeleton-number[data-v-a9f76846],
.skeleton-label[data-v-a9f76846],
.skeleton-sublabel[data-v-a9f76846] {
  transition: all 0.3s ease;
}

/* ===== BASE COMPONENT STYLES ===== */
.emalino-input {

  /* Base input text styling */
.q-field__native,
  .q-field__input {
    color: inherit;
}

  /* Base control container styling */
.q-field__control {
    border-radius: 4px;
    min-height: 56px;
}

  /* Force consistent input styling */
input,
  textarea {
    appearance: none !important;
}

  /* Error message styling */
.error-message {
    display: flex;
    align-items: center;
    color: var(--q-negative);
    font-size: 12px;
    margin-top: 4px;
    padding: 4px 8px;
    background-color: rgba(244, 67, 54, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--q-negative);
}

  /* Show error message area */
&.q-field--error {
.q-field__bottom {
      display: block !important;
      padding-top: 4px;
}
}

  /* Smooth transition for error messages */
.q-field__bottom {
    transition: all 0.3s ease;
}
}

/* ===== DARK MODE STYLES ===== */
.emalino-input {
body.body--dark & {

    /* Text color */
.q-field__native,
    .q-field__input {
      color: #ffffff !important;
}

    /* Input elements */
input,
    textarea {
      color: #ffffff !important;
}

    /* Error message in dark mode */
.error-message {
      background-color: rgba(244, 67, 54, 0.2);
      color: #ff6b6b;
      border-left-color: #ff6b6b;
}

    /* Dark mode cursor */
input,
    textarea {
      caret-color: #ffffff !important;
}
input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
      caret-color: #ffffff !important;
}

    /* Dark mode autofill first line */
input:-webkit-autofill::first-line {
      color: #ffffff !important;
}
}
}

/* ===== LIGHT MODE STYLES ===== */
.emalino-input {
body.body--light & {

    /* Text color */
.q-field__native,
    .q-field__input {
      color: #000000 !important;
}

    /* Input elements */
input,
    textarea {
      color: #000000 !important;
}

    /* Error message in light mode */
.error-message {
      background-color: rgba(244, 67, 54, 0.1);
      color: #d32f2f;
      border-left-color: #d32f2f;
}

    /* Light mode cursor */
input,
    textarea {
      caret-color: #000000 !important;
}
input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
      caret-color: #000000 !important;
}

    /* Light mode autofill first line */
input:-webkit-autofill::first-line {
      color: #000000 !important;
}
}
}

/* ===== CHROME AUTOFILL FIXES ===== */
.emalino-input {

  /* Light mode autofill styling */
body.body--light & {
input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
      -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
      -webkit-text-fill-color: #000000 !important;
      -webkit-transition: background-color 5000s ease-in-out 0s !important;
      transition: background-color 5000s ease-in-out 0s !important;
}
}

  /* Dark mode autofill styling */
body.body--dark & {
input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
      -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
      -webkit-text-fill-color: #ffffff !important;
      -webkit-transition: background-color 5000s ease-in-out 0s !important;
      transition: background-color 5000s ease-in-out 0s !important;
}
}
}

/* ===== CURSOR VISIBILITY FIXES ===== */
.emalino-input {

  /* Ensure cursor is always visible */
input,
  textarea {
    caret-color: auto !important;
}

  /* Force cursor visibility after autofill */
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    caret-color: inherit !important;
}

  /* Force cursor on focus */
input:focus,
  textarea:focus {
    caret-color: inherit !important;
}
}

/* ===== AUTOFILL DROPDOWN SUGGESTIONS ===== */
.emalino-input {

  /* Hide autofill credentials button */
input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    height: 0;
    width: 0;
    margin: 0;
}

  /* Base autofill first line styling */
input:-webkit-autofill::first-line {
    color: inherit !important;
}
}

/* ===== ADDITIONAL AUTOFILL CURSOR FIXES ===== */
/* Global cursor fixes for autofilled inputs */
input:-webkit-autofill {
  -webkit-text-fill-color: inherit !important;
  caret-color: inherit !important;
}

/* Ensure cursor appears when clicking in autofilled field */
input:-webkit-autofill:focus {
  caret-color: inherit !important;
  outline: none !important;
}

/* ===== GLOBAL AUTOFILL DROPDOWN STYLING ===== */
/* Dark mode global autofill */
body.body--dark {
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
    -webkit-transition: background-color 5000s ease-in-out 0s !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #ffffff !important;
}
}

/* Light mode global autofill */
body.body--light {
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus {
    -webkit-text-fill-color: #000000 !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-transition: background-color 5000s ease-in-out 0s !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #000000 !important;
}
}

/* ===== BASE COMPONENT STYLES ===== */
.emalino-select {

  /* Base control container styling */
.q-field__control {
    border-radius: 4px;
    min-height: 56px;
}

  /* Error message styling (matching EmalinoInput) */
.error-message {
    display: flex;
    align-items: center;
    color: var(--q-negative);
    font-size: 12px;
    margin-top: 4px;
    padding: 4px 8px;
    background-color: rgba(244, 67, 54, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--q-negative);
}

  /* Show error message area */
&.q-field--error {
.q-field__bottom {
      display: block !important;
      padding-top: 4px;
}
}

  /* Smooth transition for error messages */
.q-field__bottom {
    transition: all 0.3s ease;
}
}

/* ===== DARK MODE STYLES ===== */
.emalino-select {
body.body--dark & {

    /* Error message in dark mode */
.error-message {
      background-color: rgba(244, 67, 54, 0.2);
      color: #ff6b6b;
      border-left-color: #ff6b6b;
}
}
}

/* ===== LIGHT MODE STYLES ===== */
.emalino-select {
body.body--light & {

    /* Error message in light mode */
.error-message {
      background-color: rgba(244, 67, 54, 0.1);
      color: #d32f2f;
      border-left-color: #d32f2f;
}
}
}

/* ===== BASE COMPONENT STYLES ===== */
.emalino-textarea {

  /* Base textarea text styling */
.q-field__native,
  .q-field__input {
    color: inherit;
}

  /* Base control container styling */
.q-field__control {
    border-radius: 4px;
    min-height: 80px;
}

  /* Force consistent textarea styling */
textarea {
    appearance: none !important;
    resize: vertical;
    min-height: 80px;
}

  /* Error message styling */
.error-message {
    display: flex;
    align-items: center;
    color: var(--q-negative);
    font-size: 12px;
    margin-top: 4px;
    padding: 4px 8px;
    background-color: rgba(244, 67, 54, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--q-negative);
}

  /* Show error message area */
&.q-field--error {
.q-field__bottom {
      display: block !important;
      padding-top: 4px;
}
}

  /* Smooth transition for error messages */
.q-field__bottom {
    transition: all 0.3s ease;
}
}

/* ===== DARK MODE STYLES ===== */
.emalino-textarea {
body.body--dark & {

    /* Text color */
.q-field__native,
    .q-field__input {
      color: #ffffff !important;
}

    /* Textarea elements */
textarea {
      color: #ffffff !important;
}

    /* Error message in dark mode */
.error-message {
      background-color: rgba(244, 67, 54, 0.2);
      color: #ff6b6b;
      border-left-color: #ff6b6b;
}

    /* Dark mode cursor */
textarea {
      caret-color: #ffffff !important;
}
textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    textarea:-webkit-autofill:active {
      caret-color: #ffffff !important;
}

    /* Dark mode autofill first line */
textarea:-webkit-autofill::first-line {
      color: #ffffff !important;
}
}
}

/* ===== LIGHT MODE STYLES ===== */
.emalino-textarea {
body.body--light & {

    /* Text color */
.q-field__native,
    .q-field__input {
      color: #000000 !important;
}

    /* Textarea elements */
textarea {
      color: #000000 !important;
}

    /* Error message in light mode */
.error-message {
      background-color: rgba(244, 67, 54, 0.1);
      color: #d32f2f;
      border-left-color: #d32f2f;
}

    /* Light mode cursor */
textarea {
      caret-color: #000000 !important;
}
textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    textarea:-webkit-autofill:active {
      caret-color: #000000 !important;
}

    /* Light mode autofill first line */
textarea:-webkit-autofill::first-line {
      color: #000000 !important;
}
}
}

/* ===== CHROME AUTOFILL FIXES ===== */
.emalino-textarea {

  /* Light mode autofill styling */
body.body--light & {
textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    textarea:-webkit-autofill:active {
      -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
      -webkit-text-fill-color: #000000 !important;
      -webkit-transition: background-color 5000s ease-in-out 0s !important;
      transition: background-color 5000s ease-in-out 0s !important;
}
}

  /* Dark mode autofill styling */
body.body--dark & {
textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    textarea:-webkit-autofill:active {
      -webkit-box-shadow: 0 0 0 30px #1e1e1e inset !important;
      -webkit-text-fill-color: #ffffff !important;
      -webkit-transition: background-color 5000s ease-in-out 0s !important;
      transition: background-color 5000s ease-in-out 0s !important;
}
}
}

/* ===== CURSOR VISIBILITY FIXES ===== */
.emalino-textarea {

  /* Ensure cursor is always visible */
textarea {
    caret-color: auto !important;
}

  /* Force cursor visibility after autofill */
textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus,
  textarea:-webkit-autofill:active {
    caret-color: inherit !important;
}

  /* Force cursor on focus */
textarea:focus {
    caret-color: inherit !important;
}
}

/* ===== AUTOFILL DROPDOWN SUGGESTIONS ===== */
.emalino-textarea {

  /* Base autofill first line styling */
textarea:-webkit-autofill::first-line {
    color: inherit !important;
}
}

/* ===== ADDITIONAL AUTOFILL CURSOR FIXES ===== */
/* Global cursor fixes for autofilled textareas */
textarea:-webkit-autofill {
  -webkit-text-fill-color: inherit !important;
  caret-color: inherit !important;
}

/* Ensure cursor appears when clicking in autofilled field */
textarea:-webkit-autofill:focus {
  caret-color: inherit !important;
  outline: none !important;
}

/* ===== GLOBAL AUTOFILL DROPDOWN STYLING ===== */
/* Dark mode global autofill */
body.body--dark {
textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
    -webkit-transition: background-color 5000s ease-in-out 0s !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #ffffff !important;
}
}

/* Light mode global autofill */
body.body--light {
textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #000000 !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-transition: background-color 5000s ease-in-out 0s !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #000000 !important;
}
}

/* ===== SCROLLBAR STYLING ===== */
.emalino-textarea {

  /* Webkit browsers scrollbar */
textarea::-webkit-scrollbar {
    width: 8px;
}
textarea::-webkit-scrollbar-track {
    background: transparent;
}
textarea::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.3);
    border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 128, 128, 0.5);
}

  /* Firefox scrollbar */
textarea {
    scrollbar-width: thin;
    scrollbar-color: rgba(128, 128, 128, 0.3) transparent;
}
}
.form-disclosure[data-v-91750226] {
  border: 1px solid var(--border-color, rgba(128, 128, 128, 0.3));
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
}
.form-disclosure__toggle[data-v-91750226] {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: var(--spacing-sm, 0.75rem);
  padding: var(--spacing-md, 1rem);
  text-align: left;
  width: 100%;
}
.form-disclosure__toggle[data-v-91750226]:hover {
  background: var(--surface-hover, rgba(128, 128, 128, 0.06));
}
.form-disclosure__toggle[data-v-91750226]:focus-visible {
  outline: 2px solid var(--q-primary);
  outline-offset: -2px;
}
.form-disclosure__icon[data-v-91750226] {
  flex: 0 0 auto;
  opacity: 0.7;
}
.form-disclosure__text[data-v-91750226] {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.form-disclosure__label[data-v-91750226] {
  align-items: center;
  display: flex;
  font-weight: 600;
  gap: var(--spacing-xs, 0.5rem);
}
.form-disclosure__count[data-v-91750226] {
  background: var(--surface-variant, rgba(128, 128, 128, 0.16));
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.2rem 0.45rem;
}
.form-disclosure__caption[data-v-91750226] {
  font-size: 0.8125rem;
  opacity: 0.7;
}
.form-disclosure__chevron[data-v-91750226] {
  flex: 0 0 auto;
  transition: transform var(--transition-fast, 150ms) ease;
}
.form-disclosure__chevron--open[data-v-91750226] {
  transform: rotate(180deg);
}
.form-disclosure__content[data-v-91750226] {
  border-top: 1px solid var(--border-color, rgba(128, 128, 128, 0.3));
  padding: var(--spacing-md, 1rem);
}.form-field[data-v-e71cfce3] {
  margin-bottom: var(--spacing-lg);
}
.form-field__label[data-v-e71cfce3] {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
}
.form-field__indicator[data-v-e71cfce3] {
  font-weight: 400;
  font-size: var(--font-size-xs);
  margin-left: var(--spacing-xs);
}
.form-field__indicator--required[data-v-e71cfce3] {
  color: var(--q-primary);
}
.form-field__indicator--optional[data-v-e71cfce3] {
  color: var(--text-color-muted);
}
.form-field__helper[data-v-e71cfce3] {
  margin: 0 0 var(--spacing-xs) 0;
  font-size: var(--font-size-xs);
  color: var(--text-color-muted);
  line-height: 1.4;
}
.form-field--error .form-field__label[data-v-e71cfce3] {
  color: var(--q-negative);
}
.form-field[data-v-e71cfce3] .q-field {
  margin-bottom: 0;
}
.form-field[data-v-e71cfce3] .q-field .q-field__control {
  border-radius: var(--radius-sm);
}
.form-field[data-v-e71cfce3] .q-field .q-field__bottom {
  padding-top: var(--spacing-xs);
  font-size: var(--font-size-xs);
}
.form-field[data-v-e71cfce3] .q-field .q-field__messages {
  line-height: 1.4;
}
.body--dark .form-field__label[data-v-e71cfce3] {
  color: var(--text-color);
}
.body--dark .form-field__optional[data-v-e71cfce3] {
  color: var(--text-color-light);
}
.body--dark .form-field__helper[data-v-e71cfce3] {
  color: var(--text-color-light);
}
.body--light .form-field__label[data-v-e71cfce3] {
  color: #1e293b;
}
.body--light .form-field__optional[data-v-e71cfce3] {
  color: #64748b;
}
.body--light .form-field__helper[data-v-e71cfce3] {
  color: #64748b;
}.generic-empty-state[data-v-4f8c9bae] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--text-muted, rgba(0, 0, 0, 0.55));
}
.generic-empty-state--compact[data-v-4f8c9bae] {
  padding: 1.25rem;
}
.generic-empty-state__icon[data-v-4f8c9bae] {
  color: var(--text-muted, rgba(0, 0, 0, 0.4));
  margin-bottom: 0.25rem;
}
.generic-empty-state__title[data-v-4f8c9bae] {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, rgba(0, 0, 0, 0.87));
  margin: 0;
}
.generic-empty-state__subtitle[data-v-4f8c9bae] {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  max-width: 32ch;
}
.generic-empty-state__actions[data-v-4f8c9bae] {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}.kb-search-bar[data-v-da9055bc] {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
}
.kb-search-bar__input[data-v-da9055bc] {
  flex: 1 1 auto;
  min-width: 0;
}
.kb-search-bar__input[data-v-da9055bc] .q-field__control::before {
  border-color: var(--control-border);
}
.kb-search-bar__submit[data-v-da9055bc] {
  flex: 0 0 auto;
}
.kb-search-bar[data-v-da9055bc] input[type='search']::-webkit-search-decoration,
.kb-search-bar[data-v-da9055bc] input[type='search']::-webkit-search-cancel-button {
  display: none;
  appearance: none;
}
@media (max-width: 479px) {
.kb-search-bar[data-v-da9055bc] {
    flex-direction: column;
    align-items: stretch;
}
}