.verify-certificate-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.verify-certificate-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.form-group label {
    font-weight: 600;
    color: #333;
    min-width: 180px;
}

.form-group input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.verify-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.verify-button:hover {
    background: #005177;
}

.certificate-details {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.certificate-details h2 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.certificate-info {
    width: 100%;
    border-collapse: collapse;
}

.certificate-info th,
.certificate-info td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.certificate-info th {
    width: 200px;
    color: #666;
    font-weight: 600;
}

.certificate-not-found {
    background: #fff3f3;
    color: #dc3232;
    padding: 15px;
    border-left: 4px solid #dc3232;
    margin-top: 20px;
}

/* Admin Styles */
.wp-list-table .column-certificate_number {
    width: 15%;
}

.wp-list-table .column-trainee_name {
    width: 15%;
}

.wp-list-table .column-course_name {
    width: 20%;
}

.card {
    max-width: 800px;
    padding: 20px;
    margin-top: 20px;
}

.card h2 {
    margin-top: 0;
    color: #23282d;
}

.card ul {
    list-style-type: disc;
    margin-left: 20px;
}

.card ul li {
    margin: 5px 0;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .form-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group label {
        min-width: auto;
    }
    
    .certificate-info th,
    .certificate-info td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .certificate-info th {
        background: #f8f9fa;
        border-bottom: none;
    }
} 