/* Styles for the Document Summarization component */

body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  color: #007bff;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  transition: border 0.3s;
}

textarea:focus {
  border: 1px solid #007bff;
  outline: none;
  background-color: #fff;
}

button {
  background-color: #007bff;
  color: white;
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.summary {
  margin-top: 30px;
  background-color: #e9ecef;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.1rem;
}

h2 {
  color: #007bff;
}

p {
  line-height: 1.6;
  font-size: 1.1rem;
}
