.assessment-layout {
  background: #fff;
  color: #18181b;
}

[data-assessment-app] [hidden] {
  display: none !important;
}

/* Header */
.assessment-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e4e7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
}

.assessment-header__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1392px;
  width: 100%;
}

.assessment-header__progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 720px;
  width: 100%;
}

.assessment-header__progress > span {
  color: #a1a1aa;
  font-size: 12px;
  line-height: 16px;
}

/* Marca */
.assessment-brand {
  align-items: center;
  color: #18181b;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  line-height: 24px;
}

.assessment-brand__mark {
  align-items: center;
  background: #18181b;
  border-radius: 6px;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.assessment-brand__mark span {
  background: #fff;
  border-radius: 3px;
  display: block;
  height: 10px;
  width: 10px;
}

.assessment-brand__logo {
  display: block;
  height: 24px;
  width: auto;
}

.assessment-progress {
  background: #f4f4f5;
  border-radius: 999px;
  color: #52525b;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  padding: 6px 12px;
}

.assessment-progress-track {
  background: #e4e4e7;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  width: 100%;
}

.assessment-progress-fill {
  background: #3f3f46;
  border-radius: 999px;
  height: 100%;
  transition: width .25s ease;
  width: 0;
}

/* Contenido */
.assessment-main {
  flex: 1;
  padding: 48px;
}

.assessment-screen {
  margin: 0 auto;
  max-width: 800px;
}

.assessment-screen[data-screen="quiz"] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.assessment-question-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 32px;
}

.assessment-eyebrow {
  color: #a1a1aa;
  font-size: 18px;
  font-weight: 600;
  line-height: 16px;
  margin: 0 0 12px;
}

.assessment-question-card h1 {
  color: #18181b;
  font-size: 25px;
  font-weight: 600;
  line-height: 27.5px;
  margin: 0;
}

.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assessment-option {
  align-items: center;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  color: #3f3f46;
  cursor: pointer;
  display: flex;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  gap: 16px;
  line-height: 20px;
  min-height: 59px;
  padding: 16px 20px;
  text-align: left;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
  width: 100%;
}

.assessment-option:hover {
  border-color: #18181b;
}

.assessment-option:focus-visible {
  border-color: #18181b;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, .12);
  outline: none;
}

.assessment-option.is-selected {
  background: #18181b;
  border-color: #18181b;
  color: #fff;
}

.assessment-option-key {
  align-items: center;
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  color: #a1a1aa;
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  line-height: 16px;
  transition: background-color .2s, border-color .2s, color .2s;
  width: 24px;
}

.assessment-option.is-selected .assessment-option-key {
  background: #fff;
  border-color: #fff;
  color: #18181b;
}

.assessment-navigation {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.assessment-button {
  align-items: center;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  min-height: 46px;
  padding: 12px 24px;
  text-decoration: none;
  transition: opacity .2s, transform .1s, background-color .2s, border-color .2s;
}

.assessment-button:active {
  transform: scale(.98);
}

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

.assessment-button--primary {
  background: #18181b;
  border: 1px solid #18181b;
  color: #fff;
}

.assessment-button--primary:hover:not(:disabled) {
  background: #27272a;
}

.assessment-button--secondary {
  background: #fff;
  border: 1px solid #d4d4d8;
  color: #3f3f46;
}

.assessment-button--secondary:hover:not(:disabled) {
  background: #fafafa;
}

/* Pantallas centradas (carga / mensaje) */
.assessment-screen--centered {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  text-align: center;
}

.assessment-screen--centered h1 {
  color: #18181b;
  font-size: 28px;
  margin: 24px 0 8px;
}

.assessment-screen--centered p {
  color: #52525b;
  margin: 0;
}

.assessment-message-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.assessment-loader {
  border: 5px solid #e4e4e7;
  border-radius: 50%;
  border-top-color: #18181b;
  height: 64px;
  width: 64px;
  animation: assessment-spin .9s linear infinite;
}

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

/* Resultado */
.assessment-result {
  max-width: 540px;
}

.assessment-result-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
}

.assessment-result-accent {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #f97316);
  height: 6px;
}

.assessment-result-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  text-align: center;
}

