










































































































































/* ── Shimmer animation ── */
@-webkit-keyframes skeleton-shimmer-data-v-134c2270 {
0%   { background-position: -400px 0;
}
100% { background-position:  400px 0;
}
}
@keyframes skeleton-shimmer-data-v-134c2270 {
0%   { background-position: -400px 0;
}
100% { background-position:  400px 0;
}
}
.skel-shimmer[data-v-134c2270] {
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(var(--color-surface-card)),
    color-stop(40%, #f0f0f0),
    color-stop(50%, #e8e8e8),
    color-stop(60%, #f0f0f0),
    to(var(--color-surface-card))
  );
  background: linear-gradient(
    90deg,
    var(--color-surface-card) 0%,
    #f0f0f0 40%,
    #e8e8e8 50%,
    #f0f0f0 60%,
    var(--color-surface-card) 100%
  );
  background-size: 800px 100%;
  -webkit-animation: skeleton-shimmer-data-v-134c2270 1.6s ease-in-out infinite;
          animation: skeleton-shimmer-data-v-134c2270 1.6s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* ── Layout containers ── */
.route-skeleton[data-v-134c2270] {
  min-height: 60vh;
}
.route-skeleton__welcome[data-v-134c2270] {
  margin-bottom: var(--space-8);
}
.route-skeleton__header[data-v-134c2270] {
  margin-bottom: var(--space-6);
}
.route-skeleton__section[data-v-134c2270] {
  margin-bottom: var(--space-8);
}

/* ── Lines ── */
.skel-line[data-v-134c2270] {
  height: 14px;
  margin-bottom: var(--space-2);
}
.skel-line--h1[data-v-134c2270] {
  width: 55%;
  height: 28px;
  margin-bottom: var(--space-3);
}
.skel-line--subtitle[data-v-134c2270] {
  width: 40%;
  height: 14px;
}
.skel-line--title[data-v-134c2270] {
  width: 70%;
  height: 16px;
}
.skel-line--sub[data-v-134c2270] {
  width: 50%;
  height: 12px;
}
.skel-line--short[data-v-134c2270] {
  width: 30%;
  height: 10px;
}
.skel-line--label[data-v-134c2270] {
  width: 25%;
  height: 12px;
  margin-bottom: var(--space-1);
}

/* ── Caption ── */
.skel-caption[data-v-134c2270] {
  width: 35%;
  height: 12px;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-caption);
}

/* ── Grid ── */
.skel-grid[data-v-134c2270] {
  display: grid;
  gap: var(--space-4);
}
.skel-grid--3[data-v-134c2270] {
  grid-template-columns: repeat(3, 1fr);
}
.skel-grid--2[data-v-134c2270] {
  grid-template-columns: repeat(2, 1fr);
}
.skel-grid--cards[data-v-134c2270] {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (max-width: 960px) {
.skel-grid--3[data-v-134c2270] {
    grid-template-columns: 1fr;
}
.skel-grid--2[data-v-134c2270] {
    grid-template-columns: 1fr;
}
}

/* ── Card base ── */
.skel-card[data-v-134c2270] {
  border-radius: var(--radius-2xl);
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-4);
}
.skel-card--wide[data-v-134c2270] {
  min-height: 120px;
}
.skel-card--doc[data-v-134c2270] {
  min-height: 100px;
}
.skel-card--list[data-v-134c2270] {
  padding: 0;
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.skel-card--credential[data-v-134c2270] {
  min-height: 180px;
}
.skel-card--form[data-v-134c2270] {
  padding: var(--space-6);
}
.skel-card--default[data-v-134c2270] {
  min-height: 160px;
  padding: var(--space-6);
}
.skel-card__strip[data-v-134c2270] {
  height: 8px;
  width: 100%;
  border-radius: 0;
  margin-bottom: var(--space-4);
}
.skel-card__body[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
}
.skel-card__lines[data-v-134c2270] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-2);
}

/* ── Avatar placeholder ── */
.skel-avatar[data-v-134c2270] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ── Tabs ── */
.skel-tabs[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border-light);
  border-radius: 0;
}
.skel-tab[data-v-134c2270] {
  width: 120px;
  height: 36px;
  border-radius: var(--radius-md);
}

