/* Certificate Verification - Frontend Styles */
.cv-verification-wrapper {
    max-width: 500px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.cv-verification-form {
    margin-bottom: 24px;
    padding: 24px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.cv-verification-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.cv-verification-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #2271b1;
    border-radius: 6px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.cv-verification-form input[type="text"]:focus {
    outline: none;
    border-color: #135e96;
    box-shadow: 0 0 0 1px #135e96;
}

.cv-verify-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.cv-verify-btn:hover {
    background: #135e96;
}

.cv-verify-btn:disabled {
    background: #a7aaad;
    cursor: not-allowed;
}

/* Certificate Result - Valid (matches attached image) */
.cv-result-container {
    margin-top: 24px;
    padding: 28px 32px;
    border-radius: 12px;
    border: 2px solid;
    line-height: 1.6;
}

.cv-result-container.cv-valid {
    background: #e8f5e9;
    border-color: #2e7d32;
}

.cv-result-container.cv-expired {
    background: #ffebee;
    border-color: #c62828;
}

.cv-result-container.cv-not-found {
    background: #fff3e0;
    border-color: #e65100;
}

.cv-result-status {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.cv-result-container.cv-valid .cv-result-status {
    color: #2e7d32;
}

.cv-result-container.cv-expired .cv-result-status {
    color: #c62828;
}

.cv-result-container.cv-not-found .cv-result-status {
    color: #e65100;
}

.cv-result-details {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cv-result-details li {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cv-result-details .cv-label {
    font-weight: 700;
    color: #1d2327;
}

.cv-result-details .cv-value {
    color: #1d2327;
}

.cv-loading {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #2271b1;
}
