/*!**********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./client/components/common/header/header.css ***!
  \**********************************************************************************************/
.app-header-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(22, 49, 61, 0.08);
  background:
    radial-gradient(
      circle at top left,
      rgba(251, 198, 7, 0.2),
      transparent 26%
    ),
    radial-gradient(
      circle at top right,
      rgba(23, 92, 211, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(15, 36, 48, 0.03);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.app-header-shell,
.app-header-shell button,
.app-header-shell a {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.app-header-brand-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  flex: 1 1 auto;
}

.app-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0f2430;
  text-decoration: none;
  white-space: nowrap;
}

.app-header-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
}

.app-header-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.app-header-brand-text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.app-header-nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.app-header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #53636e;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.app-header-nav-link:hover {
  color: #113c54;
  background: rgba(17, 60, 84, 0.06);
  transform: translateY(-1px);
}

.app-header-nav-link--active {
  color: #206bc9;
  background: rgba(32, 107, 201, 0.1);
}

.app-header-nav-link--disabled {
  cursor: default;
  pointer-events: none;
  color: #98a2b3;
  background: rgba(255, 255, 255, 0.28);
  transform: none;
}

.app-header-nav-link--disabled.app-header-nav-link--active {
  color: #206bc9;
  background: rgba(32, 107, 201, 0.1);
}

.app-header-profile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.app-header-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(22, 49, 61, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  color: #1f3a4a;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.app-header-mobile-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 36, 48, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.app-header-mobile-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 107, 201, 0.16);
}

.app-header-profile-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.48);
}

.app-header-profile-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 107, 201, 0.18);
}

.app-header-avatar.ant-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #dcebff 0%, #bfd7ff 100%);
  color: #1d5bb8;
  overflow: hidden;
}

.app-header-avatar.ant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-header-nav-drawer .ant-drawer-content {
  background:
    radial-gradient(
      circle at top left,
      rgba(251, 198, 7, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(23, 92, 211, 0.08),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(248, 250, 252, 0.86) 0%,
      rgba(238, 244, 255, 0.82) 100%
    );
  backdrop-filter: blur(18px);
}

.app-header-nav-drawer .ant-drawer-body {
  padding: 24px 20px;
}

.app-header-nav-drawer .ant-drawer-mask {
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(4px);
}

.app-header-nav-drawer-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.app-header-nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-header-nav-drawer-title {
  font-size: 16px;
  font-weight: 700;
  color: #102a38;
}

.app-header-nav-drawer-close {
  border: 0;
  background: transparent;
  color: #53636e;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.app-header-nav-links--drawer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.app-header-nav-links--drawer .app-header-nav-link {
  justify-content: flex-start;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(216, 226, 240, 0.85);
}

.app-header-nav-links--drawer .app-header-nav-link--active {
  background: rgba(32, 107, 201, 0.1);
  box-shadow: inset 0 0 0 1px rgba(32, 107, 201, 0.12);
}

.app-header-nav-links--drawer .app-header-nav-link--disabled {
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 0 0 1px rgba(216, 226, 240, 0.65);
}

@media (max-width: 1180px) {
  .app-header-shell {
    padding: 16px 24px;
  }

  .app-header-brand-cluster {
    gap: 18px;
  }

  .app-header-brand-text {
    font-size: 18px;
  }

  .app-header-nav-link {
    padding: 9px 11px;
    font-size: 14px;
  }
}

@media (max-width: 920px) {
  .app-header-shell {
    gap: 14px;
    padding: 14px 18px;
  }

  .app-header-nav-links {
    display: none;
  }

  .app-header-nav-links--drawer {
    display: flex;
  }

  .app-header-mobile-toggle {
    display: inline-flex;
  }

  .app-header-brand-cluster {
    gap: 12px;
  }

  .app-header-brand-text {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .app-header-shell {
    padding: 12px 14px;
  }

  .app-header-brand {
    gap: 10px;
    min-width: 0;
  }

  .app-header-brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .app-header-brand-text {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
  }

  .app-header-actions {
    gap: 8px;
  }

  .app-header-mobile-toggle,
  .app-header-profile-trigger {
    width: 40px;
    height: 40px;
  }

  .app-header-avatar.ant-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./client/components/Website/CsvUpload/style.css ***!
  \*************************************************************************************************/
.csv-upload-page {
  width: 100%;
  box-sizing: border-box;
  min-height: calc(100vh - 64px);
  padding: 24px 16px 40px;
  background: transparent;
}

.csv-upload-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid #d8e2f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
}

.csv-upload-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  color: #101828;
}

.csv-upload-subtitle {
  margin: 8px 0 0;
  color: #475467;
  line-height: 1.5;
}

.csv-upload-form {
  margin-top: 28px;
}

.csv-section {
  padding: 24px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.csv-section-head {
  margin-bottom: 20px;
}

.csv-section-title {
  margin: 0;
  font-size: 22px;
  color: #0f172a;
}

.csv-section-description {
  margin: 8px 0 0;
  color: #475467;
  line-height: 1.6;
}

.csv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.csv-field {
  display: flex;
  flex-direction: column;
}

.csv-label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.csv-field-help {
  margin: 6px 0 10px;
  color: #667085;
  line-height: 1.5;
  font-size: 14px;
}

.csv-upload-input,
.csv-text-input,
.csv-select-input {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
}

.csv-upload-input {
  padding: 10px 12px;
}

.csv-select-input {
  padding-right: 42px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #667085 50%),
    linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.csv-file-selected {
  margin: 12px 0 0;
  color: #344054;
}

.csv-upload-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.csv-btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.csv-btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.csv-btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.csv-btn:disabled,
.csv-btn-disabled {
  background: #98a2b3;
  color: #ffffff;
  cursor: not-allowed;
}

.csv-loading {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--color-secondary-soft);
  color: var(--color-secondary-text);
}

.csv-loading strong {
  font-size: 15px;
}

.csv-loading span {
  font-size: 14px;
  color: var(--color-secondary-text);
}

.csv-error {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid #fecdca;
  border-radius: 8px;
  background: #fef3f2;
  color: #b42318;
}

.csv-result-section {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #ffffff;
}

.csv-mapping-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.csv-mapping-summary-item {
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8ec 0%, #fff3da 100%);
  padding: 18px;
  border: 1px solid #f1d7a1;
}

.csv-mapping-summary-clickable {
  cursor: pointer;
}

.csv-mapping-summary-value {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  color: #7a4b00;
}

.csv-mapping-form {
  margin-top: 24px;
}

.csv-mapping-group + .csv-mapping-group {
  margin-top: 24px;
}

.csv-mapping-group {
  padding: 18px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fcfdff;
}

.csv-mapping-group-body {
  max-height: 320px;
  overflow-y: auto;
}

.csv-mapping-group-title {
  margin: 0 0 14px;
  font-size: 18px;
  color: #0f172a;
  font-weight: bold;
}

.csv-mapping-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.csv-mapping-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.csv-mapping-panel {
  padding: 18px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fcfdff;
  min-height: 280px;
  max-height: 280px;
  display: flex;
  flex-direction: column;
}

.csv-mapping-panel-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.csv-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.csv-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f8ff;
  border: 1px solid #d9e6f5;
  color: #1849a9;
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}

.csv-matched-list {
  display: grid;
  gap: 10px;
}

.csv-matched-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #d9e6f5;
}

