/* Reset + Box Model Safety */
* {
  box-sizing: border-box;
  border: 0;
  padding: 0;
}

/* Base Layout & Typography */
body {
  font-family: Arial, sans-serif;
  background-color: #0f0f0f;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  overflow-y: auto; 
}

/* Main Container */
.container {
  max-width: 600px;
  width: 100%; 
  height: 100%;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 180, 0.2);
}

/* Input Field */
textarea#chat-input {
  width: 100%;
  height: 150px;
  background-color: #141414;
  color: #f0f0f0;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  resize: vertical;
  font-family: monospace; 
  caret-color: #00ffaa;   
}
/* Action Button */
button#analyse-btn {
  background-color: #00ffaa;
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
  user-select: none; 
}

button#analyse-btn:hover {
  background-color: #00e69a;
}

/* Result Display */
#result {
  margin-top: 20px;
  padding: 15px;
  background-color: #222;
  border-left: 4px solid #00ffaa;
  border-radius: 5px;
  min-height: 80px;
  white-space: pre-line;
  word-break: break-word;  
  overflow-wrap: anywhere; 
}
