body {
  font-family: "Nunito Sans", Arial, sans-serif;
  background-color: #000000;
  color: #d6d6d6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.container {
  background-color: #0b0b0b;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  text-align: center;
  overflow: auto;
  max-height: 90vh;
}

h2 {
  color: #ffffff;
  font-size: 24px;
}

p {
  color: #d6d6d6;
}

textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  background-color: #3a3a3a;
  color: #d6d6d6;
  outline: none;
  max-width: 95%;
  min-width: 95%;
}

.action-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

select,
button {
  margin-top: 15px;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fd1b61;
  color: white;
  transition: background-color 0.3s ease;
}

select {
  background-color: #3a3a3a;
  color: #ffffff;
  outline: none;
}

button:hover {
  background-color: #950c38;
}

h3 {
  color: #ffffff;
  margin-top: 20px;
}

img {
  width: 100px;
  margin-bottom: 10px;
}