.csv-matched-label {
  color: #344054;
  font-weight: 400;
  font-size: 13px;
}

.csv-matched-value {
  color: #1849a9;
  text-align: right;
  word-break: break-word;
  font-size: 13px;
  font-weight: 400;
}

.csv-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.csv-meta-item {
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
  padding: 18px;
  color: #344054;
  word-break: break-word;
  border: 1px solid #d9e6f5;
}

.csv-meta-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: black;
}

.csv-meta-value {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  line-height: 1;
  color: #0f172a;
}

.csv-meta-description {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #667085;
}

.csv-files-head {
  margin-top: 24px;
}

.csv-file-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.csv-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fcfdff;
}

.csv-file-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.csv-file-title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
}

.csv-file-description {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.csv-file-name {
  color: #344054;
  font-size: 13px;
  word-break: break-word;
}

.csv-file-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.csv-file-link {
  color: #f4c542;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 2px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.csv-file-link:hover {
  text-decoration: underline;
}

.csv-result-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .csv-upload-card {
    padding: 24px;
  }

  .csv-form-grid {
    grid-template-columns: 1fr;
  }

  .csv-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .csv-mapping-summary,
  .csv-mapping-grid,
  .csv-mapping-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .csv-upload-page {
    min-height: auto;
    padding: 12px;
  }

  .csv-upload-card {
    padding: 18px;
  }

  .csv-upload-title {
    font-size: 28px;
  }

  .csv-section,
  .csv-result-section {
    padding: 18px;
  }

  .csv-meta-grid {
    grid-template-columns: 1fr;
  }

  .csv-file-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .csv-file-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .csv-result-actions {
    justify-content: stretch;
  }

  .csv-result-actions .csv-btn {
    width: 100%;
  }

  .csv-meta-value {
    font-size: 26px;
  }

  .csv-mapping-summary-item,
  .csv-mapping-group,
  .csv-mapping-panel {
    padding: 16px;
  }

  .csv-mapping-summary-value {
    font-size: 26px;
  }

  .csv-mapping-panel {
    min-height: 220px;
    max-height: 220px;
  }

  .csv-mapping-group-body {
    max-height: 240px;
  }

  .csv-matched-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .csv-matched-value {
    text-align: left;
  }
}

/*!************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./client/components/Login/auth.css ***!
  \************************************************************************************/
.auth-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(251, 198, 7, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(23, 92, 211, 0.16), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vh, 48px) 24px;
  box-sizing: border-box;
}

.auth-page-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 900px 500px at 50% -10%,
      rgba(233, 169, 39, 0.16),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(238, 244, 255, 0.16) 100%);
}

