/* KYC Plugin Styles - Nigerian/African Theme */
.kyc-admin-wrapper, .kyc-submit-wrapper, .kyc-status-wrapper, .kyc-settings-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.kyc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-card.pending { border-left: 4px solid #FFA500; }
.stat-card.approved { border-left: 4px solid #008751; }
.stat-card.rejected { border-left: 4px solid #dc3545; }

.stat-card h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    color: #333;
}

.kyc-filters {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.kyc-filters a {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.kyc-filters a.active {
    background: #008751;
    color: white;
}

.kyc-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.kyc-table th, .kyc-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.kyc-table th {
    background: #008751;
    color: white;
}

.badge {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}


/* Add your custom CSS here */
.kyc-badge { /* Example */ 
    background: gold;
    padding: 5px;
}

/* Responsive Design for Mobile Devices */

@media (max-width: 768px) {
    .kyc-stats {
        grid-template-columns: 1fr;
    }
    
    .kyc-review-grid {
        grid-template-columns: 1fr;
    }
    
    .kyc-filters {
        flex-direction: column;
    }
    
    .kyc-filters a {
        text-align: center;
    }
    
    .kyc-table {
        font-size: 14px;
    }
    
    .kyc-table th, .kyc-table td {
        padding: 8px;
    }
    
    .levels {
        grid-template-columns: 1fr;
    }
    
    .documents img {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .kyc-admin-wrapper, .kyc-submit-wrapper, .kyc-status-wrapper {
        padding: 10px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .kyc-table {
        display: block;
        overflow-x: auto;
    }
    
    .btn-submit, .btn-submit-kyc {
        width: 100%;
    }
}

/* Print Styles for Documentation */
@media print {
    .kyc-filters, .btn-review, .btn-primary, .btn-secondary {
        display: none;
    }
    
    .kyc-review-grid {
        page-break-inside: avoid;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .kyc-admin-wrapper, .kyc-submit-wrapper, .kyc-status-wrapper {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .stat-card, .status-card, .kyc-info {
        background: #2d2d2d;
        color: #e0e0e0;
    }
}

.status-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.status-card.status-pending {
    border-left: 5px solid #FFA500;
}

.status-card.status-approved {
    border-left: 5px solid #008751;
}

.status-card.status-rejected {
    border-left: 5px solid #dc3545;
}

.admin-notes {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.no-verification {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 8px;
}

.kyc-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.kyc-info ul {
    list-style: none;
    padding: 0;
}

.kyc-info ul li:before {
    content: "✓ ";
    color: #008751;
    font-weight: bold;
    margin-right: 10px;
}

.levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.level {
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.level.bronze { background: #CD7F32; color: white; }
.level.silver { background: #C0C0C0; color: #333; }
.level.gold { background: #FFD700; color: #333; }

/* Admin-specific styles */
.kyc-decision-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.kyc-decision-form .form-group {
    margin-bottom: 20px;
}

.kyc-decision-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.kyc-decision-form select,
.kyc-decision-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.kyc-decision-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-primary {
    background: #008751;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}

.btn-primary:hover {
    background: #006b3f;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #5a6268;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.document-list li:before {
    content: "✓ ";
    color: #008751;
    font-weight: bold;
    margin-right: 10px;
}

.badge-bronze { background: #CD7F32; color: white; }
.badge-silver { background: #C0C0C0; color: #333; }
.badge-gold { background: #FFD700; color: #333; }

.btn-review, .btn-primary {
    padding: 8px 16px;
    background: #008751;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    padding: 8px 16px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.kyc-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.kyc-review-grid > div {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.documents img {
    margin: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.kyc-form .form-group {
    margin-bottom: 20px;
}

.kyc-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.kyc-form input, .kyc-form select, .kyc-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.kyc-form small {
    display: block;
    color: #666;
    margin-top: 5px;
}

.btn-submit, .btn-submit-kyc {
    padding: 12px 30px;
    background: #008751;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}