/* Wikafy Dashboard Styles */
.wikafy-dashboard-container {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

.wikafy-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.wikafy-col {
    flex: 1;
    min-width: 300px;
}

.wikafy-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.wikafy-level-card h2 span.highlight {
    color: #f0b90b;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
}

.stat-item {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    border-left: 4px solid #ddd;
}

.next-level-box {
    margin-top: 25px;
    background: #fcfcfc;
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed #ccc;
}

.next-level-box h3 {
    margin-top: 0;
}

.next-level-box .hint {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
}

.prog-row {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.prog-row span {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.prog-row .bar {
    background: #eee;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.prog-row .fill {
    height: 100%;
    transition: width 0.5s ease;
}

.prog-row .fill.spent {
    background: linear-gradient(90deg, #28a745, #5ddc7b);
}

.prog-row .fill.panels {
    background: linear-gradient(90deg, #007bff, #56aaff);
}

.prog-row .fill.deposit {
    background: linear-gradient(90deg, #f0b90b, #ffe082);
}

.max-level-box {
    background: #fff9e6;
    color: #856404;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.kyc-level-badge {
    background: #e8f5e9;
    color: #2e7d32;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.kyc-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.kyc-list li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.kyc-btn {
    width: 100%;
    background: #eee !important;
    color: #999 !important;
    border: none !important;
    padding: 10px !important;
    border-radius: 8px !important;
    cursor: not-allowed;
}
