:root {
  --primary: #0b1654;
  --track: #d9d9d9;
  --num-color: #7a7a7a;
}

.mdc-data-table__content .mdc-data-table__cell {
  color: #0a1358;
}

.stepper {
  --gap: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  gap: var(--gap);
  margin: 0 auto 24px;
}

.stepper__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
}

.stepper__item::before,
.stepper__item::after {
  content: "";
  position: absolute;
  top: 28px;
  height: 4px;
  background: var(--track);
  z-index: 0;
}

.stepper__item::before {
  left: calc(-1 * var(--gap) / 2);
  right: calc(50% + 28px);
}

.stepper__item::after {
  left: calc(50% + 28px);
  right: calc(-1 * var(--gap) / 2);
}

.stepper__item:first-child::before { display: none; }
.stepper__item:last-child::after { display: none; }

.stepper__dot {
  grid-column: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--track);
  background: #fff;
  z-index: 1;
}

.stepper__num {
  font-weight: 700;
  font-size: 22px;
  color: var(--num-color);
}

.is-current .stepper__dot {
  background: var(--primary);
  border-color: var(--primary);
}

.is-current .stepper__num {
  color: #fff;
}

.is-complete .stepper__dot {
  background: var(--primary);
  border-color: var(--primary);
}

.is-complete .stepper__num {
  color: #fff;
}


.is-complete::before {
  background: var(--primary);
}

.is-current::before {
  background: var(--primary);
}

.is-current::after {
  background: var(--track); 
}

.stepper__link {
  text-decoration: none;
  color: inherit;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}

.stepper__link:hover,
.stepper__link:focus,
.stepper__link:active,
.stepper__link:visited,
.stepper__dot a,
.stepper__dot a:hover,
.stepper__dot a:focus,
.stepper__dot a:active,
.stepper__dot a:visited {
  text-decoration: none !important;
  color: inherit !important;
  outline: none;
  box-shadow: none;
}

.stepper__link--disabled,
.stepper__link--disabled:hover {
  cursor: default;
}

.stepper__item.is-current:first-child::after {
  background: var(--primary);
}

.stepper__item.is-current:not(:last-child)::after {
  background: var(--primary);
}
.is-complete::after {
  background: var(--primary);
}

:root { --primary:#0b1654; }

.app-title{
  margin: 16px auto 12px;
  color: var(--primary);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  text-align: center;
}

.app-title .app-subtitle{
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  opacity: .85;
}


.mdc-data-table__table-container {
  box-shadow:
    inset 0.5px 0 0 #deeaff,  
    inset -0.5px 0 0 #deeaff !important; 
}

#aha-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: none;
  align-items: center;       
  justify-content: center;  
  flex-direction: column;
  z-index: 9999;
}
#aha-overlay.is-open { display: flex; }

#aha-overlay .mdc-circular-progress {
  width: 64px;
  height: 64px;
  --mdc-circular-progress-size: 64px;
}

#aha-overlay .mdc-circular-progress
  .mdc-circular-progress__indeterminate-circle-graphic,
#aha-overlay .mdc-circular-progress
  .mdc-circular-progress__determinate-circle-graphic {
  stroke: var(--primary) !important;
}

#aha-overlay .mdc-circular-progress__spinner-layer,
#aha-overlay .mdc-circular-progress__circle,
#aha-overlay .mdc-circular-progress__gap-patch {
  color: var(--primary) !important;
}

.aha-fallback-spinner {
  width: 56px;
  height: 56px;
  border: 6px solid color-mix(in srgb, var(--primary) 20%, white 80%);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: aha-spin 0.9s linear infinite;
}
@keyframes aha-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .aha-fallback-spinner { animation: none; } }


.app-pill {
  display: flex;
  align-items: center;
  gap: 14px;

  background: #1b243b;       
  padding: 12px 20px;
  border-radius: 40px;

  width: fit-content;
  margin: 0 0 20px 0;         
}

.app-pill-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.pill-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.pill-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-top: 3px;
}

.app-pill-icon-wrapper {
  width: 50px;            
  height: 50px;
  border-radius: 50%;
  background: transparent;    
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-logo-link {
  position: absolute;
  top: -80px;
  left: 0;
  width: 250px;
  height: 250px;
  display: block;
  z-index: 2;
}

.app-pill-icon {
  display: block;
  width: 250px;
  height: 250px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.app-container {
  background: #f5f7f9;        
  border-radius: 24px;
  padding: 40px 50px;
  width: 90%;
  max-width: 1200px;
  margin-top: 110px; /* ----------------------- */
  margin-left: auto;
  margin-right: auto;        
}

.top-left {
  position: absolute;
  top: 50%;        
  left: -10px;    
  transform: translateY(-50%);
  z-index: 5;
}

.top-left .material-icons {
  font-size: 24px;
  line-height: 1
}
.stepper-wrap {
  position: relative; 
  width: 100%; 
  margin: 0 auto;
}

.mdc-data-table__table-container {
  background: #fff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.04) !important;
  padding: 0;
}
