/* src/styles.scss */
.flex {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-start {
  display: flex;
  align-items: flex-start;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-4 {
  gap: 4px;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.p-8 {
  padding: 8px;
}
.p-12 {
  padding: 12px;
}
.p-16 {
  padding: 16px;
}
.p-24 {
  padding: 24px;
}
.p-32 {
  padding: 32px;
}
.m-0 {
  margin: 0;
}
.m-8 {
  margin: 8px;
}
.m-16 {
  margin: 16px;
}
.m-24 {
  margin: 24px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.w-full {
  width: 100%;
}
.h-auto {
  height: auto;
}
.min-w-160 {
  min-width: 160px;
}
.min-w-180 {
  min-width: 180px;
}
.min-h-44 {
  min-height: 44px;
}
.card-header-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card-actions-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
}
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
}
.loading-state p {
  margin: 0;
  color: var(--mat-sys-on-surface-variant);
  font-size: 16px;
}
.error-state {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mat-sys-error);
}
.error-state mat-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 8px;
  }
}
.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 16px 24px;
}
.button-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.button-with-icon mat-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.responsive-table {
  width: 100%;
}
@media (max-width: 768px) {
  .responsive-table {
    font-size: 14px;
  }
  .responsive-table td,
  .responsive-table th {
    padding: 8px 12px;
  }
}
.container-max-width {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-divider {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--mat-sys-outline-variant);
}
.section-divider:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
@media (max-width: 768px) {
  .mobile-p-16 {
    padding: 16px;
  }
  .mobile-gap-16 {
    gap: 16px;
  }
  .mobile-flex-column {
    flex-direction: column;
  }
  .mobile-text-center {
    text-align: center;
  }
  .mobile-w-full {
    width: 100%;
  }
}
:root {
  --max-width: 1080px;
  --font-family-base:
    "Proxima Nova",
    "Montserrat",
    Arial,
    sans-serif;
  --mat-sys-typeface-brand: var(--font-family-base);
  --mat-sys-typeface-plain: var(--font-family-base);
  --mat-app-typeface: var(--font-family-base);
  --mat-sys-display-large-font: var(--font-family-base);
  --mat-sys-display-medium-font: var(--font-family-base);
  --mat-sys-display-small-font: var(--font-family-base);
  --mat-sys-headline-large-font: var(--font-family-base);
  --mat-sys-headline-medium-font: var(--font-family-base);
  --mat-sys-headline-small-font: var(--font-family-base);
  --mat-sys-title-large-font: var(--font-family-base);
  --mat-sys-title-medium-font: var(--font-family-base);
  --mat-sys-title-small-font: var(--font-family-base);
  --mat-sys-body-large-font: var(--font-family-base);
  --mat-sys-body-medium-font: var(--font-family-base);
  --mat-sys-body-small-font: var(--font-family-base);
  --mat-sys-label-large-font: var(--font-family-base);
  --mat-sys-label-medium-font: var(--font-family-base);
  --mat-sys-label-small-font: var(--font-family-base);
  --font-size-paragraph: 16px;
  --line-height-paragraph: 24px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --color-black: #222222;
  --color-white: #ffffff;
}
html {
  --mat-sys-background: light-dark(#f9f9fe, #111417);
  --mat-sys-error: light-dark(#ba1a1a, #ffb4ab);
  --mat-sys-error-container: light-dark(#ffdad6, #93000a);
  --mat-sys-inverse-on-surface: light-dark(#f0f0f5, #2e3034);
  --mat-sys-inverse-primary: light-dark(#9ccaff, #2a6194);
  --mat-sys-inverse-surface: light-dark(#2e3034, #e1e2e7);
  --mat-sys-on-background: light-dark(#191c1f, #e1e2e7);
  --mat-sys-on-error: light-dark(#ffffff, #690005);
  --mat-sys-on-error-container: light-dark(#93000a, #ffdad6);
  --mat-sys-on-primary: light-dark(#ffffff, #003257);
  --mat-sys-on-primary-container: light-dark(#02497a, #d0e4ff);
  --mat-sys-on-primary-fixed: light-dark(#001d35, #001d35);
  --mat-sys-on-primary-fixed-variant: light-dark(#02497a, #02497a);
  --mat-sys-on-secondary: light-dark(#ffffff, #203245);
  --mat-sys-on-secondary-container: light-dark(#36485c, #d1e4fd);
  --mat-sys-on-secondary-fixed: light-dark(#091d2f, #091d2f);
  --mat-sys-on-secondary-fixed-variant: light-dark(#36485c, #36485c);
  --mat-sys-on-surface: light-dark(#191c1f, #e1e2e7);
  --mat-sys-on-surface-variant: light-dark(#42474f, #dee3ec);
  --mat-sys-on-tertiary: light-dark(#ffffff, #003257);
  --mat-sys-on-tertiary-container: light-dark(#02497a, #d0e4ff);
  --mat-sys-on-tertiary-fixed: light-dark(#001d35, #001d35);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#02497a, #02497a);
  --mat-sys-outline: light-dark(#727780, #8c919a);
  --mat-sys-outline-variant: light-dark(#c2c7d0, #42474f);
  --mat-sys-primary: light-dark(#2a6194, #9ccaff);
  --mat-sys-primary-container: light-dark(#d0e4ff, #02497a);
  --mat-sys-primary-fixed: light-dark(#d0e4ff, #d0e4ff);
  --mat-sys-primary-fixed-dim: light-dark(#9ccaff, #9ccaff);
  --mat-sys-scrim: light-dark(#222222, #222222);
  --mat-sys-secondary: light-dark(#4e6075, #b6c8e1);
  --mat-sys-secondary-container: light-dark(#d1e4fd, #36485c);
  --mat-sys-secondary-fixed: light-dark(#d1e4fd, #d1e4fd);
  --mat-sys-secondary-fixed-dim: light-dark(#b6c8e1, #b6c8e1);
  --mat-sys-shadow: light-dark(#222222, #222222);
  --mat-sys-surface: light-dark(#f9f9fe, #111417);
  --mat-sys-surface-bright: light-dark(#f9f9fe, #37393d);
  --mat-sys-surface-container: light-dark(#ededf2, #1d2023);
  --mat-sys-surface-container-high: light-dark(#e7e8ed, #282a2e);
  --mat-sys-surface-container-highest: light-dark(#e1e2e7, #333539);
  --mat-sys-surface-container-low: light-dark(#f3f3f8, #191c1f);
  --mat-sys-surface-container-lowest: light-dark(#ffffff, #0c0e12);
  --mat-sys-surface-dim: light-dark(#d9dade, #111417);
  --mat-sys-surface-tint: light-dark(#2a6194, #9ccaff);
  --mat-sys-surface-variant: light-dark(#dee3ec, #42474f);
  --mat-sys-tertiary: light-dark(#2a6194, #9ccaff);
  --mat-sys-tertiary-container: light-dark(#d0e4ff, #02497a);
  --mat-sys-tertiary-fixed: light-dark(#d0e4ff, #d0e4ff);
  --mat-sys-tertiary-fixed-dim: light-dark(#9ccaff, #9ccaff);
  --mat-sys-neutral-variant20: #2b3138;
  --mat-sys-neutral10: #191c1f;
  --mat-sys-level0:
    0px 0px 0px 0px rgba(34, 34, 34, 0.2),
    0px 0px 0px 0px rgba(34, 34, 34, 0.14),
    0px 0px 0px 0px rgba(34, 34, 34, 0.12);
  --mat-sys-level1:
    0px 2px 1px -1px rgba(34, 34, 34, 0.2),
    0px 1px 1px 0px rgba(34, 34, 34, 0.14),
    0px 1px 3px 0px rgba(34, 34, 34, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(34, 34, 34, 0.2),
    0px 3px 4px 0px rgba(34, 34, 34, 0.14),
    0px 1px 8px 0px rgba(34, 34, 34, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(34, 34, 34, 0.2),
    0px 6px 10px 0px rgba(34, 34, 34, 0.14),
    0px 1px 18px 0px rgba(34, 34, 34, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(34, 34, 34, 0.2),
    0px 8px 10px 1px rgba(34, 34, 34, 0.14),
    0px 3px 14px 2px rgba(34, 34, 34, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(34, 34, 34, 0.2),
    0px 12px 17px 2px rgba(34, 34, 34, 0.14),
    0px 5px 22px 4px rgba(34, 34, 34, 0.12);
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
body {
  color-scheme: light;
  color: var(--mat-sys-on-surface);
  font-family: var(--font-family-base);
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-paragraph);
  margin: 0;
}
html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
app-root {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
@media print {
  html,
  body {
    height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
    margin: 0;
    padding: 0;
  }
  app-root {
    height: auto !important;
    overflow: visible !important;
    display: block !important;
  }
  .main-content,
  .profile-content,
  mat-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  app-navbar,
  app-header,
  .nav-container,
  .header-container {
    display: none !important;
  }
}
@media screen {
  .screenshot-mode html,
  .screenshot-mode body,
  .full-page-capture html,
  .full-page-capture body {
    height: auto !important;
    overflow-y: visible !important;
  }
  .screenshot-mode app-root,
  .full-page-capture app-root {
    height: auto !important;
    overflow: visible !important;
  }
}
* {
  font-family: var(--font-family-base);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  font-weight: var(--font-family-base);
  margin: 0;
}
h1 {
  font-size: 42px;
  line-height: 52px;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}
h2 {
  font-size: 37px;
  line-height: 46px;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}
h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}
h4 {
  font-size: 26px;
  line-height: 34px;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}
h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}
h6 {
  font-size: 22px;
  line-height: 30px;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}
p {
  font-family: var(--font-family-base);
  font-size: var(--font-size-paragraph);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-paragraph);
  color: var(--color-black);
  margin: 0 0 16px 0;
}
.text-regular {
  font-weight: var(--font-weight-regular);
}
.text-medium {
  font-weight: var(--font-weight-medium);
}
.text-bold {
  font-weight: var(--font-weight-bold);
}
:root {
  --mat-sys-surface-container-lowest: var(--color-white);
  --mat-sys-on-surface: var(--color-black);
  --mat-sys-on-primary: var(--color-white);
  --mat-sys-on-secondary: var(--color-white);
  --mat-sys-on-tertiary: var(--color-white);
  --mat-sys-on-error: var(--color-white);
}
.mat-mdc-card-title,
.mat-mdc-card-subtitle,
.mat-mdc-button,
.mat-mdc-raised-button,
.mat-mdc-outlined-button,
.mat-mdc-unelevated-button,
.mat-mdc-form-field,
.mat-mdc-input-element,
.mat-mdc-select,
.mat-mdc-option,
.mat-mdc-list-item,
.mat-mdc-menu-item,
.mat-toolbar,
.mdc-top-app-bar__title {
  font-family: var(--font-family-base) !important;
}
.mat-mdc-card-title {
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  line-height: 28px;
}
.mat-mdc-card-subtitle {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  color: var(--color-black);
  line-height: 24px;
}
.mat-mdc-button.mdc-button,
.mat-mdc-outlined-button.mdc-button,
.mat-mdc-raised-button.mdc-button,
.mat-mdc-unelevated-button.mdc-button {
  border-radius: 8px;
}
mat-card.mat-mdc-card.profile-card {
  max-width: var(--max-width);
  box-shadow: none;
  background-color: white;
}
.profile-details {
  min-width: 1rem;
}
.profile-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--mat-md-sys-color-on-surface);
}
.field-label {
  font-weight: bold;
  color: var(--mat-md-sys-color-secondary);
  margin-bottom: 2px;
}
.field-value {
  font-weight: normal;
  color: var(--mat-md-sys-color-on-surface);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.service-record-details {
  min-width: 800px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.placeholder-text {
  margin: 0;
  color: var(--mdc-theme-on-surface, rgba(0, 0, 0, 0.6));
  text-align: center;
  padding: 32px;
}
@media (max-width: 768px) {
  .service-record-details {
    min-width: unset;
  }
  .placeholder-text {
    padding: 24px 16px;
  }
}
mat-card.mat-mdc-card.welcome-card,
mat-card.mat-mdc-card.service-record-card,
mat-card.mat-mdc-card.leave-history-card,
mat-card.mat-mdc-card.requests-card,
mat-card.mat-mdc-card.notes-card,
mat-card.mat-mdc-card.work-notes-card,
mat-card.mat-mdc-card.actions-card,
mat-card.mat-mdc-card.permission-selection-card,
mat-card.mat-mdc-card.auth-card,
mat-card.mat-mdc-card.error-card,
mat-card.mat-mdc-card {
  background-color: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
mat-card.mat-mdc-card.actions-card {
  background: transparent;
  border: none;
  box-shadow: none;
}
mat-grid-tile .mat-grid-tile-content {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.profile-grid {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: var(--max-width);
}
.profile-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.profile-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.profile-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-row {
  display: grid;
  grid-column: 1/-1;
  gap: inherit;
  width: 100%;
  max-width: var(--max-width);
}
.profile-grid.cols-3 .grid-row {
  grid-template-columns: repeat(3, 1fr);
}
.profile-grid.cols-4 .grid-row {
  grid-template-columns: repeat(4, 1fr);
}
.profile-grid.cols-5 .grid-row {
  grid-template-columns: repeat(5, 1fr);
}
.grid-row {
}
.grid-row > div:empty {
  min-height: 1px;
}
.grid-row {
}
.grid-row > .profile-field {
  min-width: 0;
  max-width: 100%;
}
.grid-row.even {
}
.grid-row.even > * {
  background-color: transparent;
  margin: 0 -8px;
  padding: 8px;
}
.grid-row.odd > * {
  background-color: #f5f5f5;
  margin: 0 -8px;
  padding: 8px;
}
:root {
  --mat-table-background-color: transparent;
  --mat-paginator-container-background-color: transparent;
}
.dashboard-count-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}
.dashboard-count-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.02);
}
.dashboard-count-number {
  font-size: 4rem;
  font-weight: bold;
  color: var(--mat-sys-color-primary, #3a6fa2);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1;
}
.dashboard-count-label {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--mat-sys-color-on-surface, #000);
  line-height: 1.2;
}

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