/*!******************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \******************************************************************************************************************************************************************************************************************************/
:root {
  --e-global-color-2951776: #00aeef;
  --e-global-color-833e159: #1d75bf;
  --e-global-color-3a8ab63: #1c2733;
  --brand-gradient: linear-gradient(250deg, var(--e-global-color-2951776) 0%, var(--e-global-color-833e159) 100%);
  --blue-900: #082f5f;
  --blue-800: #154f87;
  --blue-700: var(--e-global-color-833e159);
  --blue-100: #e9f7fd;
  --cyan-600: var(--e-global-color-2951776);
  --ink: var(--e-global-color-3a8ab63);
  --muted: #3f4b59;
  --line: #e8edf2;
  --surface: #ffffff;
  --page: #f7fafc;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
}

button, input, select, textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, .12), transparent 34%),
    var(--page);
}

.site-footer {
  padding: 18px clamp(18px, 5vw, 72px) 28px;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}

.auth-page .site-footer {
  padding: 6px 0 0;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(8, 47, 95, .34);
  backdrop-filter: blur(2px);
}

.loading-card {
  min-width: 190px;
  min-height: 84px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 8px;
  background: white;
  color: var(--blue-800);
  font-weight: 900;
  box-shadow: 0 24px 70px rgba(8, 47, 95, .28);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 4px solid #cdeffc;
  border-top-color: var(--cyan-600);
  animation: loading-spin .8s linear infinite;
}

@keyframes loading-spin {
  to { transform: rotate(360deg); }
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  background: white;
  color: var(--ink);
  min-height: 84px;
  padding: 0 clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(8, 47, 95, .08);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.brand-logo {
  display: block;
  width: min(198px, 56vw);
  height: auto;
}

.nav-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  place-items: center;
  gap: 4px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #062a52;
}

.nav-item {
  color: #062a52;
  text-decoration: none;
  padding: 31px 0 29px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.nav-item.active, .nav-item:hover {
  color: var(--cyan-600);
  border-bottom-color: var(--cyan-600);
}

.nav-menu {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  min-width: 190px;
  display: none;
  z-index: 9;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu {
  display: grid;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #062a52;
  text-decoration: none;
  font-weight: 700;
}

.nav-submenu a:hover {
  background: #eef9fe;
  color: var(--cyan-600);
}

.main {
  min-width: 0;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.avatar-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(29, 117, 191, .2);
}

.avatar-button:hover {
  filter: brightness(1.03);
}

.notification-button {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff1f0;
  color: #b42318;
  border: 1px solid #ffb8b0;
}

.notification-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  background: #d92d20;
  color: white;
  border: 2px solid white;
  font-size: .68rem;
  font-weight: 900;
}

.notification-menu {
  position: absolute;
  right: 52px;
  top: calc(100% + 12px);
  width: min(340px, calc(100vw - 36px));
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
  padding: 10px;
  z-index: 6;
}

.notification-title {
  padding: 8px 10px;
  color: var(--ink);
  font-weight: 900;
}

.notification-item {
  width: 100%;
  display: grid;
  gap: 4px;
  text-align: left;
  background: white;
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
}

.notification-item:hover {
  background: #eef9fe;
}

.notification-item span,
.notification-empty {
  color: var(--muted);
  font-size: .88rem;
}

.notification-empty {
  padding: 10px;
}

.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 250px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
  padding: 10px;
  z-index: 5;
}

.account-email {
  color: var(--muted);
  font-size: .9rem;
  padding: 8px 10px 12px;
  overflow-wrap: anywhere;
}

.account-menu-item {
  width: 100%;
  text-align: left;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 10px;
  font-weight: 700;
}

.account-menu-item:hover {
  background: #eef9fe;
  color: var(--cyan-600);
}

.account-menu-item.primary {
  background: var(--brand-gradient);
  color: white;
  text-align: center;
}

.account-menu-item.signout {
  color: #9f1f17;
}