.auth-page-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.45;
}

.auth-page-glow-left {
  top: 90px;
  left: -140px;
  background: radial-gradient(circle, rgba(251, 198, 7, 0.22) 0%, transparent 68%);
}

.auth-page-glow-right {
  right: -120px;
  bottom: 140px;
  background: radial-gradient(circle, rgba(23, 92, 211, 0.16) 0%, transparent 68%);
}

.auth-ridgeline {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  opacity: 0.5;
  pointer-events: none;
}

.auth-layout {
  --auth-vertical-gap: clamp(20px, 3vh, 32px);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.auth-logo-mark {
  width: clamp(182px, 23vh, 248px);
  height: clamp(182px, 23vh, 248px);
  object-fit: contain;
  margin-bottom: 10px;
}

.auth-logo h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(36px, 5.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.auth-logo-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
}

.auth-logo-line {
  width: 40px;
  height: 1px;
  background: #f0b429;
}

.auth-logo-text {
  color: #f59e0b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
}

.auth-card {
  width: 100%;
  margin-top: var(--auth-vertical-gap);
  max-width: 600px;
  padding: clamp(30px, 4vh, 48px) clamp(28px, 3.8vw, 48px);
  border: 1px solid rgba(216, 226, 240, 0.9);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  box-shadow:
    0 1px 2px rgba(20, 20, 30, 0.04),
    0 20px 60px rgba(15, 23, 42, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.auth-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.auth-card-icon-amber {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.auth-card-icon-danger {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.auth-icon-amber {
  color: #f59e0b;
}

.auth-icon-danger {
  color: #ef4444;
}

.auth-icon-muted {
  color: #9ca3af;
}

.auth-icon-blue {
  color: #2563eb;
}

.auth-card-title {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 3.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
}

.auth-card-description {
  max-width: 430px;
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

.auth-card-description-wide {
  max-width: 470px;
}

.auth-card-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.auth-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(23, 92, 211, 0.08);
  color: #1849a9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin: clamp(18px, 2.5vh, 24px) 0;
}

.auth-card-divider-tight {
  margin: 22px 0;
}

.auth-google-native {
  display: flex;
  justify-content: center;
}

.auth-google-native > div {
  display: inline-flex;
  justify-content: center;
  transform: scale(1.08);
  transform-origin: center top;
}

.auth-security-note,
.auth-info-box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
  box-sizing: border-box;
}

.auth-security-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 92, 211, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.auth-info-box {
  padding: 18px 20px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  background: rgba(239, 244, 255, 0.9);
}

.auth-security-note p,
.auth-info-box p {
  margin: 0;
}

.auth-security-note span {
  color: #2563eb;
  font-weight: 500;
}

.auth-note-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.auth-action-row {
  width: 100%;
  display: flex;
  gap: 12px;
}

.auth-button {
  flex: 1;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.auth-button-secondary {
  border-color: #e5e7eb;
  color: #1f2937;
  background: #ffffff;
}

.auth-button-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.auth-button-primary {
  background: linear-gradient(135deg, #175cd3 0%, #0f4bb8 100%);
  color: #ffffff;
}

.auth-button-primary:hover {
  background: linear-gradient(135deg, #175cd3 0%, #0f4bb8 100%);
}

.auth-footer {
  width: 100%;
  margin-top: var(--auth-vertical-gap);
  padding-top: var(--auth-vertical-gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: flex-start;
}

.auth-footer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.auth-footer-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
}

.auth-footer p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
}

@media (max-width: 900px) {
  .auth-page {
    padding-inline: 20px;
  }

  .auth-layout {
    max-width: 560px;
  }

  .auth-card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .auth-page {
    padding: 20px 16px;
  }

  .auth-page-glow {
    width: 300px;
    height: 300px;
    opacity: 0.34;
  }

  .auth-ridgeline {
    height: 28%;
  }

  .auth-layout {
    max-width: 100%;
  }

  .auth-logo-mark {
    width: 148px;
    height: 148px;
  }

  .auth-card {
    max-width: 100%;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .auth-card-title {
    font-size: 24px;
  }

  .auth-card-description {
    max-width: 100%;
    font-size: 14px;
  }

  .auth-logo-subtitle {
    gap: 6px;
  }

  .auth-logo-line {
    width: 20px;
  }

  .auth-logo-text {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .auth-button {
    min-height: 52px;
  }

  .auth-security-note,
  .auth-info-box {
    font-size: 13px;
  }

  .auth-action-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .auth-page {
    padding: 14px 12px;
    align-items: stretch;
  }

  .auth-page-glow-left {
    top: 20px;
    left: -120px;
  }

  .auth-page-glow-right {
    right: -120px;
    bottom: 40px;
  }

  .auth-layout {
    --auth-vertical-gap: 16px;
  }

  .auth-logo-mark {
    width: 136px;
    height: 136px;
    margin-bottom: 8px;
  }

  .auth-logo h1 {
    font-size: 26px;
  }

  .auth-logo-subtitle {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .auth-logo-line {
    width: 14px;
  }

  .auth-logo-text {
    max-width: 100%;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .auth-card {
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .auth-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .auth-eyebrow {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .auth-card-title {
    font-size: 22px;
  }

  .auth-card-description {
    font-size: 13px;
    line-height: 1.55;
  }

  .auth-card-divider {
    margin: 16px 0;
  }

  .auth-button {
    min-height: 50px;
    font-size: 13px;
  }

  .auth-google-visual span,
  .auth-button span {
    white-space: normal;
    text-align: center;
  }

  .auth-security-note,
  .auth-info-box {
    gap: 8px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  .auth-footer {
    gap: 8px;
  }

  .auth-footer p {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .auth-page {
    padding-inline: 10px;
  }

  .auth-card {
    padding-inline: 14px;
  }

  .auth-logo-mark {
    width: 118px;
    height: 118px;
  }

  .auth-logo h1 {
    font-size: 22px;
  }

  .auth-logo-text {
    letter-spacing: 0.08em;
  }

  .auth-card-title {
    font-size: 20px;
  }

  .auth-eyebrow {
    font-size: 10px;
  }
}

@media (max-height: 860px) {
  .auth-page {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .auth-logo-mark {
    width: 148px;
    height: 148px;
  }

  .auth-card {
    padding: 28px 24px;
  }
}

@media (max-height: 760px) {
  .auth-layout {
    --auth-vertical-gap: 14px;
  }

  .auth-logo-mark {
    width: 118px;
    height: 118px;
    margin-bottom: 8px;
  }

  .auth-logo h1 {
    font-size: 26px;
  }

  .auth-logo-subtitle {
    margin-top: 4px;
  }

  .auth-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .auth-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .auth-card-title {
    font-size: 22px;
  }

  .auth-card-description {
    font-size: 14px;
    line-height: 1.55;
  }

  .auth-eyebrow {
    margin-bottom: 10px;
    padding: 5px 10px;
  }

  .auth-google-visual {
    min-height: 52px;
  }

  .auth-security-note,
  .auth-info-box {
    padding: 12px 14px;
  }
}

/*!****************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./client/features/executiveDashboard/loadingScreen/executiveDashboardLoadingScreen.css ***!
  \****************************************************************************************************************************************/
.executive-dashboard__content--skeleton {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.executive-dashboard__content--skeleton .executive-dashboard__kpi-card,
.executive-dashboard__content--skeleton .executive-dashboard__trend-card,
.executive-dashboard__content--skeleton .executive-dashboard__toolbar-pill,
.executive-dashboard__content--skeleton .executive-dashboard__toolbar-updated {
  position: relative;
  overflow: hidden;
  animation: executive-dashboard-skeleton-card-glow 2.1s ease-in-out infinite;
}

.executive-dashboard__content--skeleton .executive-dashboard__kpi-card::after,
.executive-dashboard__content--skeleton .executive-dashboard__trend-card::after,
.executive-dashboard__content--skeleton .executive-dashboard__toolbar-pill::after,
.executive-dashboard__content--skeleton .executive-dashboard__toolbar-updated::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 22%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(196, 220, 255, 0.16) 62%,
    transparent 100%
  );
  animation: executive-dashboard-skeleton-shimmer 1.9s ease-in-out infinite;
  pointer-events: none;
}

.executive-dashboard__hero--skeleton {
  margin-bottom: 0;
}

.executive-dashboard__skeleton-heading {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #102a38;
}

.executive-dashboard__skeleton-body {
  margin: 0;
  max-width: 720px;
  color: #5f6e79;
  font-size: 15px;
  line-height: 1.6;
}

.executive-dashboard__skeleton-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.executive-dashboard__skeleton-line,
.executive-dashboard__skeleton-icon,
.executive-dashboard__skeleton-section-icon {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(236, 242, 251, 0.88) 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 0 1px rgba(214, 226, 240, 0.32);
}

.executive-dashboard__skeleton-text {
  height: 14px;
  border-radius: 999px;
}

.executive-dashboard__skeleton-text--wide {
  width: min(560px, 88%);
}

.executive-dashboard__skeleton-text--medium {
  width: min(420px, 70%);
}

.executive-dashboard__skeleton-text--short {
  width: 110px;
}

.executive-dashboard__toolbar--skeleton {
  align-items: center;
}

.executive-dashboard__skeleton-pill {
  width: 170px;
  height: 42px;
  border-radius: 14px;
}

.executive-dashboard__skeleton-updated {
  width: 140px;
  height: 42px;
  border-radius: 14px;
}

.executive-dashboard__skeleton-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex-shrink: 0;
}

.executive-dashboard__skeleton-value {
  width: 128px;
  height: 30px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.executive-dashboard__skeleton-badge {
  width: 70px;
  height: 42px;
  border-radius: 12px;
}

.executive-dashboard__skeleton-progress {
  width: 100%;
  height: 7px;
  border-radius: 999px;
}

.executive-dashboard__skeleton-section-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.executive-dashboard__skeleton-section-title {
  width: 180px;
  height: 24px;
  border-radius: 12px;
}

.executive-dashboard__skeleton-chart {
  width: 100%;
  height: 190px;
  margin-top: 14px;
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(233, 240, 251, 0.92) 100%
    );
}

.executive-dashboard__skeleton-legend-item {
  width: 100px;
  height: 12px;
  border-radius: 999px;
}

@keyframes executive-dashboard-skeleton-card-glow {
  0%,
  100% {
    box-shadow:
      0 18px 36px rgba(28, 50, 66, 0.05),
      0 0 0 rgba(126, 175, 244, 0);
  }

  50% {
    box-shadow:
      0 22px 44px rgba(28, 50, 66, 0.08),
      0 0 24px rgba(126, 175, 244, 0.14);
  }
}

@keyframes executive-dashboard-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 640px) {
  .executive-dashboard__skeleton-heading {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .executive-dashboard__skeleton-body {
    font-size: 14px;
    line-height: 1.55;
  }

  .executive-dashboard__skeleton-text--wide,
  .executive-dashboard__skeleton-text--medium {
    width: 100%;
  }

  .executive-dashboard__skeleton-pill,
  .executive-dashboard__skeleton-updated {
    width: 100%;
  }

  .executive-dashboard__skeleton-chart {
    height: 168px;
  }
}

@media (max-width: 480px) {
  .executive-dashboard__skeleton-heading {
    font-size: 1.6rem;
  }

  .executive-dashboard__skeleton-value {
    width: 112px;
    height: 28px;
  }
}

/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./client/features/executiveDashboard/styles/executiveDashboard.css ***!
  \********************************************************************************************************************/
.executive-dashboard {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(215, 174, 81, 0.15),
      transparent 26%
    ),
    linear-gradient(180deg, #f8f5ef 0%, #f4f6fb 36%, #eef2f8 100%);
  color: #16313d;
}

.executive-dashboard,
.executive-dashboard button,
.executive-dashboard a {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.executive-dashboard__nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(22, 49, 61, 0.08);
  background:
    radial-gradient(
      circle at top left,
      rgba(215, 174, 81, 0.16),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(244, 246, 251, 0.92) 48%,
      rgba(238, 242, 248, 0.96) 100%
    );
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 36, 48, 0.06);
}

.executive-dashboard__brand-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.executive-dashboard__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.executive-dashboard__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  overflow: hidden;
}

.executive-dashboard__brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.executive-dashboard__brand-text {
  font-size: 20px;
  font-weight: 600;
  color: #0f2430;
  letter-spacing: 0.01em;
}

.executive-dashboard__nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.executive-dashboard__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #53636e;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.executive-dashboard__nav-link:hover {
  color: #113c54;
  background: rgba(17, 60, 84, 0.06);
  transform: translateY(-1px);
}

.executive-dashboard__nav-link--active {
  color: #206bc9;
  background: rgba(32, 107, 201, 0.1);
}

.executive-dashboard__profile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.executive-dashboard__profile-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.48);
}

.executive-dashboard__profile-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 107, 201, 0.18);
}

.executive-dashboard__profile-avatar.ant-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #dcebff 0%, #bfd7ff 100%);
  color: #1d5bb8;
  overflow: hidden;
}

.executive-dashboard__profile-avatar.ant-avatar img {
  object-fit: cover;
}

.executive-dashboard__content {
  width: min(1760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 42px;
}

.executive-dashboard__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.executive-dashboard__hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #102a38;
}

.executive-dashboard__hero p {
  margin: 12px 0 0;
  max-width: 720px;
  color: #5f6e79;
  font-size: 15px;
}

.executive-dashboard__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}

.executive-dashboard__toolbar-pill,
.executive-dashboard__toolbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(22, 49, 61, 0.1);
  border-radius: 12px;
  background: #fff;
  color: #314651;
  font-size: 14px;
  box-shadow: none;
}

.executive-dashboard__toolbar-status {
  color: #0f6e56;
}

.executive-dashboard__toolbar-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.executive-dashboard__toolbar-segment {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border-radius: 12px;
  background: #f1f5f9;
}

.executive-dashboard__toolbar-segment-button {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  background: transparent;
  color: #50616d;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.executive-dashboard__toolbar-segment-button--active {
  background: #206bc9;
  color: #fff;
  box-shadow: none;
  font-weight: 600;
}

.executive-dashboard__toolbar-updated {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 2px;
  color: #0f6e56;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}

.executive-dashboard__toolbar-updated strong {
  font-size: 13px;
  font-weight: 600;
}

.executive-dashboard__kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.executive-dashboard__kpi-card,
.executive-dashboard__panel,
.executive-dashboard__chart-card {
  border: 1px solid rgba(26, 48, 63, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(28, 50, 66, 0.08);
}

.executive-dashboard__kpi-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

.executive-dashboard__kpi-card-head,
.executive-dashboard__kpi-main-row,
.executive-dashboard__kpi-change-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.executive-dashboard__kpi-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.executive-dashboard__kpi-title-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42px;
  min-width: 0;
  flex: 1 1 auto;
}

.executive-dashboard__kpi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
}

.executive-dashboard__kpi-title {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #122b38;
  overflow-wrap: anywhere;
}

.executive-dashboard__kpi-subtitle {
  display: block;
  margin-top: 4px;
  color: #70808c;
  font-size: 12px;
}

.executive-dashboard__kpi-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
}

.executive-dashboard__kpi-badge strong {
  font-size: 13px;
  font-weight: 700;
}

.executive-dashboard__kpi-badge--good {
  background: #e1f5ee;
  color: #085041;
}

.executive-dashboard__kpi-badge--warn {
  background: #faeeda;
  color: #854f0b;
}

.executive-dashboard__kpi-badge--bad {
  background: #fcebeb;
  color: #791f1f;
}

.executive-dashboard__kpi-value {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #102737;
}

.executive-dashboard__kpi-value-block {
  min-width: 0;
  flex: 1 1 auto;
}

.executive-dashboard__kpi-goal {
  margin-top: 8px;
  color: #73828d;
  font-size: 12px;
}

.executive-dashboard__sparkline {
  width: 116px;
  height: 44px;
  flex-shrink: 0;
}

.executive-dashboard__kpi-change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
}

.executive-dashboard__kpi-change--up {
  color: #0f6e56;
}

.executive-dashboard__kpi-change--down,
.executive-dashboard__kpi-change--up-bad {
  color: #e24b4a;
}

.executive-dashboard__kpi-progress-track {
  position: relative;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: #dfdfdf;
  cursor: pointer;
}

.executive-dashboard__kpi-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.executive-dashboard__kpi-progress-track::after {
  content: attr(data-progress);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  padding: 4px 8px;
  border-radius: 8px;
  background: #102737;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.executive-dashboard__kpi-progress-track:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.executive-dashboard__summary-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.75fr 1.08fr;
  gap: 18px;
  margin-bottom: 22px;
}

.executive-dashboard__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.executive-dashboard__panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.executive-dashboard__panel-header h2 {
  margin: 0;
  color: #132d39;
  font-size: 16px;
}

.executive-dashboard__panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.executive-dashboard__panel-icon--teal {
  color: #0f6e56;
  background: rgba(15, 110, 86, 0.12);
}

.executive-dashboard__panel-icon--blue {
  color: #378add;
  background: rgba(55, 138, 221, 0.12);
}

.executive-dashboard__panel-icon--amber {
  color: #c67a11;
  background: rgba(239, 159, 39, 0.16);
}

.executive-dashboard__health-list,
.executive-dashboard__insight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.executive-dashboard__health-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0;
}

