@charset "UTF-8";
/**
 * SAF-372 — Styles for [dash_copy_link].
 *
 * Independent from the shared assets/css/educator-dashboard.css and every
 * other component in this module — everything here is scoped under
 * .edash-copy-link so it can't leak onto anything else. Button styling
 * intentionally matches .edash-ftc-btn-outline (featured-training-courses.css)
 * for visual consistency across the dashboard's outline buttons.
 *
 * No build tool exists in this repo, so this .css and its .scss twin must
 * be kept byte-identical on every edit.
 */
.edash-copy-link {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
}

.edash-copy-link-field {
  flex: 1;
  min-width: 0;
  padding: 12px 20px;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}

.edash-copy-link-url {
  display: block;
  color: #434A4F;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.edash-copy-link-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #8BC251;
  background: #fff;
  color: #8BC251;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.edash-copy-link-btn:hover {
  background: #8BC251;
  color: #fff;
}

.edash-copy-link-btn.is-copied {
  background: #8BC251;
  color: #fff;
}

@media (max-width: 480px) {
  .edash-copy-link {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
}/*# sourceMappingURL=copy-link.css.map */