/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Centering the content container */
.container {
    width: 80%;
    max-width: 600px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Title styling */
h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Form styling */
form {
    margin-bottom: 1rem;
}

label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 1rem;
}

button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Result message styling */
#prediction-result {
    font-size: 1.2rem;
    color: #333;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f1f8e9;
    border: 1px solid #dcedc8;
    border-radius: 4px;
}

/* Error message styling */
#prediction-result.error {
    color: #c0392b;
    background-color: #fdecea;
    border: 1px solid #fab1a0;
}
