/* Frontend Styles */
.ats-verification-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ats-verification-form h2 {
    margin-top: 0;
    color: #333;
}

.ats-form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ats-form-group label {
    width: 100%;
    font-weight: bold;
}

.ats-form-group input[type="text"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ats-form-group .button {
    padding: 8px 20px;
}

#ats-verification-result {
    margin-top: 20px;
}

/* Certificate Details */
.ats-certificate-details {
    max-width: 700px;
    margin: 20px auto;
}

.certificate-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.certificate-header {
    background: #4CAF50;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certificate-header h1 {
    margin: 0;
    font-size: 20px;
}

.certificate-status .status-valid {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.certificate-content {
    padding: 20px;
}

.certificate-table {
    width: 100%;
    border-collapse: collapse;
}

.certificate-table th {
    text-align: left;
    padding: 10px 15px;
    background: #f5f5f5;
    width: 30%;
    font-weight: 600;
}

.certificate-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.certificate-qr {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f5f5f5;
}

.certificate-qr img {
    max-width: 150px;
    height: auto;
}

.status-expired {
    color: #dc3545;
    font-weight: bold;
}

.status-valid {
    color: #28a745;
    font-weight: bold;
}

.ats-certificate-not-found {
    text-align: center;
    padding: 40px 20px;
    background: #f8d7da;
    border-radius: 8px;
}

.ats-certificate-not-found p {
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
}