/* ED page components */
.ed-dashboard {
  position: relative;
  border-radius: 32px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(47, 91, 234, 0.18), rgba(47, 91, 234, 0)),
    linear-gradient(160deg, rgba(26, 34, 52, 0.16), rgba(248, 249, 251, 0.9));
  border: 1px solid rgba(47, 91, 234, 0.14);
  box-shadow: 0 40px 80px -48px rgba(16, 22, 38, 0.48);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 26px);
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
}

.ed-dashboard::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% 10%;
  height: clamp(220px, 32vw, 320px);
  background: radial-gradient(circle at center, rgba(47, 91, 234, 0.28), rgba(47, 91, 234, 0));
  opacity: 0.65;
  pointer-events: none;
  filter: blur(0);
}

body[data-theme="dark"] .ed-dashboard {
  background:
    linear-gradient(135deg, rgba(109, 141, 255, 0.2), rgba(16, 22, 38, 0.6)),
    linear-gradient(155deg, rgba(12, 16, 26, 0.92), rgba(12, 16, 26, 0.86));
  border-color: rgba(109, 141, 255, 0.2);
  box-shadow: 0 48px 90px -46px rgba(4, 6, 14, 0.9);
}

body[data-theme="dark"] .ed-dashboard__section {
  background: linear-gradient(150deg, rgba(16, 22, 38, 0.95), rgba(16, 22, 38, 0.8));
  border-color: rgba(109, 141, 255, 0.24);
  box-shadow: 0 34px 72px -36px rgba(4, 6, 14, 0.9);
}

.ed-dashboard__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 0;
}

.ed-dashboard__header-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

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

.ed-dashboard__title-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(32px, 3vw, 40px);
  height: clamp(32px, 3vw, 40px);
  object-fit: contain;
}

.ed-dashboard__title {
  margin: 0;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text);
}

.ed-dashboard__title-mobile {
  display: none;
}

.ed-dashboard__status {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--state-accent-bg-12);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.035em;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.3;
  border: 1px solid rgba(37, 99, 235, 0.16);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

.ed-dashboard__status::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.ed-dashboard__status[data-tone="success"] {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.2);
  color: var(--color-success);
}

.ed-dashboard__status[data-tone="success"]::before {
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
}

.ed-dashboard__status[data-tone="warning"] {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--color-warning);
}

.ed-dashboard__status[data-tone="warning"]::before {
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.ed-dashboard__status[data-tone="error"] {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
  color: var(--color-danger);
}

.ed-dashboard__status[data-tone="error"]::before {
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18);
}

.ed-panel-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.ed-panel-close-btn svg {
  width: 1.1em;
  height: 1.1em;
}

.ed-panel-close-btn:hover,
.ed-panel-close-btn:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 14px 28px -20px rgba(37, 99, 235, 0.65);
  outline: none;
}

.ed-panel-close-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.25),
    0 14px 28px -20px rgba(37, 99, 235, 0.65);
}

.ed-dashboard__cards {
  display: grid;
  gap: clamp(18px, 2.5vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-content: start;
}

.ed-dashboard__section {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(230, 234, 245, 0.86));
  border: 1px solid rgba(47, 91, 234, 0.16);
  box-shadow: 0 24px 52px -34px rgba(16, 22, 38, 0.5);
  min-height: 0;
}

.ed-dashboard__section-header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 24px);
}

.ed-dashboard__section-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ed-dashboard__section-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  border-radius: 18px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(47, 91, 234, 0.28);
}

.ed-dashboard__section-icon svg {
  width: 70%;
  height: 70%;
}

.ed-dashboard__section-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.ed-dashboard__section-description {
  margin: 4px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--color-text);
  opacity: 0.8;
  max-width: 70ch;
}

.ed-dashboard__section-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}

.ed-dashboard__section--skeleton {
  opacity: 0.95;
}

.ed-dashboard__section--skeleton .ed-dashboard__section-icon {
  background: transparent;
  box-shadow: none;
  border: 1px dashed var(--color-border-strong);
  color: transparent;
  min-width: 44px;
}

