@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

body {
  font-family: 'Roboto Mono', monospace;
  background: #f5f7fa;
  color: #2e2e2e;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

h2 {
  margin-bottom: 20px;
  color: whitesmoke;
  font-size: 28px;
}

textarea {
  width: 90%;
  max-width: 800px;
  height: 300px;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  resize: vertical;
  background-color: #ffffff;
  color:whitesmoke;
}

button {
  padding: 12px 24px;
  margin: 15px 10px;
  font-size: 16px;
  background-color: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  
}


.button-group {
  display: flex;
  justify-content: center;
  gap: 15px; /* space between buttons */
  flex-wrap: wrap;
  margin-top: 20px;
}

button:hover {
  background-color: #3730a3;
}

.status {
  margin-top: 15px;
  font-weight: bold;
  color: #16a34a;
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  textarea {
    width: 95%;
    height: 250px;
  }

  button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

body {
  background-color:black;
  color: #f8f8f8;
}

textarea {
  background-color: #252526;
  color: #d4d4d4;
  border: 1px solid #3c3c3c;
}

button {
  background-color: #0e639c;
}

button:hover {
  background-color: #1177bb;
}

.status {
  color: #4ade80; /* green */
}

button:nth-child(3) {
  background-color: #10b981; /* green */
}

button:nth-child(3):hover {
  background-color: #059669;
}

