body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f172a;
  color: white;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: #60a5fa;
}


textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  margin: 10px 5px 20px 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #3b82f6;
  color: white;
}

button.active {
  background: #1d4ed8;
}

.view-toggle {
  margin-top: 20px;
}

.box {
  background: #1e293b;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.theme {
  background: #1e293b;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.theme-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #60a5fa;
}
.input-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

textarea {
  flex: 1;
}

.logo {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    letter-spacing: 5px;
    color: #ffffff;
}
.logo {
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}
.loader {
  width: 28px;
  height: 28px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #1e90ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