.ed-dashboard__section[data-section-key="staffing"] .ed-dashboard__section-grid {
  grid-template-columns: 1fr;
}

.ed-dashboard__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(18px, 2vw, 26px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(230, 234, 245, 0.9));
  border: 1px solid rgba(47, 91, 234, 0.2);
  box-shadow: 0 32px 60px -34px rgba(16, 22, 38, 0.62);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vw, 16px);
  min-height: 256px;
}

.ed-dashboard__card--skeleton {
  gap: 10px;
  box-shadow: none;
  border: 1px solid var(--skeleton-border);
  background: var(--skeleton-surface);
  opacity: 0.9;
}

.ed-dashboard__card--skeleton .skeleton--title {
  max-width: 72%;
}

.ed-dashboard__card--skeleton .skeleton--value {
  max-width: 56%;
}

.ed-dashboard__card--skeleton .skeleton--detail:nth-of-type(3) {
  max-width: 82%;
}

.ed-dashboard__card--skeleton .skeleton--detail:nth-of-type(4) {
  max-width: 70%;
}

.ed-dashboard__card--donut {
  align-items: center;
  text-align: center;
  min-height: 256px;
}

.ed-dashboard__card--donut .ed-dashboard__card-title {
  text-align: center;
  width: 100%;
}

.ed-dashboard__donut-chart {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.ed-dashboard__donut-chart canvas {
  width: 100%;
  height: 100%;
  display: block;
}

body[data-theme="dark"] .ed-dashboard__card {
  background: linear-gradient(145deg, rgba(16, 22, 38, 0.94), rgba(16, 22, 38, 0.8));
  border-color: rgba(109, 141, 255, 0.22);
  box-shadow: 0 34px 70px -36px rgba(4, 6, 14, 0.92);
}

.ed-dashboard__card-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
}

.ed-dashboard__card-value {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text);
}

.ed-dashboard__card-value--empty {
  font-size: clamp(0.95rem, 0.82rem + 0.4vw, 1.15rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.ed-dashboard__card-meta {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--color-text);
  opacity: 0.85;
  line-height: 1.4;
}

.ed-dashboard__card-meta:empty {
  display: none;
}

.ed-dashboard__card--comments {
  gap: 12px;
  min-height: 256px;
  max-height: 420px;
  overflow: hidden;
  background-clip: padding-box;
}

.ed-dashboard__card--feedback-rotating {
  min-height: 256px;
}

.ed-dashboard__card--feedback-rotating .ed-dashboard__card-title {
  min-height: 2.6em;
}

.ed-dashboard__card--feedback-rotating .ed-dashboard__card-value {
  min-height: 1.25em;
}

.ed-dashboard__card--feedback-rotating .ed-dashboard__card-meta {
  min-height: 1.6em;
}

.ed-dashboard__feedback-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 2px;
}

.ed-dashboard__feedback-location-metric {
  border: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent);
  border-radius: 12px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--color-bg) 74%, var(--color-accent-soft) 26%);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
}

.ed-dashboard__feedback-location-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.ed-dashboard__feedback-location-value {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-text);
}

.ed-dashboard__feedback-location-value--empty {
  font-size: clamp(0.9rem, 0.78rem + 0.36vw, 1.08rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.ed-dashboard__feedback-location-meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.ed-dashboard__feedback-location-metric .ed-dashboard__card-delta {
  margin-top: 2px;
  font-size: 0.75rem;
}

.ed-dashboard__feedback-indicators {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
}

.ed-dashboard__feedback-indicator {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-text) 28%, transparent);
  opacity: 0.65;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease;
}

.ed-dashboard__feedback-indicator.is-active {
  background: var(--color-accent);
  opacity: 1;
  transform: scale(1.18);
}

.ed-dashboard__comment-wrapper {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
}

.ed-dashboard__comment-scroller {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  transform: translateY(0);
  will-change: transform;
}

.ed-dashboard__comment-wrapper.is-scrollable .ed-dashboard__comment-scroller {
  animation: ed-comment-scroll var(--scroll-duration, 12000ms) linear infinite;
}

