/* RIGHTBAR TOP 5 MATCHES WIDGET */
.top-matches-widget {
    
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-matches-widget h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
   
    padding-bottom: 10px;
}

.top-match-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    
    border-radius: 6px;
    border-left: 4px solid #007bff;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.top-match-item:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0,123,255,0.2);
}

.top-match-rank {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.top-match-info {
    flex: 1;
}

.top-match-teams {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.top-match-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.top-match-rating .stars {
    color: #ffc107;
}

.top-match-rating .avg {
    font-weight: bold;
    color: #007bff;
}

.top-match-rating .votes {
    color: #999;
}

.no-matches {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}
