
/* Teknik Direktörler Tablosu Özel Stilleri */
.td-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 900px; 
    margin: 20px auto;
}

.td-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-left: 6px solid #ffcc00; /* İstanbul Sarı */
    border-radius: 60px 20px 20px 60px;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 10px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.td-card:hover {
    border-color: #ffcc00;
    background: #222;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.1);
}

.td-photo-frame {
    width: 85px; /* Fotoğraf alanı biraz büyütüldü */
    height: 85px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
    overflow: hidden;
    flex-shrink: 0;
    background: #333;
    margin-right: 25px;
}

.td-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.td-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.td-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px; /* Font büyütüldü */
    letter-spacing: 0.5px;
}

.td-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.td-club-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.td-club-name {
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
}

.td-season-tag {
    color: #ffcc00;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.td-club-logo {
    width: 50px; /* Logo bir tık büyütüldü */
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .td-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .td-meta {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid #333;
        padding-top: 8px;
    }
    .td-photo-frame {
        width: 70px;
        height: 70px;
    }
    .td-name {
        font-size: 18px;
    }
}

    .tr-avrupa-container {
        font-family: 'Segoe UI', sans-serif;
        max-width: 900px;
        margin: 20px auto;
        background: #111;
        padding: 10px;
        border-radius: 8px;
    }
   h3.sezon-bandi {
    background-color: #ffcc00 !important; /* Sarı Bant */
    color: #000000 !important; /* Siyah Yazı - İnatçıysa bu çözer */
    display: block !important;
    padding: 12px;
    margin: 25px 0 15px 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
    .takim-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }
    .takim-kart {
        background: #1e1e1e;
        border: 1px solid #333;
        border-radius: 12px;
        display: flex;
        align-items: center;
        padding: 10px 15px;
        flex: 1;
        min-width: 250px;
        transition: transform 0.2s;
    }
    .takim-kart:hover {
        border-color: #ffcc00;
        transform: translateY(-3px);
    }
    .takim-logo {
        width: 45px;
        height: 45px;
        object-fit: contain;
        margin-right: 15px;
    }
    .takim-detay {
        display: flex;
        flex-direction: column;
    }
    .takim-adi {
        color: #fff;
        font-weight: bold;
        font-size: 16px;
    }
    .takim-derece {
        color: #ffcc00;
        font-size: 13px;
        font-weight: 500;
    }
/* Açılır Kapanır Panel Stilleri */
.arsiv-accordion {
    background-color: #1e1e1e;
    color: #ffcc00;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 2px solid #ffcc00;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.active, .arsiv-accordion:hover {
    background-color: #2a2a2a;
}

.arsiv-accordion:after {
    content: '\002B'; /* Artı işareti */
    color: #ffcc00;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 24px;
}

.active:after {
    content: "\2212"; /* Eksi işareti */
}

.panel {
    padding: 0 18px;
    background-color: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 0 0 8px 8px;
}
/* Panelin içindeki paragrafların ve kartların hizasını korumak için */
.panel p {
    margin: 10px 0;
    line-height: 1.6;
}
.panel-kapat-row {
    text-align: center;
    padding: 20px 0;
    border-top: 1px dashed #444; /* Üstten bir ayraç */
    margin-top: 20px;
}

.panel-kapat-btn {
    background: #c0392b; /* Kırmızımsı, kapatma hissi verir */
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.panel-kapat-btn:hover {
    background: #e74c3c;
    transform: scale(1.05);
}
.sss-soru {
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #444;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.sss-soru:hover {
    background-color: #444;
}

.sss-cevap {
    padding: 0 15px;
    background-color: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.sss-cevap p {
    padding: 15px 0;
    color: #ccc;
    font-size: 15px;
}
.sss-blok-konteyner {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #121212; /* Karanlık tema */
    color: #fff;
}

.sss-ana-baslik {
    text-align: center;
    border-bottom: 2px solid #c0392b; /* Galatasaray kırmızısı gibi bir dokunuş */
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.sss-kart {
    background-color: #1a1a1a;
    border-left: 4px solid #c0392b; /* Sorunun yanına şık bir çizgi */
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.sss-soru-metni {
    margin: 0 0 10px 0;
    color: #ffcc00; /* Soruları altın sarısı yapalım, dikkat çeksin */
    font-size: 18px;
}

.sss-cevap-metni {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}
.sss-blok-konteyner h3 {
    color: #ffcc00; /* Sadece SSS içindekiler sarı olur */
}

/* Arşivin ana kapsayıcı div'ini (varsa) başına ekle, yoksa direkt böyle yaz */
body h3.sezon-bandi {
    background-color: #ffcc00 !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important; /* Bazı tarayıcılar için zorlayıcı komut */
}