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

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.text-box {
  width: 80vw;
  max-width: 1000px;
  min-width: 300px;
  height: 100px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.label {
  margin: 0;
  font-size: 1.5em;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 16px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  border: 2px solid #28a745;
}

.green {
  background-color: #28a745;
  color: white;
}

.border-only {
  background: none;
  border: none;
  color: #666;
  font-weight: normal;
}

.border-only:hover {
  text-decoration: underline;
}
