.verify-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
   
}

.verify-header {
    text-align: center;
    margin-bottom: 30px;
}

.verify-icon {
    margin-bottom: 20px;
}

.verify-icon.success {
    color: #28a745;
}

.verify-icon.error {
    color: #dc3545;
}

.verify-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.cert-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.cert-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.cert-info-row:last-child {
    border-bottom: none;
}

.cert-info-label {
    font-weight: 600;
    color: #495057;
    font-size: 15px;
}

.cert-info-value {
    color: #212529;
    text-align: right;
    font-size: 15px;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-expired {
    background: #f8d7da;
    color: #721c24;
}

.btn-view-pdf {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

/* Form Styles */
#verificationForm {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

#verificationResult .verify-header {
    margin-top: 20px;
}

.verify-container {
    animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .verify-container {
        padding: 25px;
    }
    
    #verificationForm {
        padding: 20px;
    }
    
    .cert-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .cert-info-value {
        text-align: left;
    }
}

