/* Genel kapsayıcı */
.team-stats-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
}

/* Takım kutusu */
.team-box {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.team-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Takım adı */
.team-box h2 {
    margin-top: 0;
    color: #1abc9c;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
    font-size: 26px;
}

/* Alt başlıklar */
.team-box h3,
.team-box h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
    font-size: 18px;
}

/* Yazılar */
.team-box p {
    margin: 8px 0;
    line-height: 1.6;
}

/* Güçlü metinler */
.team-box strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Seasons ve Match History detayları */
.season-box,
.match-box {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
}

/* details ve summary stilleri */
details {
    margin-top: 10px;
}

summary {
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}
summary:hover {
    background-color: #dcdde1;
}

/* Liste */
ul {
    list-style-type: disc;
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}

/* Responsive yapı */
@media (max-width: 768px) {
    .team-box {
        padding: 20px;
    }

    .team-box h2 {
        font-size: 22px;
    }
}
