body {
  position: relative; /* Important for absolute positioning */
  min-height: 20vh;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  padding: 20px;
  background: #f5f5f5;
  background-size: 100%;
  background-position-x: center; 
  background-position-y: 25%; 
  background-repeat: no-repeat;
  background-image: url("Image's/snow2.jpg")
}
.container {
  width: 450px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.582);
}
textarea {
  width: 95%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #acaaaa;
  resize: none;
  height: 250px;
  max-height: 330px;
}
.results {
max-height: 150px;   /* adjustable, like your textarea */
overflow-y: auto;    /* adds vertical scroll when needed */
margin-top: 10px;
padding: 10px;
background: #fafafa;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 14px;
white-space: pre-wrap; /* keeps line breaks clean */
}
.highlight {
  font-weight: bold;
  color: #0066cc;
}
.sum-section {
  display: flex;
  height: 30px;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 8px;
  background: #eef6ff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}
.clear-btn {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.clear-btn:hover {
  background: #e60000;
}
.footer {
position: fixed;  /* keep at bottom even when scrolling */
bottom: 0;
width: 100%;
height: 45px;
background: rgba(187, 186, 186, 0.397);
border-top: 1px solid #000000;
}