.ssv-certificate-container {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.certificate-header {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #3498db;
}

.certificate-header h2 {
    margin: 0;
    color: #2c3e50;
}

.verified-badge {
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

.certificate-content {
    text-align:center;
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
}

.left-column {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
}

.left-column img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #3498db;
}

.left-column h3 {
    margin: 15px 0 5px;
    color: #2c3e50;
}

.left-column p {
    text-align: center;
    color: #7f8c8d;
    margin: 0;
}

.right-column {
    flex: 2;
    min-width: 300px;
    padding: 20px;
}

.right-column table {
    width: 100%;
    border-collapse: collapse;
}

.right-column table tr td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.right-column table tr:last-child td {
    border-bottom: none;
}

.right-column table td:first-child {
    font-weight: bold;
    width: 35%;
    color: #2c3e50;
}

.cert-id {
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.note-box {
    margin-top: 30px;
    padding: 15px;
    background: #ecf0f1;
    border-radius: 5px;
    font-size: 14px;
    color: #34495e;
}

.certificate-footer {
    background: #a90000;
    color: white;
    padding: 15px;
    text-align: center !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .certificate-content {
        flex-direction: column;
        padding: 20px;
    }
    .left-column, .right-column {
        width: 100%;
        padding: 10px;
    }
    .left-column img {
        width: 150px;
        height: 150px;
    }
}