.executive-dashboard__health-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #50616d;
  font-size: 14px;
}

.executive-dashboard__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.executive-dashboard__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.executive-dashboard__status-badge--good {
  background: #e1f5ee;
  color: #085041;
}

.executive-dashboard__status-badge--warn {
  background: #faeeda;
  color: #854f0b;
}

.executive-dashboard__status-badge--bad {
  background: #fcebeb;
  color: #791f1f;
}

.executive-dashboard__financial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.executive-dashboard__financial-card {
  padding: 14px;
  border: 1px solid rgba(20, 47, 62, 0.06);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(246, 249, 252, 0.96) 100%
  );
}

.executive-dashboard__financial-label,
.executive-dashboard__financial-footnote {
  display: block;
}

.executive-dashboard__financial-label {
  color: #73828d;
  font-size: 12px;
}

.executive-dashboard__financial-value {
  display: block;
  margin-top: 6px;
  color: #122d39;
  font-size: 21px;
}

.executive-dashboard__financial-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}

.executive-dashboard__financial-change--good {
  color: #0f6e56;
}

.executive-dashboard__financial-change--bad {
  color: #a32d2d;
}

.executive-dashboard__financial-footnote {
  margin-top: 2px;
  color: #99a6ae;
  font-size: 10px;
}

.executive-dashboard__mini-area {
  width: 100%;
  height: 58px;
  margin-top: 8px;
}