/* ── List container ── */
.skel-list[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-3);
}

/* ── Form fields ── */
.skel-form-fields[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-5);
  margin: var(--space-6) 0;
}
.skel-field[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.skel-input[data-v-134c2270] {
  height: 48px;
  border-radius: var(--radius-md);
}

/* ── Stepper ── */
.skel-stepper[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.skel-step[data-v-134c2270] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 8px;
  border-radius: var(--radius-pill);
}

/* ── Actions ── */
.skel-actions[data-v-134c2270] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: var(--space-6);
}
.skel-btn[data-v-134c2270] {
  width: 140px;
  height: 40px;
  border-radius: var(--radius-pill);
}

/* ── Mobile adjustments ── */
@media (max-width: 600px) {
.skel-line--h1[data-v-134c2270] {
    width: 70%;
    height: 22px;
}
.skel-line--subtitle[data-v-134c2270] {
    width: 55%;
}
.skel-grid--cards[data-v-134c2270] {
    grid-template-columns: 1fr;
}
.skel-card--credential[data-v-134c2270] {
    min-height: 140px;
}
}


.confirm-dialog-card[data-v-baa3c3fc] {
  border-radius: 16px !important;
  padding: 24px 20px 16px;
  text-align: center;
}
.confirm-dialog-icon-wrap[data-v-baa3c3fc] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
}
.confirm-dialog-icon[data-v-baa3c3fc] {
  font-size: 56px !important;
}
.confirm-dialog-message[data-v-baa3c3fc] {
  color: rgba(0, 0, 0, 0.87) !important;
  font-size: 1rem;
  line-height: 1.5;
  padding: 8px 4px 16px !important;
  text-align: center;
}
.confirm-dialog-actions[data-v-baa3c3fc] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 0 8px 8px;
}
.confirm-dialog-btn[data-v-baa3c3fc] {
  width: 100%;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600 !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.confirm-dialog-btn--primary[data-v-baa3c3fc] {
  /* Primary (less destructive) action — solid filled */
  min-height: 42px;
}
.confirm-dialog-btn--danger[data-v-baa3c3fc] {
  /* Destructive action — outlined, visually secondary */
  min-height: 42px;
}


.v-list-item--active[data-v-e4b7b1c6] {
  background-color: #eef6fb !important;
  border-left: 3px solid #1282a2 !important;
}
.v-navigation-drawer .v-list-item[data-v-e4b7b1c6] {
  border-left: 3px solid transparent;
  min-height: 48px;
}
.v-navigation-drawer--mini-variant .v-list-item[data-v-e4b7b1c6] {
  border-left: none !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.v-navigation-drawer--mini-variant .v-list-item .v-list-item__icon[data-v-e4b7b1c6] {
  margin: 0 !important;
  -ms-flex-item-align: center !important;
      align-self: center !important;
}
.v-list-item--active .v-icon[data-v-e4b7b1c6] {
  color: #1282a2 !important;
}
.v-list-item--active .v-list-item__title[data-v-e4b7b1c6] {
  color: #1282a2 !important;
  font-weight: 600 !important;
}
.user-header[data-v-e4b7b1c6] {
  padding: 16px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 12px !important;
}
.user-avatar[data-v-e4b7b1c6] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1282a2 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-transform: uppercase;
  /* color kept white — avatar bg is #1282a2 */
}
.user-info[data-v-e4b7b1c6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.user-name[data-v-e4b7b1c6] {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-sub[data-v-e4b7b1c6] {
  font-size: 0.72rem;
  color: #7f8c8d !important;
}
.title-portal[data-v-e4b7b1c6] {
  font-size: 16px !important;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 0px;
}
@media screen and (min-width: 960px) {
.desktop[data-v-e4b7b1c6] { margin-left: 256px;
}
.desktop.mini[data-v-e4b7b1c6] { margin-left: 56px;
}
}
@media screen and (max-width: 959px) {
.mobile-main-offset[data-v-e4b7b1c6] {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
}
.drawer-header[data-v-e4b7b1c6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 16px;
  width: 100%;
}
.drawer-header--large-logo[data-v-e4b7b1c6] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.drawer-logo[data-v-e4b7b1c6] {
  max-height: 36px;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: none;
          filter: none;
}
.drawer-logo--large[data-v-e4b7b1c6] {
  max-height: 64px;
  max-width: 210px;
}
.drawer-header--large-logo .collapse-btn[data-v-e4b7b1c6] {
  position: absolute;
  right: 8px;
}
.collapse-btn[data-v-e4b7b1c6] {
  color: #7f8c8d !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 10px !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-transition: width 220ms ease, height 220ms ease, min-width 220ms ease;
  transition: width 220ms ease, height 220ms ease, min-width 220ms ease;
}
.collapse-btn .v-icon[data-v-e4b7b1c6] {
  font-size: 26px !important;
  line-height: 1 !important;
  -webkit-transition: font-size 220ms ease, -webkit-transform 220ms ease;
  transition: font-size 220ms ease, -webkit-transform 220ms ease;
  transition: font-size 220ms ease, transform 220ms ease;
  transition: font-size 220ms ease, transform 220ms ease, -webkit-transform 220ms ease;
}
.v-navigation-drawer--mini-variant .drawer-header[data-v-e4b7b1c6] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}
.v-navigation-drawer--mini-variant .collapse-btn[data-v-e4b7b1c6] {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
}
.v-navigation-drawer--mini-variant .collapse-btn .v-icon[data-v-e4b7b1c6] {
  font-size: 32px !important;
}
.v-navigation-drawer--mini-variant .user-header[data-v-e4b7b1c6] {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding: 10px 0 !important;
  gap: 0 !important;
}
.v-navigation-drawer--mini-variant .user-info[data-v-e4b7b1c6] {
  display: none !important;
}
.v-navigation-drawer--mini-variant .user-avatar[data-v-e4b7b1c6] {
  margin: 0 auto;
}
.main-content[data-v-e4b7b1c6] {
  width: 100%;
}
.mobile-route-header[data-v-e4b7b1c6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #eceded;
  border-bottom: 1px solid #dfe5e8;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.mobile-route-header__menu[data-v-e4b7b1c6] {
  background-color: white !important;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
          box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
}
.mobile-route-header__title[data-v-e4b7b1c6] {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 600;
  color: #2c3e50;
}

/* ── Compact sidebar for netbook / small viewport heights ── */
@media (max-height: 800px) {
.drawer-header[data-v-e4b7b1c6] {
    padding: 6px 12px;
}
.drawer-logo[data-v-e4b7b1c6] {
    max-height: 26px;
}
.drawer-logo--large[data-v-e4b7b1c6] {
    max-height: 42px;
    max-width: 185px;
}
.collapse-btn[data-v-e4b7b1c6] {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
}
.collapse-btn .v-icon[data-v-e4b7b1c6] {
    font-size: 22px !important;
}
.user-header[data-v-e4b7b1c6] {
    padding: 8px 12px !important;
    gap: 8px !important;
}
.user-avatar[data-v-e4b7b1c6] {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
}
.user-name[data-v-e4b7b1c6] {
    font-size: 0.78rem;
}
.user-sub[data-v-e4b7b1c6] {
    font-size: 0.62rem;
}
}
@media (max-height: 680px) {
.drawer-header[data-v-e4b7b1c6] {
    padding: 4px 10px;
}
.drawer-logo[data-v-e4b7b1c6] {
    max-height: 22px;
}
.drawer-logo--large[data-v-e4b7b1c6] {
    max-height: 34px;
    max-width: 165px;
}
.user-header[data-v-e4b7b1c6] {
    padding: 6px 10px !important;
    gap: 6px !important;
}
.user-avatar[data-v-e4b7b1c6] {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
}
.user-name[data-v-e4b7b1c6] {
    font-size: 0.72rem;
}
.user-sub[data-v-e4b7b1c6] {
    font-size: 0.58rem;
}
}



.v-navigation-drawer .v-list-item__title {
  color: #2c3e50 !important;
}
.v-navigation-drawer .v-icon {
  color: #5a7a8a !important;
  line-height: 1 !important;
}
.v-navigation-drawer .v-list-item__icon {
  width: 24px !important;
  min-width: 24px !important;
  margin-right: 16px !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.v-navigation-drawer--mini-variant .v-list-item {
  padding: 0 !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.v-navigation-drawer--mini-variant .v-list-item__icon {
  width: 24px !important;
  min-width: 24px !important;
  margin: 0 auto !important;
}
#app {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  /*margin-top: 60px;*/
}
.background {
  background-color: #eceded;
}
.titesp {
  width: 250px !important;
}
.pad-icon {
  padding: 10px;
  font-size: 0.8rem;
}
.pad-no {
  padding: 0px;
}
.e {
  margin-left: 15%;
}
.m {
  margin: 0.5em;
}
@media (max-width: 959px) {
.page-header,
  .filtros-header {
    padding-top: 0 !important;
    margin-bottom: 40px !important;
}
.page-header .page-title,
  .page-header .page-subtitle,
  .filtros-header .filtros-title,
  .filtros-header .filtros-subtitle {
    display: none !important;
}
}

/* ── Compact sidebar menu items for netbook / small viewport heights ── */
@media (max-height: 800px) {
.v-navigation-drawer .v-list-item {
    min-height: 38px !important;
}
.v-navigation-drawer .v-list-item__title {
    font-size: 0.82rem !important;
}
.v-navigation-drawer .v-list-item__icon {
    margin-right: 10px !important;
}
.v-navigation-drawer .v-list-item__icon .v-icon {
    font-size: 20px !important;
}
.v-navigation-drawer .v-list {
    padding: 2px 0 !important;
}
}
@media (max-height: 680px) {
.v-navigation-drawer .v-list-item {
    min-height: 32px !important;
}
.v-navigation-drawer .v-list-item__title {
    font-size: 0.76rem !important;
}
.v-navigation-drawer .v-list-item__icon {
    margin-right: 8px !important;
}
.v-navigation-drawer .v-list-item__icon .v-icon {
    font-size: 18px !important;
}
.v-navigation-drawer .v-list {
    padding: 0 !important;
}
}


/* ============================================================
   Design Tokens — Portal Alephoo
   Single source of truth for all visual values.
   Import this file; never hardcode these values in components.
   ============================================================ */

:root {
  /* ----------------------------------------------------------
     Brand colors
  ---------------------------------------------------------- */
  --color-primary:       #1282A2;
  --color-primary-dark:  #0e6e8a;
  --color-primary-light: #e8f4f8;
  --color-secondary:     #001F54;
  --color-tertiary:      #0A1128;

  /* ----------------------------------------------------------
     Text colors
  ---------------------------------------------------------- */
  --color-text-primary:    #2c3e50;
  --color-text-secondary:  #5f6b7a;
  --color-text-muted:      #95a5a6;
  --color-text-hint:       #5f6368;
  --color-text-on-primary: #ffffff;

  /* ----------------------------------------------------------
     Surface colors
  ---------------------------------------------------------- */
  --color-surface-page:     #f0f2f5;
  --color-surface-card:     #ffffff;
  --color-surface-selected: #E3F2FD;
  --color-surface-hover:    #f5f9ff;

  /* ----------------------------------------------------------
     Border colors
  ---------------------------------------------------------- */
  --color-border-subtle: rgba(0, 0, 0, 0.08);
  --color-border-light:  rgba(0, 0, 0, 0.05);
  --color-border-medium: #cfd8dc;
  --color-border-focus:  #1282A2;
  --color-border-active: #1282A2;
  --color-border-hover:  rgba(18, 130, 162, 0.35);

  /* ----------------------------------------------------------
     Semantic colors
  ---------------------------------------------------------- */
  --color-success:        #2E7D32;
  --color-success-light:  #e8f5e9;
  --color-success-dark:   #1b5e20;
  --color-error:          #E53935;
  --color-error-light:    #ffebee;
  --color-error-dark:     #b71c1c;
  --color-warning:        #F57C00;
  --color-warning-light:  #fff3e0;
  --color-warning-dark:   #e65100;
  --color-warning-border: #FFB74D;
  --color-info:           #1565C0;
  --color-info-light:     #e3f2fd;
  --color-info-dark:      #0d47a1;

  /* ----------------------------------------------------------
     Typography
  ---------------------------------------------------------- */
  --font-family-base: 'Roboto', sans-serif;

  --font-size-h1:      2.2rem;
  --font-size-h2:      1.5rem;
  --font-size-h3:      1.2rem;
  --font-size-body:    1rem;
  --font-size-body-lg: 1.1rem;
  --font-size-small:   0.875rem;
  --font-size-caption: 0.75rem;

  --font-weight-regular:  400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;

  --line-height-tight:   1.2;
  --line-height-base:    1.5;
  --line-height-relaxed: 1.7;

  /* ----------------------------------------------------------
     Spacing scale (8px base)
  ---------------------------------------------------------- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* ----------------------------------------------------------
     Border radius
  ---------------------------------------------------------- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-pill: 99px;

  /* ----------------------------------------------------------
     Shadows
  ---------------------------------------------------------- */
  --shadow-card:       0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-elevated:   0 8px 24px rgba(0, 0, 0, 0.12);

  /* ----------------------------------------------------------
     Layout
  ---------------------------------------------------------- */
  --content-max-width:        780px;
  --content-max-width-narrow: 480px;
  --sidebar-width:            300px;

  /* ----------------------------------------------------------
     Focus ring
  ---------------------------------------------------------- */
  --focus-ring: 0 0 0 2px var(--color-surface-card), 0 0 0 4px var(--color-primary);

  /* ----------------------------------------------------------
     Highlight animation (new items)
  ---------------------------------------------------------- */
  --highlight-bg: rgba(18, 130, 162, 0.08);
  --highlight-duration: 2s;

  /* ----------------------------------------------------------
     Transitions
  ---------------------------------------------------------- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* ----------------------------------------------------------
     Z-index scale
  ---------------------------------------------------------- */
  --z-drawer:  200;
  --z-overlay: 300;
  --z-modal:   400;
  --z-toast:   500;
}

/* ============================================================
   Base Styles — Portal Alephoo
   Reusable utility classes for interior screens.
   All values reference tokens from tokens.css.
   ============================================================ */

/* ----------------------------------------------------------
   Page layout
---------------------------------------------------------- */
.page-background {
  background-color: var(--color-surface-page);
  min-height: 100vh;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px 80px;
}

.page-header {
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .page-header {
    padding-top: 56px;
  }
  .page-container {
    max-width: 100%;
    padding: 16px 16px 80px;
  }
}

@media (max-width: 600px) {
  .page-container {
    padding: 16px 12px 80px;
  }
}

/* ----------------------------------------------------------
   Card base
---------------------------------------------------------- */
.app-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-2xl);
  -webkit-box-shadow: var(--shadow-card);
          box-shadow: var(--shadow-card);
  -webkit-transition: border-color var(--transition-base), -webkit-box-shadow var(--transition-base);
  transition: border-color var(--transition-base), -webkit-box-shadow var(--transition-base);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), -webkit-box-shadow var(--transition-base);
}

.app-card--hoverable:hover {
  -webkit-box-shadow: var(--shadow-card-hover);
          box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-hover);
}

