/* Style the Upload Form (#pdf-hash-verification-form) same as Authentication Form */
#pdf-hash-verification-form {
    margin: 20px 0;
    padding: 30px;
    background-color: rgba(20, 30, 48, 0.95); /* Dark background matching authentication side */
    border-radius: 20px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Labels inside upload form */
#pdf-hash-verification-form label {
    font-size: 18px;
    color: #a3d8f4;
    font-weight: bold;
}

/* Input fields inside upload form */
#pdf-hash-verification-form input[type="text"],
#pdf-hash-verification-form input[type="date"],
#pdf-hash-verification-form input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #0d1117;
    border: 1px solid #1f6feb;
    color: #58a6ff;
    font-size: 16px;
}

/* Upload form button */
#pdf-hash-verification-form button {
    background-color: #1f6feb;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

#pdf-hash-verification-form button:hover {
    background-color: #388bfd;
}

/* Result Message from Upload */
.pdf-hash-result {
    margin-top: 30px;
    padding: 30px;
    background-color: rgba(33, 53, 85, 0.95);
    border-radius: 20px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.3);
    color: #ffffff;
    text-align: center;
    font-size: 20px;
}

.pdf-hash-result h3 {
    margin-top: 0;
    font-size: 24px;
    color: #1db954;
}