.executive-dashboard__insight-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
}

.executive-dashboard__insight-icon {
  margin-top: 2px;
}

.executive-dashboard__insight-icon--good {
  color: #1d9e75;
}

.executive-dashboard__insight-icon--warn {
  color: #ef9f27;
}

.executive-dashboard__insight-title {
  display: block;
  color: #1f323f;
  font-size: 12px;
  line-height: 1.4;
}

.executive-dashboard__insight-body {
  margin: 4px 0 0;
  color: #73828d;
  font-size: 11px;
  line-height: 1.45;
}

.executive-dashboard__insight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #206bc9;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.executive-dashboard__trends-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #206bc9;
}

.executive-dashboard__trends-header strong {
  color: #132d39;
  font-size: 22px;
  font-weight: 600;
}

.executive-dashboard__trends-header span {
  color: #8694a1;
  font-size: 14px;
}

.executive-dashboard__trends-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.executive-dashboard__trend-card {
  min-height: 320px;
  border: 1px solid rgba(20, 47, 62, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  padding: 16px;
  box-shadow: 0 18px 36px rgba(28, 50, 66, 0.06);
  overflow: hidden;
}

.executive-dashboard__trend-card-title {
  margin: 0 0 10px;
  color: #152f3b;
  font-size: 14px;
  font-weight: 600;
}

.executive-dashboard__trend-card-subtitle {
  margin: -2px 0 10px;
  color: #73828d;
  font-size: 12px;
  line-height: 1.4;
}

.executive-dashboard__trend-chart-frame {
  width: 100%;
  height: 230px;
}

.executive-dashboard__trend-chart-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.executive-dashboard__trend-chart-canvas {
  flex: 1;
  min-height: 0;
  height: 190px;
}

.executive-dashboard__trend-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: #73828d;
  font-size: 11px;
}

