
    .nitepak-verification-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;
    }
    
    .nitepak-form-container {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .nitepak-form-container h2 {
        color: #2c3e50;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .nitepak-form-container p {
        color: #7f8c8d;
        margin-bottom: 25px;
    }
    
    .nitepak-form-group {
        margin-bottom: 20px;
    }
    
    .nitepak-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .nitepak-form-group input {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e9ecef;
        border-radius: 6px;
        font-size: 16px;
        transition: border-color 0.3s;
        box-sizing: border-box;
    }
    
    .nitepak-form-group input:focus {
        outline: none;
        border-color: #3498db;
    }
    
    .nitepak-submit-btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 14px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        margin-top: 10px;
    }
    
    .nitepak-submit-btn:hover {
        background: linear-gradient(135deg, #2980b9, #1f6394);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .nitepak-result-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 20px;
    }
    
    .nitepak-result-header {
        padding: 25px;
        text-align: center;
    }
    
    .nitepak-result-header.verified {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
    }
    
    .nitepak-result-header.error {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
    }
    
    .nitepak-verified-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(255,255,255,0.2);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
    }
    
    .nitepak-verified-badge .dashicons {
        margin-right: 10px;
        font-size: 24px;
    }
    
    .nitepak-student-info {
        padding: 25px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .nitepak-info-row {
        padding: 15px;
        background: #f8f9fa;
        border-radius: 6px;
        border-left: 4px solid #3498db;
    }
    
    .nitepak-info-label {
        font-size: 13px;
        color: #7f8c8d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }
    
    .nitepak-info-value {
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .nitepak-result-footer {
        padding: 25px;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    
    .nitepak-result-footer p {
        margin: 0 0 15px 0;
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }
    
    .nitepak-glossary {
        background: white;
        padding: 20px;
        border-radius: 6px;
        margin-top: 20px;
    }
    
    .nitepak-glossary h4 {
        margin-top: 0;
        color: #2c3e50;
    }
    
    .nitepak-glossary ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nitepak-glossary li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        display: flex;
    }
    
    .nitepak-glossary li:last-child {
        border-bottom: none;
    }
    
    .nitepak-glossary strong {
        min-width: 80px;
        color: #e74c3c;
    }
    
    .nitepak-contact-info {
        background: #e3f2fd;
        padding: 15px;
        border-radius: 6px;
        margin-top: 20px;
        border-left: 4px solid #2196f3;
    }
    
    @media (max-width: 768px) {
        .nitepak-verification-container {
            padding: 15px;
        }
        
        .nitepak-form-container {
            padding: 20px;
        }
        
        .nitepak-student-info {
            grid-template-columns: 1fr;
        }
        
        .nitepak-glossary li {
            flex-direction: column;
        }
        
        .nitepak-glossary strong {
            margin-bottom: 5px;
        }
    }
    
    @media (max-width: 480px) {
        .nitepak-verified-badge {
            flex-direction: column;
            text-align: center;
        }
        
        .nitepak-verified-badge .dashicons {
            margin-right: 0;
            margin-bottom: 10px;
        }
    }
    