﻿/* #region GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    background-color: #313338;
    overflow: hidden;
}
/* #endregion */

/* #region GIRIS EKRANI */
.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1f22;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-box {
    background-color: #313338;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    color: white;
    width: 350px;
}

    .login-box h2 {
        margin-bottom: 20px;
    }

    .login-box input {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 4px;
        border: none;
        background-color: #1e1f22;
        color: white;
        outline: none;
    }

    .login-box button {
        width: 100%;
        padding: 12px;
        background-color: #5865F2;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
    }
/* #endregion */

/* #region ANA YAPI VE SOL MENU */
.uygulama-tasiyici {
    height: 100vh;
    display: flex;
    color: #dbdee1;
}

#mobil-header {
    display: none;
    background-color: #2b2d31;
    color: white;
    padding: 15px;
    font-weight: bold;
    align-items: center;
    border-bottom: 1px solid #1e1f22;
}

#mobilMenuBtn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
}

.kanal-sutunu {
    width: 260px;
    background-color: #2b2d31;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sunucu-baslik {
    padding: 16px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #1e1f22;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

    .sunucu-baslik:hover {
        background-color: #35373c;
    }

.kanal-listesi {
    list-style: none;
    padding: 0 8px;
}

.ses-kanallari {
    margin-bottom: auto;
    overflow-y: auto;
}

.kanal-listesi li {
    padding: 8px;
    margin-bottom: 2px;
    cursor: pointer;
    border-radius: 4px;
    color: #949ba4;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

    .kanal-listesi li:hover {
        background-color: #35373c;
        color: #dbdee1;
    }

    .kanal-listesi li.aktif {
        background-color: #404249;
        color: #fff;
    }

.kanal-kategorisi {
    font-size: 12px;
    font-weight: bold;
    color: #949ba4;
    text-transform: uppercase;
    padding: 16px 8px 4px 8px;
    display: flex;
    justify-content: space-between;
}
/* #endregion */

/* #region SES PANELI */
.ses-kontrol-paneli {
    background-color: #111214;
    border-bottom: 1px solid #2b2d31;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ses-ust-bilgi {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sinyal-alani {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sinyal-ikon {
    font-size: 18px;
    color: #23a559;
    transition: color 0.3s;
}

.ses-yazi-alani {
    display: flex;
    flex-direction: column;
}

.baglanti-durumu {
    color: #23a559;
    font-size: 13px;
    font-weight: bold;
    transition: color 0.3s;
}

.bagli-kanal-ismi {
    color: #949ba4;
    font-size: 11px;
}

.ayril-ufak-btn {
    background: none;
    border: none;
    color: #dbdee1;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}

    .ayril-ufak-btn:hover {
        background-color: #35373c;
        color: #ed4245;
    }

.ses-alt-butonlar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.kutu-btn {
    background-color: #2b2d31;
    border: none;
    color: #dbdee1;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
}

    .kutu-btn:hover:not(.disabled) {
        background-color: #35373c;
    }

    .kutu-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
/* #endregion */

/* #region KULLANICI PROFILI */
.kullanici-profili {
    background-color: #232428;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profil-sol {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar-alani {
    position: relative;
}

.profil-avatar {
    width: 32px;
    height: 32px;
    background-color: #5865F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.durum-noktasi {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background-color: #23a559;
    border-radius: 50%;
    border: 2px solid #232428;
}

.profil-isimler {
    display: flex;
    flex-direction: column;
}

.ana-isim {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.alt-durum {
    font-size: 11px;
    color: #949ba4;
}

.profil-sag {
    display: flex;
    gap: 4px;
}

.profil-ikon-btn {
    background: none;
    border: none;
    color: #dbdee1;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .profil-ikon-btn:hover {
        background-color: #35373c;
    }

    .profil-ikon-btn.cikis:hover {
        color: #ed4245;
    }
/* #endregion */

/* #region ORTA SOHBET */
.sohbet-sutunu {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #313338;
    min-width: 0;
}

.sohbet-ust-bilgi {
    height: 50px;
    border-bottom: 1px solid #1e1f22;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-weight: bold;
    color: #fff;
}

.mesajlar-alani {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.tek-mesaj {
    margin-bottom: 16px;
    line-height: 1.4;
}

.mesaj-gonderen {
    font-weight: bold;
    color: #fff;
    margin-right: 5px;
}

.mesaj-yazma-alani {
    padding: 0 16px 24px 16px;
    display: flex;
    gap: 10px;
}

#mesajKutusu {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    background-color: #383a40;
    color: #dcddde;
    font-size: 15px;
    outline: none;
}

#gonderButonu {
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    background-color: #5865F2;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
/* #endregion */

/* #region KULLANICI LISTESI */
.kullanici-sutunu {
    width: 240px;
    background-color: #2b2d31;
    padding: 16px 8px;
}

.grup-baslik {
    font-size: 12px;
    color: #949ba4;
    margin-bottom: 8px;
    padding-left: 8px;
}

.kullanici {
    display: flex;
    align-items: center;
    padding: 8px;
    color: #949ba4;
    cursor: pointer;
    border-radius: 4px;
}
/* #endregion */

/* #region SES DALGASI */
.ses-kanal-kullanici {
    display: flex;
    align-items: center;
    padding: 4px 0 4px 24px;
    font-size: 13px;
    color: #949ba4;
    margin-top: 2px;
}

    .ses-kanal-kullanici.konusuyor {
        color: #fff;
        font-weight: bold;
    }

.ses-avatar-kucuk {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #5865F2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 11px;
    margin-right: 8px;
    border: 2px solid transparent;
}

.ses-kanal-kullanici.konusuyor .ses-avatar-kucuk {
    border-color: #23a559;
    box-shadow: 0 0 5px #23a559;
}
/* #endregion */

/* #region MODAL */
.modal-arkaplan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-kutu {
    background-color: #313338;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    padding: 24px;
    color: white;
}

.ayar-grubu {
    margin-bottom: 20px;
    border-bottom: 1px solid #1e1f22;
    padding-bottom: 15px;
}

.ayar-etiket {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.modal-alt {
    text-align: right;
}

.kaydet-btn {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
/* #endregion */

/* #region MOBIL UYUMLULUK */
@media screen and (max-width: 768px) {
    #mobil-header {
        display: flex;
    }

    .uygulama-tasiyici {
        flex-direction: column;
        height: calc(100vh - 55px);
        position: relative;
    }

    .kanal-sutunu {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 50;
        transform: translateX(-100%);
        width: 280px;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    }

        .kanal-sutunu.acik {
            transform: translateX(0);
        }

    .kullanici-sutunu {
        display: none;
    }

    .sohbet-sutunu {
        flex: 1;
        height: 100%;
    }
}
/* #endregion */