.executive-dashboard__trend-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.executive-dashboard__trend-legend--center {
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

.executive-dashboard__trend-legend-swatch {
  width: 14px;
  height: 0;
  border-top: 2px solid currentColor;
}

.executive-dashboard__trend-legend-swatch--actual {
  color: #0f6e56;
}

.executive-dashboard__trend-legend-swatch--mrr {
  color: #206bc9;
}

.executive-dashboard__trend-legend-swatch--goal {
  color: #5f6770;
  border-top-style: dashed;
}

.executive-dashboard__trend-legend-box {
  width: 12px;
  height: 12px;
  border-radius: 3px 3px 0 0;
  background: currentColor;
}

.executive-dashboard__trend-legend-box--customers {
  color: #d85a30;
}

.executive-dashboard__trend-legend-box--hires {
  color: #ef9f27;
}

.executive-dashboard__trend-goal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.executive-dashboard__trend-goal-pill--achieved {
  background: #e1f5ee;
  color: #085041;
}

.executive-dashboard__trend-goal-pill--under {
  background: #faeeda;
  color: #854f0b;
}

.executive-dashboard__chart-tooltip {
  min-width: 120px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 47, 62, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(28, 50, 66, 0.14);
  color: #152f3b;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.executive-dashboard__chart-tooltip-label {
  margin-bottom: 8px;
  color: #6d7a84;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.executive-dashboard__chart-tooltip-row {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
}

.executive-dashboard__chart-tooltip-row
  + .executive-dashboard__chart-tooltip-row {
  margin-top: 6px;
}

.executive-dashboard__chart-tooltip-name {
  color: #42515c;
}

.executive-dashboard__chart-tooltip-value {
  color: #132d39;
  font-weight: 700;
}

.executive-dashboard__chart-tooltip-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

@media (max-width: 1400px) {
  .executive-dashboard__content {
    width: calc(100% - 36px);
  }

  .executive-dashboard__hero {
    align-items: stretch;
  }

  .executive-dashboard__toolbar {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .executive-dashboard__summary-grid {
    grid-template-columns: 1fr;
  }

  .executive-dashboard__financial-grid,
  .executive-dashboard__trends-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .executive-dashboard__kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .executive-dashboard__content {
    width: calc(100% - 28px);
    padding-top: 24px;
  }

  .executive-dashboard__hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
  }

  .executive-dashboard__kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .executive-dashboard__kpi-card {
    padding: 18px;
  }

  .executive-dashboard__trend-card {
    min-height: 300px;
    padding: 15px;
  }

  .executive-dashboard__trend-chart-frame {
    height: 220px;
  }

  .executive-dashboard__trend-chart-canvas {
    height: 180px;
  }
}

@media (max-width: 980px) {
  .executive-dashboard__nav,
  .executive-dashboard__content {
    width: calc(100% - 28px);
    padding-left: 0;
    padding-right: 0;
  }

  .executive-dashboard__nav {
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 0 0 18px 18px;
  }

  .executive-dashboard__brand-cluster,
  .executive-dashboard__hero {
    flex-direction: column;
    align-items: stretch;
  }

  .executive-dashboard__toolbar {
    justify-content: flex-start;
    width: 100%;
  }

  .executive-dashboard__financial-grid,
  .executive-dashboard__trends-grid {
    grid-template-columns: 1fr;
  }

  .executive-dashboard__trend-card {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .executive-dashboard__kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .executive-dashboard__content {
    width: calc(100% - 20px);
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .executive-dashboard__hero {
    gap: 18px;
    margin-bottom: 20px;
  }

  .executive-dashboard__hero h1 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .executive-dashboard__hero p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .executive-dashboard__nav {
    gap: 16px;
    padding-inline: 18px;
  }

  .executive-dashboard__nav-links {
    gap: 8px;
  }

  .executive-dashboard__nav-link {
    width: 100%;
    justify-content: center;
  }

  .executive-dashboard__toolbar-pill,
  .executive-dashboard__toolbar-status,
  .executive-dashboard__toolbar-segment {
    width: 100%;
    justify-content: center;
  }

  .executive-dashboard__toolbar-updated {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(22, 49, 61, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    text-align: left;
  }

  .executive-dashboard__kpi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .executive-dashboard__kpi-card {
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .executive-dashboard__kpi-card-head,
  .executive-dashboard__kpi-main-row,
  .executive-dashboard__kpi-change-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .executive-dashboard__kpi-card-title-row {
    align-items: center;
    text-align: center;
  }

  .executive-dashboard__kpi-title-block {
    align-items: center;
    min-height: auto;
  }

  .executive-dashboard__kpi-subtitle {
    text-align: center;
  }

  .executive-dashboard__kpi-main-row {
    text-align: center;
  }

  .executive-dashboard__kpi-value-block {
    width: 100%;
  }

  .executive-dashboard__kpi-value {
    font-size: 26px;
  }

  .executive-dashboard__kpi-goal {
    margin-top: 10px;
  }

  .executive-dashboard__kpi-badge {
    align-self: center;
  }

  .executive-dashboard__kpi-change-row {
    text-align: center;
  }

  .executive-dashboard__kpi-change {
    justify-content: center;
  }

  .executive-dashboard__trends-header {
    gap: 6px;
    margin-bottom: 10px;
  }

  .executive-dashboard__trends-header strong {
    font-size: 19px;
  }

  .executive-dashboard__trend-card {
    padding: 14px;
    border-radius: 18px;
  }

  .executive-dashboard__trend-card-title {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.35;
  }

  .executive-dashboard__trend-card-subtitle {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .executive-dashboard__trend-chart-frame {
    height: 210px;
  }

  .executive-dashboard__trend-chart-canvas {
    height: 168px;
  }

  .executive-dashboard__trend-legend {
    gap: 10px;
    margin-top: 10px;
    font-size: 10px;
  }

  .executive-dashboard__chart-tooltip {
    min-width: 108px;
    padding: 8px 10px;
  }

}

@media (max-width: 480px) {
  .executive-dashboard__content {
    width: calc(100% - 16px);
  }

  .executive-dashboard__hero h1 {
    font-size: 1.6rem;
  }

  .executive-dashboard__toolbar {
    gap: 10px;
  }

  .executive-dashboard__toolbar-pill {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .executive-dashboard__kpi-card-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .executive-dashboard__kpi-icon {
    width: 40px;
    height: 40px;
  }

  .executive-dashboard__kpi-title {
    font-size: 14px;
  }

  .executive-dashboard__kpi-subtitle,
  .executive-dashboard__kpi-goal,
  .executive-dashboard__kpi-change {
    font-size: 11px;
  }

  .executive-dashboard__trend-card {
    padding: 12px;
  }

  .executive-dashboard__trend-chart-frame {
    height: 196px;
  }

  .executive-dashboard__trend-chart-canvas {
    height: 154px;
  }
}

/*!************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/antd/dist/reset.css ***!
  \************************************************************************************/
/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}

/*!***********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./client/css/site.css ***!
  \***********************************************************************/
:root {
  --color-primary: rgb(251, 198, 7);
  --color-primary-shadow: rgba(251, 198, 7, 0.28);
  --color-secondary: #175cd3;
  --color-secondary-dark: #0f4bb8;
  --color-secondary-soft: #eef4ff;
  --color-secondary-text: #1849a9;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure the body stretches to at least the height of the viewport */
  font-family: sans-serif;
  overflow-x: hidden;
}

.app-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(251, 198, 7, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(23, 92, 211, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.app-shell-content {
  width: 100%;
}

.dashboard {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px 20px;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}

.dashboard-panel {
  width: 100%;
  max-width: 700px;
  padding: 32px;
  border: 1px solid #d8e2f0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  text-align: center;
  box-sizing: border-box;
}

.dashboard-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-secondary-soft);
  color: var(--color-secondary-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-panel h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
  text-wrap: balance;
}

.dashboard-panel p {
  max-width: 540px;
  margin: 14px auto 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.6;
  text-wrap: balance;
}

.dashboard-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dashboard-link:hover {
  transform: translateY(-1px);
}

.dashboard-link-admin {
  background: var(--color-primary);
  color: #ffffff;
}

.dashboard-link-executive {
  background: linear-gradient(135deg, #101828 0%, #344054 100%);
  color: #ffffff;
}

.dashboard-link-cleaner {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-secondary-dark) 100%
  );
  color: #ffffff;
}

@media (max-width: 640px) {
  .dashboard {
    min-height: calc(100vh - 64px);
    padding: 6px 12px 16px;
  }

  .dashboard-panel {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .dashboard-panel h1 {
    font-size: 30px;
  }

  .dashboard-link {
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
  }
}
/* 
.yellowstonelocal {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  padding: 40px;
  font-family: sans-serif;
  box-sizing: border-box;
}

.logoBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 120px;
}

.logoBox img {
  height: auto;
  display: block;
}

.contentWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.contentWrapper p {
  text-align: center;
}

.googleLoginButton {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

footer {
  width: 100%;
  text-align: center;
}

.dashboard {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dashboard .admin-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #fbc607;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
} */

/* .header-profile {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
} */