.account-menu-item.signout:hover {
  background: #fff1f0;
  color: #9f1f17;
}

.account-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.account-settings {
  display: grid;
  gap: 10px;
  padding: 8px 0 10px;
}

.account-settings label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.account-settings input {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
}

.account-settings.wide {
  gap: 14px;
}

.account-message {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.35;
}

.required-account-card {
  margin-bottom: 22px;
  border-color: #bcecff;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.birthday-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #bcecff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 174, 239, .16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef9fe 58%, #f7fcff 100%);
  box-shadow: 0 18px 44px rgba(8, 47, 95, .1);
}

.birthday-banner h1 {
  margin: 4px 0 8px;
  color: #062a52;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.birthday-banner p {
  margin: 0;
  max-width: 780px;
  color: #334456;
  line-height: 1.65;
}

.birthday-kicker {
  color: var(--cyan-600) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
}

.birthday-cake {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  animation: birthday-bounce 1.8s ease-in-out infinite;
}

.cake-base,
.cake-top,
.candle,
.flame {
  position: absolute;
  display: block;
}

.cake-base {
  bottom: 14px;
  width: 78px;
  height: 38px;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(250deg, var(--cyan-600) 0%, var(--blue-700) 100%);
  box-shadow: inset 0 -8px 0 rgba(6, 42, 82, .14);
}

.cake-top {
  bottom: 48px;
  width: 68px;
  height: 22px;
  border-radius: 12px;
  background: #ffffff;
  border: 3px solid #bcecff;
}

.candle {
  bottom: 70px;
  width: 10px;
  height: 24px;
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, #ffffff 0 5px, #00aeef 5px 10px);
}

.flame {
  bottom: 93px;
  width: 16px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: #ffb703;
  transform: rotate(-35deg);
  animation: candle-flicker .8s ease-in-out infinite alternate;
}

@keyframes birthday-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes candle-flicker {
  from { transform: rotate(-35deg) scale(1); opacity: .9; }
  to { transform: rotate(-28deg) scale(1.12); opacity: 1; }
}

.content {
  padding: 36px clamp(18px, 5vw, 72px) 56px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.hero-band {
  background: var(--brand-gradient);
  color: white;
  padding: 34px;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  box-shadow: 0 20px 48px rgba(29, 117, 191, .2);
}

.hero-band h1, .page-title h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: inherit;
}

.hero-band p, .page-title p {
  margin: 0;
  color: rgba(255,255,255,.92);
  max-width: 780px;
  line-height: 1.7;
}

.page-title p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(8, 47, 95, .06);
}

.login-card {
  width: min(100%, 480px);
}

.card h2, .card h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
}

.stat {
  display: grid;
  gap: 8px;
}

.stat strong {
  font-size: 2rem;
  color: var(--cyan-600);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: var(--ink);
}

.field-hint {
  color: var(--muted);
  font-size: .84rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan-600);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, .14);
  outline: none;
}

input.control-error, select.control-error, textarea.control-error {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, .12);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.action-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef9fe;
  color: var(--blue-800);
  border: 1px solid #caecfa;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
}

.icon-button:hover {
  background: var(--brand-gradient);
  color: white;
  border-color: transparent;
}

.icon-button.danger {
  background: #fff1f0;
  color: #b42318;
  border-color: #ffb8b0;
}

.icon-button.danger:hover {
  background: #b42318;
  color: white;
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.download-arrow {
  position: relative;
  display: block;
  width: 16px;
  height: 18px;
}

.download-arrow::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: currentColor;
}

.download-arrow::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.check-row input {
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(29, 117, 191, .18);
}

.btn.secondary {
  background: #eef9fe;
  color: var(--blue-800);
  box-shadow: none;
  border: 1px solid #caecfa;
}

.btn.accent {
  background: var(--brand-gradient);
}

