body {
  background: #7084ff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

.seed-phrase-container {
  background: white;
  width: 360px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 16px;
  text-align: center;
  box-sizing: border-box; /* Ensures padding is included in width/height */
  overflow: visible; /* Allows all content to show */
  min-height: 500px; /* Removes any implicit fixed height */
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-button {
  background: none;
  border: none;
  font-size: 18px;
  color: #007bff;
  cursor: pointer;
}

.progress-indicator {
  display: flex;
  gap: 4px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d3d3;
}

.progress-dot.active {
  background: #007bff;
}

h2 {
  font-size: 18px;
  margin: 16px 0;
  color: #333;
}

.dropdown {
  margin: 12px 0;
  position: relative;
}

.dropdown select {
  width: 100%; /* Adjusts width to fit container */
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  padding: 8px;
  font-size: 14px;
  box-sizing: border-box; /* Ensures padding is included */
}

.seed-input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
  width: 100%; /* Ensure the grid container takes up the full width */
}

.seed-input-grid input {
  width: 100%; /* Makes each input take full width of its grid cell */
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  padding: 18px 10px;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
}

.confirm-button {
  background: #7084ff;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

.confirm-button:hover {
  background: #0056b3;
}