/* --- LOBİ DÜZENİ (TEK KUTU HAXBALL MANTIĞI) --- */
.lobi-layout { 
    display: flex; 
    flex-direction: row; 
    flex-wrap: nowrap; /* BÜTÜN SIR BURADA: Asla alt satıra atmaz! */
    width: 100%; 
    height: 400px; /* Haxball lobisi gibi geniş ve yüksek */
    background: #1a1e22; /* Sağ taraf buton alanının arkaplanı */
    border: 2px solid #111;  
    border-radius: 4px;
    box-sizing: border-box;
}

/* ODA LİSTESİ (SOL TARAF) */
.oda-listesi-alani {
    flex: 1; /* Sol tarafı olabildiğince genişletir */
    min-width: 0; /* İÇERİĞİN TAŞMASINI ENGELLER */
    height: 100%;            
    background: #14171a; 
    border-right: 2px solid #111; /* Butonlarla aradaki sert çizgi */
    padding: 10px; 
    overflow-y: auto; 
    box-sizing: border-box;
}

/* BUTON ALANI (SAĞ TARAF) */
.buton-alani { 
    width: 180px; /* Sağ tarafı 180px'e çiviledik */
    flex-shrink: 0; /* ASLA KÜÇÜLMEZ VEYA AŞAĞI DÜŞMEZ */
    height: 100%;            
    padding: 15px;           
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    box-sizing: border-box;
}

.buton-alani .hax-button {
    width: 100%;
    margin: 0;
    padding: 12px 0;
    font-size: 15px;
    font-weight: bold;
    box-sizing: border-box;
}

/* ODA BAŞLIKLARI VE SATIRLAR */
.oda-item { 
    border-bottom: 1px solid #333; 
    padding: 8px 0; 
    display: flex; 
    justify-content: space-between; 
    cursor: pointer;
}
.oda-item:hover { background: #2c3e50; }
.oda-item.secili {
    background-color: #2980b9 !important; 
    border-left: 4px solid #f9d342; 
}

.oda-header {
    display: flex;
    padding: 5px 0 10px 0;
    font-weight: bold;
    color: #f9d342;
    border-bottom: 2px solid #333;
    margin-bottom: 5px;
}

/* ONLİNE SAYISI KUTUSU (EN ALTA YAPIŞTIRIR) */
.aktif-oyuncu-alani {
    margin-top: auto; /* Üstündeki boşluğu iterek en alta yapışır */       
    padding: 10px; 
    background: #14171a; 
    border: 1px solid #333; 
    border-radius: 4px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 8px; 
    font-size: 15px;
}

.yesil-nokta {
    width: 10px; height: 10px; background-color: #2ecc71;
    border-radius: 50%; box-shadow: 0 0 5px #2ecc71;
}

/* --- LOBİ BAŞLIK VE BİLGİ BUTONLARI (LİG, GOL, HABER) --- */
.lobi-baslik-alani {
    display: flex;
    justify-content: flex-start; /* Sola hizalar */
    align-items: center;         /* Dikeyde tam ortalar */
    gap: 30px;                   /* Başlık ile butonlar arasına mesafe koyar */
    border-bottom: 2px solid #f9d342;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-top: 0;
}

.lobi-bilgi-butonlari {
    display: flex;
    gap: 10px; /* Butonların kendi arasındaki boşluk */
}

.bilgi-btn {
    padding: 6px 15px !important;
    font-size: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}

.bilgi-btn:hover {
    transform: scale(1.05); /* Üzerine gelince hafif büyür */
}

/* Modal içi şık liderlik tablosu */
.liderlik-tablosu {
    width: 100%; border-collapse: collapse; margin-top: 10px;
}
.liderlik-tablosu th, .liderlik-tablosu td {
    border-bottom: 1px solid #333; padding: 10px; text-align: left; color: #ecf0f1; font-size: 15px;
}
.liderlik-tablosu th { color: #f9d342; font-weight: bold; background: #1a1e22; }
.altin-madalya { color: #f1c40f; font-weight: bold; }
.gumus-madalya { color: #bdc3c7; font-weight: bold; }
.bronz-madalya { color: #cd7f32; font-weight: bold; }