/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* Main Container */
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
}

/* Title */
h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Textarea */
textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}

/* Word & Character Count */
.count-container {
    margin-top: 15px;
    text-align: left;
    font-size: 16px;
}

.count-container p {
    margin: 5px 0;
}

/* Button */
button {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #e64a19;
}
