:host {
  display: block;
}

p,
h3 {
  margin: 0;
}

.alternatives-view {
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-14);
}

.alternative-option {
  display: flex;
  flex-direction: column;
}

.option-header {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.option-header svg.icon {
  color: var(--primary-blue);
  width: 1.25rem;
  height: 1.25rem;
}

.option-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-black);
}

.alternative-option p {
  font-size: 0.875rem;
  color: var(--primary-black);
  margin: 0.25rem 0 0.75rem;
}

.buttons-container {
  display: flex;
  justify-content: space-between;
  gap: var(--space-12);
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-8);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  width: 100%;
  font-family: var(--ism-primary-font-family);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

button.primary {
  background-color: var(--primary-blue);
  color: white;
}

button.primary:hover {
  background-color: #001943;
}

button.secondary {
  background-color: white;
  border: 1px solid var(--border-color);
  color: #333;
}
