body {
  background: #0f172a;
  color: #f1f5f9;
  font-family: 'Noto Sans Malayalam', 'Segoe UI', sans-serif;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #00ffae;
  font-size: 2rem;
  margin-bottom: 10px;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

input,
button {
  padding: 12px;
  margin: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  transition: all 0.3s ease;
}

input {
  background: #334155;
  color: #f8fafc;
}
input:focus {
  outline: 2px solid #00ffae;
}

button {
  background: #00ffae;
  color: #0f172a;
  cursor: pointer;
}
button:hover {
  background: #5effc3;
}

#report {
  text-align: left;
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.safe {
  color: #00ff7f;
}
.danger {
  color: #ff4f4f;
}
.warn {
  color: #ffdf00;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

#loader {
  color: #ffdf00;
  font-weight: bold;
  margin-top: 15px;
}