.app-card--active,
.app-card--selected {
  border-color: var(--color-border-active);
  -webkit-box-shadow: var(--shadow-card-hover);
          box-shadow: var(--shadow-card-hover);
}

.app-card--elevated {
  -webkit-box-shadow: var(--shadow-elevated);
          box-shadow: var(--shadow-elevated);
}

/* Mobile: no border, no shadow */
@media (max-width: 960px) {
  .app-card {
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

/* ----------------------------------------------------------
   Typography
---------------------------------------------------------- */
.text-heading {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.text-subheading {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.text-body {
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
  line-height: var(--line-height-base);
}

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

.text-secondary {
  color: var(--color-text-secondary);
}

/* ----------------------------------------------------------
   Input base (deep selectors for Vuetify overrides)
---------------------------------------------------------- */
.input-base >>> .v-input__control {
  min-height: 56px;
}

.input-base >>> input,
.input-base >>> .v-select__selection {
  font-size: var(--font-size-body-lg) !important;
  color: var(--color-text-primary) !important;
}

.input-base >>> .v-label {
  font-size: var(--font-size-body-lg) !important;
}

.input-base >>> .v-input__slot fieldset {
  background-color: transparent !important;
}

.input-base.v-text-field--outlined >>> .v-input__slot {
  background-color: var(--color-surface-card) !important;
}

/* ----------------------------------------------------------
   Step indicator
---------------------------------------------------------- */
.step-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.step-indicator__segment {
  height: 4px;
  border-radius: var(--radius-sm);
  background-color: var(--color-border-medium);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: background-color var(--transition-base);
  transition: background-color var(--transition-base);
}

.step-indicator__segment--active {
  background-color: var(--color-primary);
}

.step-indicator__segment--completed {
  background-color: var(--color-primary);
  opacity: 0.5;
}

/* ----------------------------------------------------------
   Empty state
---------------------------------------------------------- */
.empty-state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--space-16) var(--space-8);
  text-align: center;
  color: var(--color-text-muted);
}

.empty-state__icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
  color: var(--color-border-medium);
}

.empty-state__title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.empty-state__text {
  font-size: var(--font-size-body);
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------
   Error state
---------------------------------------------------------- */
.error-state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.error-state__icon {
  color: var(--color-error);
  font-size: 40px;
  margin-bottom: var(--space-4);
}

/* ----------------------------------------------------------
   Loading skeleton
---------------------------------------------------------- */
.skeleton {
  background: -webkit-gradient(
    linear,
    left top, right top,
    color-stop(25%, var(--color-border-medium)),
    color-stop(50%, var(--color-surface-hover)),
    color-stop(75%, var(--color-border-medium))
  );
  background: linear-gradient(
    90deg,
    var(--color-border-medium) 25%,
    var(--color-surface-hover) 50%,
    var(--color-border-medium) 75%
  );
  background-size: 200% 100%;
  -webkit-animation: skeleton-loading 1.5s infinite;
          animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@-webkit-keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ----------------------------------------------------------
   Global focus ring
   Applied ONLY to specific interactive elements.
   Vuetify inputs (v-text-field, v-select, v-autocomplete, etc.)
   already provide their own focus styling via fieldset border
   color changes, so they are excluded to avoid the "double
   border" / unwanted outline artifact on every input field.
---------------------------------------------------------- */

/* Vuetify button focus */
.v-btn:focus-visible {
  outline: none;
  -webkit-box-shadow: var(--focus-ring) !important;
          box-shadow: var(--focus-ring) !important;
}

/* Link focus */
a:focus-visible {
  outline: none;
  -webkit-box-shadow: var(--focus-ring);
          box-shadow: var(--focus-ring);
  border-radius: 2px;
}

/* Tab focus */
.v-tab:focus-visible {
  outline: none;
  -webkit-box-shadow: var(--focus-ring);
          box-shadow: var(--focus-ring);
}

/* List item focus */
.v-list-item:focus-visible {
  outline: none;
  -webkit-box-shadow: var(--focus-ring);
          box-shadow: var(--focus-ring);
}

/* ----------------------------------------------------------
   Highlight animation for newly created items (Fix #4)
---------------------------------------------------------- */
@-webkit-keyframes highlight-fade {
  0% {
    background-color: var(--highlight-bg);
    -webkit-box-shadow: 0 0 0 3px rgba(18, 130, 162, 0.2);
            box-shadow: 0 0 0 3px rgba(18, 130, 162, 0.2);
  }
  100% {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@keyframes highlight-fade {
  0% {
    background-color: var(--highlight-bg);
    -webkit-box-shadow: 0 0 0 3px rgba(18, 130, 162, 0.2);
            box-shadow: 0 0 0 3px rgba(18, 130, 162, 0.2);
  }
  100% {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.highlight-new {
  -webkit-animation: highlight-fade var(--highlight-duration) ease-out;
          animation: highlight-fade var(--highlight-duration) ease-out;
  border-radius: var(--radius-2xl);
}

/* ----------------------------------------------------------
   Custom scrollbar theming (Fix #7)
---------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface-page);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb {
  background: rgba(18, 130, 162, 0.25);
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-surface-page);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(18, 130, 162, 0.45);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 130, 162, 0.25) var(--color-surface-page);
}














































































































































































































































































































































































































































/* ── Overlay ──────────────────────────────────────────────────────── */
.guide-tour__overlay[data-v-451f705b] {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

/* ── Highlight ────────────────────────────────────────────────────── */
.guide-tour__highlight[data-v-451f705b] {
  position: fixed;
  z-index: 9999;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 0 4px rgba(18, 130, 162, 0.35), 0 0 20px rgba(18, 130, 162, 0.15);
          box-shadow: 0 0 0 4px rgba(18, 130, 162, 0.35), 0 0 20px rgba(18, 130, 162, 0.15);
  background: transparent;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Tooltip ──────────────────────────────────────────────────────── */
.guide-tour__tooltip[data-v-451f705b] {
  position: fixed;
  z-index: 10000;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0;
  width: calc(100vw - 32px);
  max-width: 380px;
  overflow: visible;
  -webkit-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Arrow ────────────────────────────────────────────────────────── */
.guide-tour__arrow[data-v-451f705b] {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}
.guide-tour__arrow--bottom[data-v-451f705b] {
  top: -7px;
  left: 50%;
  margin-left: -7px;
}
.guide-tour__arrow--top[data-v-451f705b] {
  bottom: -7px;
  left: 50%;
  margin-left: -7px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.04);
}
.guide-tour__arrow--left[data-v-451f705b] {
  right: -7px;
  top: 50%;
  margin-top: -7px;
  -webkit-box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.04);
}
.guide-tour__arrow--right[data-v-451f705b] {
  left: -7px;
  top: 50%;
  margin-top: -7px;
  -webkit-box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.04);
}

/* ── Header ───────────────────────────────────────────────────────── */
.guide-tour__header[data-v-451f705b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 16px 0 16px;
}
.guide-tour__step-badge[data-v-451f705b] {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1282A2;
  background: rgba(18, 130, 162, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.03em;
}
.guide-tour__close-btn[data-v-451f705b] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  border-radius: 50%;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
.guide-tour__close-btn[data-v-451f705b]:hover {
  color: #333;
  background-color: rgba(0, 0, 0, 0.06);
}

/* ── Body ─────────────────────────────────────────────────────────── */
.guide-tour__body[data-v-451f705b] {
  padding: 8px 16px 0 16px;
}
.guide-tour__title[data-v-451f705b] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.guide-tour__content[data-v-451f705b] {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.guide-tour__footer[data-v-451f705b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 16px 14px 16px;
}
.guide-tour__btn[data-v-451f705b] {
  text-transform: none !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}
.guide-tour__btn--prev[data-v-451f705b] {
  color: #777 !important;
}
.guide-tour__btn--next[data-v-451f705b] {
  min-width: 100px;
}

/* ── Mobile adjustments ───────────────────────────────────────────── */
.guide-tour--mobile .guide-tour__tooltip[data-v-451f705b] {
  max-width: calc(100vw - 24px);
  left: 12px !important;
  right: 12px;
}

