/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #f0f0f0, #ffdde1);
    margin: 0;
    padding: 0;
    text-align: center;
}

.wrapper {
    max-width: 600px;
    margin: 30px auto;
}

/* Container */
.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Textarea */
textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
}

/* Stats */
.stats {
    margin-top: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
}

.stats p {
    font-size: 16px;
    color: #007bff;
    margin: 5px 0;
}

/* Buttons */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

/* Dark Mode */
.dark-mode {
    background: #333;
    color: white;
}

.dark-mode .container {
    background: #444;
}

.dark-mode button {
    background: #ffcc00;
    color: black;
}

/* Description Section */
.description {
    background: white;
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.description h2 {
    color: #444;
    font-size: 18px;
    margin-top: 10px;
}

.description p, .description ul {
    font-size: 14px;
    color: #666;
}

.description ul {
    padding-left: 20px;
}

.description ul li {
    margin-bottom: 5px;
}
