.team-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
}

.team-logo img {
    max-width: 200px;
    height: auto;
}

.team-info li {
    list-style: none;
    margin: 8px 0;
}
/* تضاف هذه الأنماط لملف team-style.css */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.player-card {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-photo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 15px;
}


/* أنماط المباريات */
.match-card {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
}

.vs {
    font-weight: bold;
    color: #666;
}

.match-time {
    text-align: center;
    color: #888;
    font-size: 0.9em;
}

.match-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
}

.match-link:hover {
    text-decoration: underline;
}

.participating-players ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.participating-players li {
    padding: 8px;
    background: #f8f8f8;
    border-radius: 4px;
}