.btn.danger {
  background: #b42318;
  box-shadow: 0 10px 22px rgba(180, 35, 24, .14);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  box-shadow: none;
}

.provider-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .86rem;
}

.provider-divider::before,
.provider-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.provider-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.provider-icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(8, 47, 95, .08);
}

.provider-icon-button:hover {
  border-color: #bcecff;
  box-shadow: 0 10px 24px rgba(8, 47, 95, .12);
  transform: translateY(-1px);
}

.gmail-mark {
  width: 25px;
  height: 25px;
}

.microsoft-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
}

.microsoft-mark i {
  display: block;
  width: 10px;
  height: 10px;
}

.microsoft-mark i:nth-child(1) { background: #f25022; }
.microsoft-mark i:nth-child(2) { background: #7fba00; }
.microsoft-mark i:nth-child(3) { background: #00a4ef; }
.microsoft-mark i:nth-child(4) { background: #ffb900; }

.linkedin-mark {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #0a66c2;
  color: white;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  overflow-x: auto;
}

.tab {
  background: transparent;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tab.active {
  color: var(--cyan-600);
  border-color: var(--cyan-600);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

.table-toolbar,
.pagination-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.table-toolbar {
  color: var(--muted);
  font-weight: 700;
}

.column-menu {
  position: relative;
}

.column-menu summary {
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-800);
  font-weight: 800;
  list-style: none;
}

.column-menu summary::-webkit-details-marker {
  display: none;
}

.column-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 10;
  display: grid;
  gap: 8px;
  width: 220px;
  max-height: 300px;
  overflow: auto;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 47, 95, .16);
}

.column-menu-panel label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.table-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.table-toolbar select {
  width: auto;
  min-width: 82px;
  padding: 7px 10px;
}

.pagination-row {
  color: var(--muted);
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover,
.selected-row {
  background: #eef9fe;
}

th {
  color: var(--blue-800);
  font-size: .86rem;
}

.pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: #e6f8fe;
  color: var(--e-global-color-833e159);
  font-weight: 800;
  font-size: .8rem;
}

.pill.status-disabled {
  background: #fff1f0;
  color: #b42318;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(6, 42, 82, .28);
}

.slide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  width: min(760px, calc(100vw - 22px));
  height: 100vh;
  overflow: auto;
  padding: 24px;
  background: white;
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 44px rgba(8, 47, 95, .18);
  animation: drawer-in .18s ease-out;
}

.slide-drawer.compact {
  width: min(520px, calc(100vw - 22px));
}

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

@keyframes drawer-in {
  from { transform: translateX(24px); opacity: .7; }
  to { transform: translateX(0); opacity: 1; }
}

.notice {
  padding: 12px 14px;
  border-radius: 8px;
  background: #eaf8fe;
  color: #08486d;
  border: 1px solid #bcecff;
}

.error-notice {
  background: #fff1f0;
  color: #9f1f17;
  border-color: #ffb8b0;
}

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 0;
    padding: 14px 18px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }
  .brand-logo {
    width: min(168px, 42vw);
  }
  .menu-toggle {
    display: grid;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
  }
  .nav-stack {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    gap: 0;
    justify-content: stretch;
    align-items: stretch;
    padding: 8px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(8, 47, 95, .14);
  }
  .nav-stack.open {
    display: grid;
  }
  .nav-item {
    padding: 12px;
    border-bottom: 0;
    border-radius: 8px;
  }
  .nav-item.active,
  .nav-item:hover {
    background: #eef9fe;
  }
  .nav-submenu {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 0;
    min-width: 0;
  }
  .nav-submenu a {
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
  }
  .nav-submenu a:hover {
    background: #eef9fe;
  }
  .header-actions {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }
  .notification-menu,
  .account-menu {
    right: 0;
    top: calc(100% + 10px);
  }
  .content {
    padding: 18px;
  }
  .birthday-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .grid.two, .grid.three, .form-grid {
    grid-template-columns: 1fr;
  }
}

