.sportzeen-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}
.dashboard-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.dashboard-card h3 {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    font-size: 18px;
}
.sportzeen-league-table {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 20px 0;
    overflow-x: auto;
}
.sportzeen-league-table h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 22px;
}
.league-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.league-table thead {
    background: #f8f9fa;
}
.league-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e9ecef;
}
.league-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f3f5;
}
.league-table tr:hover {
    background: #f8f9fa;
}
.form-cells {
    display: flex;
    gap: 3px;
    align-items: center;
}
.form-cell {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.form-cell.win { background: #28a745; }
.form-cell.draw { background: #ffc107; color: #333; }
.form-cell.loss { background: #dc3545; }
.sportzeen-predictions {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 20px 0;
}
.sportzeen-predictions h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 22px;
}
.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.prediction-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e9ecef;
}
.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
}
.match-teams .vs {
    color: #999;
    font-size: 14px;
}
.probability-bars {
    display: flex;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}
.prob-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    transition: width 0.5s ease;
}
.prob-bar.home { background: #28a745; }
.prob-bar.draw { background: #ffc107; color: #333; }
.prob-bar.away { background: #dc3545; }
.prediction-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}
.recommendation {
    background: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    border: 1px solid #dee2e6;
}
.confidence {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}
.confidence.high { background: #d4edda; color: #155724; }
.confidence.medium { background: #fff3cd; color: #856404; }
.confidence.low { background: #f8d7da; color: #721c24; }
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .predictions-grid {
        grid-template-columns: 1fr;
    }
}
