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

.container {
    width: 650px; /* Increase width */
    padding: 50px; /* Add more padding */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

input {
    width: 85%; /* Make input wider */
    padding: 15px; /* Increase padding */
    font-size: 18px; /* Make text larger */
    margin: 15px 0; /* Increase spacing */
}

button {
    width: 90%;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

button:hover {
    background: #0056b3;
}

#result {
    margin-top: 20px;
}

#result-container {
    min-height: 50px;  /* Increase height so it always has space */
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}