body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: flex-start;
    padding-top: 20px;
}

textarea, input {
    font-size: 16px;
    padding: 10px;
    margin-top: 10px;
}

textarea {
    width: 80%;
    height: 150px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#hash-container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between elements */
    margin-top: 10px;
    width: 80%;
    justify-content: flex-start; 
}

#contractHash {
    flex-grow: 0;
    width: 550px;
    margin-left: 0;
}

#generate-random {
    margin-left: auto; /* Push button to the right */
}