@keyframes ed-comment-scroll {
  0%,
  10% {
    transform: translateY(0);
  }
  90%,
  100% {
    transform: translateY(calc(-1 * var(--scroll-distance, 0px)));
  }
}

.ed-dashboard__comment {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text);
}

.ed-dashboard__comment-meta {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--color-text);
  opacity: 0.82;
}

.ed-dashboard__comment-rotation {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.ed-dashboard__comment-rotation-dots {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
}

.ed-dashboard__comment-rotation-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-text) 20%, transparent);
  opacity: 0.8;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease;
}

.ed-dashboard__comment-rotation-dot.is-active {
  background: var(--color-accent);
  opacity: 1;
  transform: scale(1.22);
}

.ed-dashboard__card-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--color-accent-soft);
  border-radius: 999px;
  overflow: hidden;
}

.ed-dashboard__card-progress-fill {
  position: absolute;
  inset: 0;
  width: var(--progress-width, 0%);
  background: var(--color-accent);
  border-radius: inherit;
  transition: width 0.4s ease;
}

.ed-dashboard__card-progress-fill[data-occupancy-level="normal"] {
  background: var(--color-success);
}

.ed-dashboard__card-progress-fill[data-occupancy-level="elevated"] {
  background: var(--color-warning);
}

.ed-dashboard__card-progress-fill[data-occupancy-level="critical"] {
  background: var(--color-danger);
}

.ed-dashboard__card-progress-marker {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 14px;
  background: var(--color-text);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
}

.ed-dashboard__card-delta {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
}

.ed-dashboard__card-delta[data-trend="up"] {
  color: var(--color-success);
}

.ed-dashboard__card-delta[data-trend="down"] {
  color: var(--color-danger);
}

.ed-dashboard__card-delta-arrow {
  font-size: 1rem;
  line-height: 1;
}

.ed-dashboard__card-delta-text {
  font-weight: 600;
}

.ed-dashboard__card-delta-reference {
  font-weight: 500;
  color: var(--color-text-muted);
}

.ed-dashboard__chart-message {
  margin-top: 8px;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 600;
}

