/* General Form Container Styling */
#pdf-hash-verification-form, #pdf-authentication-check-form {
    margin: 30px auto;
    padding: 30px;
    background-color: rgba(20, 30, 48, 0.95); /* Dark blue-gray background */
    border-radius: 20px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

/* Input Labels */
#pdf-hash-verification-form label,
#pdf-authentication-check-form label {
    font-size: 18px;
    color: #a3d8f4;
    font-weight: bold;
}

/* Input Fields */
#pdf-hash-verification-form input[type="text"],
#pdf-hash-verification-form input[type="date"],
#pdf-hash-verification-form input[type="file"],
#pdf-authentication-check-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;
}

/* Buttons */
#pdf-hash-verification-form button,
#pdf-authentication-check-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,
#pdf-authentication-check-form button:hover {
    background-color: #388bfd;
}

/* Result Message Boxes (for both forms) */
.pdf-hash-result, .pdf-auth-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;
}

/* Headings inside Result Boxes */
.pdf-hash-result h3, .pdf-auth-result h3 {
    margin-top: 0;
    font-size: 24px;
    color: #1db954;
}

/* Authentication Status (Success or Fail) */
.authenticated {
    color: #1db954;
    font-weight: bold;
    font-size: 24px;
    margin-top: 10px;
}

.not-authenticated {
    color: #ff4d4f;
    font-weight: bold;
    font-size: 24px;
    margin-top: 10px;
}
