/* Styling for the certificate verification form */
.verify-student-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Styling for form labels */
.verify-student-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Styling for text and date input fields */
.verify-student-form input[type="text"],
.verify-student-form input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Styling for the submit button */
.verify-student-form button[type="submit"] {
    background-color: #0073aa; /* WordPress blue */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    /* Basic button styling */
    display: inline-block; /* Allows padding and width to be applied */
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    height: auto; /* Allow content to dictate height */
    -webkit-appearance: none;
    box-sizing: border-box;
    vertical-align: top;
    white-space: nowrap;
    margin: 0;
    /* Add some visual depth */
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
    transition: background-color 0.2s ease-in-out;
}

/* Hover effect for the submit button */
.verify-student-form button[type="submit"]:hover {
    background-color: #005177; /* Darker blue on hover */
}

/* Styling for the student information display block */
.student-info {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #0073aa; /* Border color matching WordPress blue */
    border-radius: 5px;
    background-color: #f0f8ff; /* Light blue background */
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Styling for the heading within student info */
.student-info h3 {
    margin-top: 0;
    color: #0073aa;
    text-align: center;
    margin-bottom: 15px;
}

/* Styling for paragraphs within student info */
.student-info p {
    margin: 8px 0;
    line-height: 1.6;
    color: #333;
}

/* Styling for the error message */
.error-message {
    color: red;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: #ffecec;
    border: 1px solid #ff0000;
    border-radius: 5px;
    margin-top: 20px;
}
