.hash-parsing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #0f1420;
    color: #ffffff;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

form {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

input[type="text"] {
    width: 60%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #2C2F3B;
    background-color: #1E2029;
    color: #ffffff;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #3E4257;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4a4f6a;
}

#result {
    width: 90%;
    max-width: 500px;
    background-color: #1E2029;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
    }

    form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}
