/* Chapter 7: Progress Dashboard - Specific styles */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.progress-letter {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border: 2px solid #dfe6e9;
}

.progress-letter.practiced {
    border-color: #00b894;
    background: #e8f7f0;
}

.progress-char {
    font-size: 2.5rem;
    font-family: 'Noto Sans Gurmukhi', sans-serif;
    margin-bottom: 5px;
}

.progress-count {
    font-size: 0.85rem;
    color: #636e72;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn.primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn:not(.primary) {
    background: white;
    color: #2d3436;
    border: 2px solid #dfe6e9;
}

.btn:not(.primary):hover {
    border-color: #6c5ce7;
}

.reminders {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.reminders h3 {
    color: #2d3436;
    margin-bottom: 15px;
}

.reminders p {
    color: #636e72;
    margin-bottom: 20px;
}
