.certificate-verification {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.verification-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.verification-content {
    display: flex;
    gap: 30px;
}

.certificate-details {
    flex: 1;
}

.certificate-preview {
    flex: 2;
}

.certificate-details table {
    width: 100%;
    border-collapse: collapse;
}

.certificate-details th, 
.certificate-details td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.certificate-details th {
    background-color: #f5f5f5;
}

.qr-code-container {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.download-link {
    margin-top: 20px;
    text-align: center;
}

.download-link .button {
    padding: 10px 20px;
    background: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

.download-link .button:hover {
    background: #135e96;
}