/* General Styles */

* {
    font-family: 'Nunito Sans', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #f3f4f6, #e2e8f0);
    color: #2d3748;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 24px;
    color: #2b6cb0;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
}

button {
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #2c5282;
    transform: scale(1.05);
}

button:active {
    background: #2b6cb0;
    transform: scale(0.95);
}

/* Input Field */
input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    margin-bottom: 20px;
}

input:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 5px rgba(43, 108, 176, 0.5);
}

/* Messages Container */
#messages-container {
    margin-top: 20px;
    text-align: left;
}

#messages-container p {
    background: #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #2d3748;
}

/* Feedback or Error Messages */
#feedback-message {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* Style for generated messages */
.generated-message {
    color: red;
    font-style: italic;
    font-family: 'Courier New', Courier, monospace; /* Distinct typewriter font */
    font-size: 16px;
    margin-top: 20px;
    padding: 10px;
    background-color: #ffe6e6; /* Light red background */
    border: 1px solid #f5c2c2;
    border-radius: 5px;
    text-align: center;
}