.assessment-result-status {
  align-items: center;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 9999px;
  color: #92400e;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  line-height: 16px;
  margin: 0 auto;
  padding: 4px 12px;
  text-transform: uppercase;
}

.assessment-result-status__icon {
  height: 14px;
  width: 14px;
}

.assessment-result-title {
  color: #0f172a;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  margin: 0;
}

.assessment-result-description {
  color: #64748b;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
  max-width: 384px;
}

.assessment-result-score {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.assessment-result-score__value {
  color: #d97706;
  font-size: 72px;
  font-weight: 800;
  line-height: 72px;
}

.assessment-result-score__caption {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.assessment-result-threshold {
  margin: 0 auto;
  max-width: 320px;
  position: relative;
  width: 100%;
}

.assessment-result-threshold__track {
  background: #f1f5f9;
  border-radius: 9999px;
  height: 10px;
  overflow: hidden;
  position: relative;
}

.assessment-result-threshold__fill {
  background: #f59e0b;
  border-radius: 9999px;
  bottom: 2px;
  left: 0;
  position: absolute;
  top: 2px;
  transition: width .3s ease;
  width: 0;
}

.assessment-result-threshold__marker {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  left: 0;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
}

.assessment-result-threshold__marker span {
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  line-height: 16.5px;
  white-space: nowrap;
}

.assessment-result-threshold__legend {
  color: #94a3b8;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 16.5px;
  margin-top: 8px;
}

.assessment-metrics {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 8px;
}

.assessment-metric {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
  min-height: 86px;
  padding: 16px;
  text-align: left;
}

.assessment-metric__label {
  align-items: center;
  color: #64748b;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 16px;
}

.assessment-metric__label svg {
  color: #94a3b8;
  height: 14px;
  width: 14px;
}

.assessment-metric.is-correct .assessment-metric__label svg {
  color: #059669;
}

.assessment-metric.is-incorrect .assessment-metric__label svg {
  color: #f43f5e;
}

.assessment-metric__value {
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.assessment-metric.is-correct .assessment-metric__value {
  color: #059669;
}

.assessment-metric.is-incorrect .assessment-metric__value {
  color: #1e293b;
}

.assessment-metric__status {
  align-items: center;
  color: #b45309;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 6px;
  line-height: 24px;
}

.assessment-metric__dot {
  background: #f59e0b;
  border-radius: 9999px;
  height: 8px;
  width: 8px;
}

.assessment-result-note {
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.assessment-result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.assessment-result .assessment-button {
  font-size: 14px;
  line-height: 20px;
  min-height: 48px;
  padding: 13.5px 24px;
}

.assessment-result .assessment-button svg {
  height: 16px;
  width: 16px;
}

.assessment-result .assessment-button--primary {
  background: #0f172a;
  border-color: #0f172a;
}

.assessment-result .assessment-button--primary:hover:not(:disabled) {
  background: #1e293b;
}

.assessment-result .assessment-button--secondary {
  border-color: #e2e8f0;
  color: #334155;
}

.assessment-review-link {
  align-items: center;
  background: transparent;
  border: 0;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  gap: 6px;
  justify-content: center;
  line-height: 16px;
  padding: 6px 4px;
}

.assessment-review-link svg {
  height: 14px;
  width: 14px;
}

/* Resultado aprobado */
.assessment-result-trophy {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: -8px;
}

.assessment-result-trophy img {
  display: block;
  height: 112px;
  width: 112px;
}

.assessment-result-status__icon--check {
  display: none;
}

.assessment-result-card.is-approved .assessment-result-status {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.assessment-result-card.is-approved .assessment-result-status__icon--warning {
  display: none;
}

.assessment-result-card.is-approved .assessment-result-status__icon--check {
  display: inline;
}

.assessment-result-card.is-approved .assessment-result-accent {
  background: linear-gradient(90deg, #10b981, #14b8a6, #059669);
  height: 8px;
}

.assessment-result-card.is-approved .assessment-result-score__value {
  color: #059669;
  font-size: 60px;
  line-height: 60px;
}

.assessment-result-card.is-approved .assessment-result-threshold__fill {
  background: linear-gradient(90deg, #10b981, #14b8a6);
}

.assessment-result-card.is-approved .assessment-metrics {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  gap: 16px 24px;
  padding: 24px 16px 16px;
}

.assessment-result-card.is-approved .assessment-metric {
  background: transparent;
  border: 0;
  gap: 5px;
  min-height: 0;
  padding: 0;
}

.assessment-result-card.is-approved .assessment-metric__value {
  align-items: center;
  color: #1e293b;
  display: inline-flex;
  font-size: 20px;
  line-height: 28px;
}

.assessment-result-card.is-approved .assessment-metric.is-correct .assessment-metric__value {
  color: #1e293b;
}

.assessment-result-card.is-approved .assessment-metric.is-incorrect .assessment-metric__value {
  color: #94a3b8;
}

.assessment-result-card.is-approved .assessment-metric__check-badge {
  align-items: center;
  background: #d1fae5;
  border-radius: 9999px;
  color: #059669;
  display: inline-flex;
  height: 16px;
  justify-content: center;
  margin-left: 6px;
  width: 16px;
}

.assessment-result-card.is-approved .assessment-metric__check-badge svg {
  height: 10px;
  width: 10px;
}

.assessment-result-card.is-approved .assessment-metric__status {
  color: #059669;
  font-size: 18px;
  line-height: 28px;
}

.assessment-result-card.is-approved .assessment-metric__tag {
  background: #d1fae5;
  border-radius: 4px;
  color: #065f46;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  padding: 0 6px;
}

.assessment-result-card.is-approved .assessment-metric__dot {
  display: none;
}

/* Revisión */
.assessment-review-screen {
  max-width: 896px;
}

.assessment-review {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 32px;
}

.assessment-review__header {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-bottom: 24px;
}

.assessment-review__eyebrow {
  align-items: center;
  color: #64748b;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  gap: 10px;
  line-height: 16px;
  margin: 0 0 4px;
}

.assessment-review__eyebrow span {
  color: #94a3b8;
}

.assessment-review__heading h1 {
  color: #0f172a;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}

.assessment-review__nav {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
}

.assessment-review__nav button {
  align-items: center;
  background: #f8fafc;
  border: 0;
  border-radius: 8px;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 500;
  height: 32px;
  justify-content: center;
  line-height: 16px;
  min-width: 32px;
  padding: 0 8px;
}

.assessment-review__nav button.is-correct {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-weight: 600;
}

.assessment-review__nav button.is-incorrect {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-weight: 600;
}

.assessment-review__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.assessment-review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.assessment-review-card.is-incorrect {
  border-color: #fecdd3;
}

.assessment-review-card__stripe {
  background: #f43f5e;
  height: 6px;
}

.assessment-review-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.assessment-review-card__top {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.assessment-review-card__badge {
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  padding: 4px 10px;
}

.assessment-review-card__badge.is-correct {
  background: #0f172a;
  color: #fff;
}

.assessment-review-card__badge.is-incorrect {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
}

.assessment-review-card__status {
  align-items: center;
  border-radius: 9999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  gap: 6px;
  line-height: 16px;
  padding: 2px 10px;
}

.assessment-review-card__status.is-correct {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.assessment-review-card__status.is-incorrect {
  background: #ffe4e6;
  color: #9f1239;
  font-weight: 600;
}

.assessment-review-card__status svg {
  height: 14px;
  width: 14px;
}

.assessment-review-card__question {
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.75px;
  margin: 0;
}

.assessment-review-card__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assessment-review-option {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #334155;
  display: flex;
  gap: 14px;
  min-height: 58px;
  padding: 14px;
}

.assessment-review-option__key {
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  color: #334155;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 12px;
  font-weight: 600;
  height: 28px;
  justify-content: center;
  line-height: 16px;
  width: 28px;
}

.assessment-review-option__text {
  flex: 1;
  font-size: 14px;
  line-height: 22.75px;
}

.assessment-review-option__check {
  color: #fff;
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.assessment-review-option__tag {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 4px;
  line-height: 16px;
  padding: 2px 8px;
  white-space: nowrap;
}

.assessment-review-option__tag svg {
  height: 12px;
  width: 12px;
}

.assessment-review-option.is-selected {
  background: #020617;
  border-color: #020617;
  color: #fff;
}

.assessment-review-option.is-selected .assessment-review-option__key {
  background: #fff;
  border-color: #fff;
  color: #020617;
}

.assessment-review-option.is-wrong {
  background: #fff1f2;
  border-color: #fda4af;
  color: #4c0519;
  font-weight: 500;
}

.assessment-review-option.is-wrong .assessment-review-option__key {
  background: #fecdd3;
  border-color: #fda4af;
  color: #881337;
  font-weight: 700;
}

.assessment-review-option.is-wrong .assessment-review-option__tag {
  background: #fecdd3;
  color: #881337;
}

.assessment-review-option.is-correct-answer {
  background: #ecfdf5;
  border-color: #10b981;
  color: #022c22;
  font-weight: 600;
}

.assessment-review-option.is-correct-answer .assessment-review-option__key {
  background: #059669;
  border-color: #059669;
  color: #fff;
  font-weight: 700;
}

.assessment-review-option.is-correct-answer .assessment-review-option__tag {
  background: #a7f3d0;
  color: #064e3b;
}

.assessment-review-option.is-discarded {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}

.assessment-review-option.is-discarded .assessment-review-option__key {
  background: #fff;
  border-color: #e2e8f0;
  color: #64748b;
}

.assessment-review__footer {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 16px;
}

.assessment-review__legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.assessment-review__legend-item {
  align-items: center;
  color: #475569;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
  line-height: 20px;
}

.assessment-review__legend-dot {
  border-radius: 9999px;
  height: 10px;
  width: 10px;
}

.assessment-review__legend-dot.is-correct {
  background: #10b981;
}

.assessment-review__legend-dot.is-incorrect {
  background: #cbd5e1;
}

.assessment-review__legend-sep {
  color: #cbd5e1;
}

.assessment-review__back {
  align-items: center;
  background: #020617;
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  min-height: 40px;
  padding: 10px 24px;
}

.assessment-review__back svg {
  height: 16px;
  width: 16px;
}

/* Footer */
.assessment-footer {
  align-items: flex-start;
  background: #fff;
  border-top: 1px solid #e4e4e7;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  line-height: 16px;
  padding: 24px;
}

.assessment-footer__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.assessment-footer__left strong {
  color: #3f3f46;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.assessment-footer__left span {
  color: #a1a1aa;
}

.assessment-footer a {
  color: #d4d4d8;
  padding-top: 9px;
  text-decoration: none;
}

/* Modal de confirmación */
.assessment-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 50;
}

.assessment-modal__backdrop {
  background: rgba(0, 0, 0, .4);
  inset: 0;
  position: absolute;
}

.assessment-modal__card {
  background: #fff;
  border-radius: 16px;
  max-width: 448px;
  padding: 32px;
  position: relative;
  width: 100%;
}

.assessment-modal__icon {
  align-items: center;
  background: #f4f4f5;
  border-radius: 12px;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 8px;
  width: 40px;
}

.assessment-modal__icon svg {
  height: 20px;
  width: 20px;
}

.assessment-modal__card h2 {
  color: #18181b;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 8px;
}

.assessment-modal__card p {
  color: #71717a;
  font-size: 14px;
  line-height: 22.75px;
  margin: 0;
}

.assessment-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.assessment-modal__confirm {
  align-items: center;
  background: #18181b;
  border: 1px solid #18181b;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 24px;
  min-height: 56px;
  padding: 16px 32px;
  transition: background-color .2s;
}

.assessment-modal__confirm:hover {
  background: #27272a;
}

.assessment-modal__cancel {
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: #52525b;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  min-height: 44px;
  padding: 12px 24px;
}

.assessment-modal__cancel:hover {
  color: #18181b;
}

@media (max-width: 600px) {
  .assessment-header {
    padding: 14px 20px;
  }

  .assessment-main {
    padding: 32px 16px;
  }

  .assessment-question-card,
  .assessment-review-card__body {
    padding: 24px 20px;
  }

  .assessment-result-body {
    padding: 32px 20px;
  }

  .assessment-review {
    padding: 32px 20px;
  }

  .assessment-review__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .assessment-review__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .assessment-result-score__value {
    font-size: 60px;
    line-height: 60px;
  }

  .assessment-navigation {
    gap: 10px;
  }

  .assessment-button {
    padding-left: 16px;
    padding-right: 16px;
  }
}
