body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p {
    margin-bottom: 1.5em;
    color: #555;
}

textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: sans-serif;
    box-sizing: border-box;
}

button {
    padding: 0.5em 1em;
    border-radius: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#result {
    margin-top: 1em;
    text-align: left;
}

.info-box {
    margin-top: 2em;
    padding: 1em;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #007bff;
    text-align: left;
}

.info-box h3 {
    margin-top: 0;
    color: #007bff;
}

.info-box p {
    font-size: 0.9em;
    margin-bottom: 0.8em;
}

.info-box p:last-child {
    margin-bottom: 0;
}
