.wc-container{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
.textarea-container, .stats-container, .top-words-container {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
flex: 1 1 45%;
max-width: 45%;
}
textarea {
width: 100%;
height: 100%;
padding: 10px;
font-size: 16px;
border-radius: 8px;
border: 1px solid #ddd;
box-sizing: border-box;
}
h3 {
font-size: 20px;
color: #333;
margin-top: 0;
}
p {
font-size: 16px;
margin: 8px 0;
color: #555;
}
.top-words-container {
flex: 1 1 100%;
max-width: 100%;
}
.top-words-container h3 {
font-size: 18px;
color: #333;
}
.top-words-container ul {
list-style-type: none;
padding-left: 0;
}
.top-words-container li {
font-size: 16px;
color: #555;
margin: 4px 0;
}
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
margin: 5px;
}
button:hover {
background-color: #45a049;
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
}
.pagination span {
font-size: 18px;
color: #333;
margin: 0 10px;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
}
.textarea-container, .stats-container {
max-width: 100%;
margin-bottom: 15px;
}
.top-words-container {
max-width: 100%;
}
}
