@charset "UTF-8";
/**
 * SAF-372 — Styles for [dash_quick_actions].
 *
 * Independent from the shared assets/css/educator-dashboard.css and every
 * other component in this module — everything here is scoped under
 * .edash-qa-list so it can't leak onto anything else.
 *
 * No build tool exists in this repo, so this .css and its .scss twin must
 * be kept byte-identical on every edit.
 */
.edash-qa-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.edash-qa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid #8BC251;
  border-radius: 12px;
  background: #fff;
  color: #1D2939;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.15s ease;
}

.edash-qa-item:hover {
  background: #F5FAF0;
}

/* Optional scroll-reveal: assets/js/quick-actions.js adds --observe at
   runtime (feature-detected), so items stay fully visible with no JS. */
.edash-qa-item--observe {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.edash-qa-item--observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.edash-qa-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8BC251;
}

.edash-qa-item-title {
  font-size: 15px;
  font-weight: 600;
}

/* ── Featured item ("Quick Order") ────────────────────────────────────── */
.edash-qa-item--featured {
  position: relative;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 44px 20px 20px;
  border: 1.5px solid #1E9E8B;
  border-radius: 14px;
  background: #E6F5F1;
}

.edash-qa-item--featured:hover {
  background: #DBF0EA;
}

.edash-qa-item--featured .edash-qa-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  color: #1E9E8B;
}

.edash-qa-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.edash-qa-item--featured .edash-qa-item-title {
  font-size: 16px;
  font-weight: 700;
}

.edash-qa-item-desc {
  color: #475467;
  font-size: 13px;
  line-height: 1.4;
}

.edash-qa-item-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  color: #1E9E8B;
}

.edash-qa-item-arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}/*# sourceMappingURL=quick-actions.css.map */