/* Dashboard Styles */
.test-platform-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.test-platform-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.test-platform-stat-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-platform-stat-icon {
    width: 50px;
    height: 50px;
    background: #4a6fa5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.test-platform-stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a6fa5;
}

.test-platform-stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.test-platform-dashboard-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.test-platform-dashboard-col {
    flex: 1;
}

.test-platform-dashboard-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 20px;
    margin-bottom: 30px;
}

.test-platform-results-table {
    width: 100%;
    border-collapse: collapse;
}

.test-platform-results-table th,
.test-platform-results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.test-platform-results-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.test-platform-score-display {
    font-weight: 600;
    color: #4a6fa5;
}

.test-platform-btn-small {
    padding: 5px 10px;
    font-size: 0.8rem;
}

.test-platform-view-all {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.test-platform-topic-list {
    list-style: none;
    padding: 0;
}

.test-platform-topic-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.test-platform-topic-list li:last-child {
    border-bottom: none;
}

.test-platform-topic-list a {
    color: #4a6fa5;
    text-decoration: none;
}

.test-platform-topic-list a:hover {
    text-decoration: underline;
}

.test-platform-progress-chart {
    height: 200px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

/* Responsive dashboard */
@media (max-width: 768px) {
    .test-platform-dashboard-row {
        flex-direction: column;
    }
    
    .test-platform-stats-grid {
        grid-template-columns: 1fr;
    }
}