/* hashcodes.css */
body {
    background-color: lightskyblue;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

table {
    margin: 0 auto;
    border-collapse: collapse;
}

th, td {
    padding: 0.5em;
    border: 1px solid #ddd;
    text-align: center;
}

h1 {
    text-align: center;
    margin-top: 50px;
}

p {
    text-align: center;
    margin-top: 20px;
}

form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#hashcode {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}

.bodytext {
    text-align: left;
    margin: 0 auto;
    width: 80%;
    padding: 20px;
}
