.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 16px 0 8px;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
}

.password-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.password-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
}

.password-value {
  font-family: "SFMono-Regular", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  color: #0f172a;
  word-break: break-all;
}

.password-actions {
  display: flex;
  gap: 8px;
}

.copy-btn {
  border: 1px solid #0f766e;
  background: #ffffff;
  color: #0f766e;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
}

.copy-btn:hover {
  background: #e6fffb;
}

.results-note {
  margin-top: 16px;
  color: #4b5563;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .password-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .password-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .results-note {
    font-size: 0.9rem;
  }
}
