body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333333;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    margin-top: 10px;
}

input,
textarea,
button {
    padding: 10px;
    margin-top: 5px;
    font-size: 1em;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

#wordCloud {
    margin: 0 auto;
    width: 100%;
    height: 400px;
}

.sentiment-bar {
    display: flex;
    height: 20px;
    margin-top: 10px;
    position: relative;
    background-color: #e0e0e0;
}

.sentiment-positive {
    background-color: green;
    text-align: center;
    color: white;
    line-height: 20px;
}

.sentiment-negative {
    background-color: red;
    text-align: center;
    color: white;
    line-height: 20px;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    input,
    textarea,
    button {
        font-size: 0.9em;
        padding: 8px;
    }

    #wordCloud {
        height: 300px;
    }
}