@media (max-width: 768px) {
  .ed-dashboard {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .ed-dashboard__status {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
}

@media (max-width: 640px) {
  .ed-dashboard {
    padding: 16px 14px;
    border-radius: 20px;
  }

  .ed-dashboard__header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .ed-dashboard__title-row {
    align-items: flex-start;
  }

  .ed-dashboard__header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .ed-dashboard__header-actions > * {
    flex: 1 1 auto;
    justify-content: center;
  }

  .ed-dashboard__status {
    white-space: normal;
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .ed-dashboard__cards,
  .ed-dashboard__section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .ed-dashboard__section {
    border-radius: var(--mobile-card-radius);
    padding: 14px;
  }

  .ed-dashboard__section-header {
    gap: 10px;
  }

  .ed-dashboard__section-title {
    font-size: 1.08rem;
    letter-spacing: 0.02em;
  }

  .ed-dashboard__section-description {
    font-size: 0.92rem;
  }
}

@media (max-width: 520px) {
  .ed-dashboard {
    border-radius: 14px;
    padding: 10px;
    gap: 10px;
    min-height: 0;
    background: linear-gradient(135deg, rgba(47, 91, 234, 0.08), rgba(47, 91, 234, 0)), var(--color-surface);
    box-shadow: var(--shadow-soft-panel);
  }

  .ed-dashboard::before {
    height: 160px;
    opacity: 0.22;
  }

  .ed-dashboard__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
  }

  .ed-dashboard__title-row {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 6px 8px;
  }

  .ed-dashboard__title-logo {
    height: 30px;
    width: 30px;
  }

  .ed-dashboard__title {
    font-size: 1.08rem;
    line-height: 1.15;
  }

  .ed-dashboard__title-full {
    display: none;
  }

  .ed-dashboard__title-mobile {
    display: inline;
  }

  .ed-dashboard__status {
    grid-column: 1 / -1;
    gap: 7px;
    width: fit-content;
    padding: 5px 9px;
    font-size: 0.68rem;
    letter-spacing: 0.025em;
    line-height: 1.2;
    white-space: normal;
    text-shadow: none;
  }

  .ed-dashboard__status::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
  }

  .ed-dashboard__header-actions {
    justify-self: end;
    width: auto;
  }

  .ed-dashboard__header-actions > * {
    flex: 0 0 auto;
  }

  .ed-panel-close-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
    gap: 5px;
    font-size: 0.78rem;
    justify-content: center;
  }

  .ed-dashboard__cards {
    gap: 9px;
  }

  .ed-dashboard__section {
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft-panel);
  }

  .ed-dashboard__section-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .ed-dashboard__section-header-text {
    gap: 2px;
    min-width: 0;
  }

  .ed-dashboard__section-title {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: none;
  }

  .ed-dashboard__section-description {
    font-size: 0.76rem;
    line-height: 1.3;
    margin-top: 0;
  }

  .ed-dashboard__section-grid {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
  }

  .ed-dashboard__card {
    border-radius: 10px;
    padding: 10px 11px;
    gap: 6px;
    min-height: 0;
    box-shadow: var(--shadow-soft-panel);
  }

  .ed-dashboard__card-title {
    font-size: 0.76rem;
    letter-spacing: 0.015em;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-shadow: none;
  }

  .ed-dashboard__card-value {
    font-size: 1.5rem;
    line-height: 1;
    overflow-wrap: anywhere;
    text-shadow: none;
  }

  .ed-dashboard__card-value--empty {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .ed-dashboard__card-meta {
    font-size: 0.76rem;
    overflow-wrap: anywhere;
    line-height: 1.28;
  }

  .ed-dashboard__card-progress {
    height: 7px;
  }

  .ed-dashboard__card-delta {
    gap: 4px;
    font-size: 0.72rem;
    flex-wrap: wrap;
    line-height: 1.25;
    margin-top: 1px;
  }

  .ed-dashboard__card--donut,
  .ed-dashboard__card--feedback-rotating,
  .ed-dashboard__card--comments {
    min-height: 0;
  }

  .ed-dashboard__donut-chart {
    max-width: 180px;
  }

  .ed-dashboard__chart-message {
    margin-top: 2px;
    font-size: 0.74rem;
  }

  .ed-dashboard__card--comments {
    max-height: 260px;
  }

  .ed-dashboard__card--feedback-rotating .ed-dashboard__card-title,
  .ed-dashboard__card--feedback-rotating .ed-dashboard__card-value,
  .ed-dashboard__card--feedback-rotating .ed-dashboard__card-meta {
    min-height: 0;
  }

  .ed-dashboard__feedback-location-grid {
    gap: 7px;
  }

  .ed-dashboard__feedback-location-metric {
    border-radius: 9px;
    padding: 7px;
    min-height: 82px;
  }

  .ed-dashboard__feedback-location-label {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .ed-dashboard__feedback-location-value {
    font-size: 1.35rem;
  }

  .ed-dashboard__feedback-location-value--empty {
    font-size: 0.76rem;
  }

  .ed-dashboard__feedback-location-meta,
  .ed-dashboard__feedback-location-metric .ed-dashboard__card-delta {
    font-size: 0.68rem;
  }

  .ed-dashboard__feedback-indicators {
    margin-top: 2px;
    gap: 5px;
  }

  .ed-dashboard__comment-wrapper {
    max-height: 150px;
  }

  .ed-dashboard__comment {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .ed-dashboard__comment-meta {
    font-size: 0.74rem;
    line-height: 1.3;
  }
}

@media (max-width: 520px) and (prefers-reduced-motion: reduce) {
  .ed-dashboard__comment-wrapper.is-scrollable .ed-dashboard__comment-scroller {
    animation: none;
  }

  .ed-dashboard__feedback-indicator,
  .ed-dashboard__comment-rotation-dot,
  .ed-dashboard__card-progress-fill {
    transition: none;
  }
}

body[data-page="ed"] .section-band--ed {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="ed"] .section-band--ed .section,
body[data-page="ed"] #edStandardSection {
  margin-bottom: 0;
}
