body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 30px 15px;
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

.verify-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.verify-title {
    font-size: 40px;
    margin-bottom: 10px;
    color: #343a40;
    font-weight: 500;
}

.verify-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
    color: #008000;
    font-weight: 500;
}

.verify-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px auto;
    border-collapse: collapse;
}

.verify-table th,
.verify-table td {
    padding: 8px;
    text-align: left;
    border: none;
}

.verify-table th {
    background-color: #e9ecef;
}

.verify-table tbody tr:nth-child(even) {
    background-color: #d6eeee;
}

.subtitle-text {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    margin-top: 15px;
}

.closing-title {
    font-size: 16px;
    color: #008000;
    line-height: 1.5;
}

img {
    max-width: 190px;
    max-height: 190px;
    height: auto;
    margin-bottom: 20px;
}

/* Form Styling for Admin Panel */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.form-group input {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

.btn-submit {
    background-color: #1b365d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.qr-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-align: center;
}

#qrcode {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.btn-download {
    display: inline-block;
    background-color: #28a745;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}