/* General Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #444; /* Dark border */
    background-color: #333; /* Dark input background */
    color: #e0e0e0; /* Light text in input */
}

button {
    padding: 10px 20px;
    background-color: #1e88e5; /* Blue button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #1565c0; /* Darker blue on hover */
}

#result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
