/* ==================== MODERN DURUM BİLDİRİM STİLLERİ ==================== */
.durum-bildirim {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 12px auto;
    max-width: 220px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.durum-bildirim.gorunur {
    opacity: 1;
    transform: translateY(0);
}

.durum-bildirim-icerik {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.durum-bildirim-icerik.durum-online {
    background: rgba(76, 175, 80, 0.12);
    color: #2e7d32;
}

.durum-bildirim-icerik.durum-offline {
    background: rgba(158, 158, 158, 0.12);
    color: #616161;
}

.durum-nokta {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.durum-nokta.online {
    background: #4caf50;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.5);
    animation: durumPulse 2s ease-in-out infinite;
}

.durum-nokta.offline {
    background: #9e9e9e;
}

@keyframes durumPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.durum-metin {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.durum-saat {
    font-size: 10px;
    opacity: 0.6;
    margin-left: 4px;
}

.durum-alt-metin {
    font-size: 10px;
    color: #9e9e9e;
    margin-top: 4px;
}
/* ==================== MODERN DURUM BİLDİRİM STİLLERİ BİTİŞ ==================== */

/* ==================== MESAJ DURUM İKONLARI (WHATSAPP TARZI) ==================== */
.mesaj-durum-footer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #999;
    margin-left: 8px;
}

.mesaj-durum-icon {
    font-size: 11px;
    transition: all 0.3s ease;
}

.mesaj-durum-icon.beklemede {
    color: #999;
}

.mesaj-durum-icon.iletildi {
    color: #999;
}

.mesaj-durum-icon.okundu {
    color: #4fc3f7;
}

.mesaj-durum-text {
    font-size: 9px;
    color: inherit;
}

/* Beklemede mesaj stili */
.beklemede-mesaj {
    opacity: 0.85;
}

.beklemede-mesaj .mesaj-durum-footer {
    color: #999;
}

/* İletildi mesaj stili */
.iletildi-mesaj .mesaj-durum-footer {
    color: #777;
}

/* Okundu mesaj stili */
.okundu-mesaj .mesaj-durum-footer {
    color: #4fc3f7;
}

/* Durum değişim animasyonu */
.mesaj-durum-icon {
    animation: durumDegisimPC 0.3s ease;
}

@keyframes durumDegisimPC {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
/* ==================== MESAJ DURUM İKONLARI BİTİŞ ==================== */
/* ==================== MODERN DURUM BİLDİRİM STİLLERİ BİTİŞ ==================== */

/* ==================== MİNİMAL GİRİŞ/ÇIKIŞ BİLDİRİM STİLLERİ (PC) ==================== */

/* Minimal Status - Orijinal boyutlara yakın, sade görünüm */
.minimal-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    animation: minimalFadeIn 0.5s ease-out;
}

.minimal-status b {
    font-weight: 700;
}



/* Giriş - Yeşil */
.status-giris {
    color: #059669;
}

.status-giris b {
    color: #047857;
}

/* Çıkış - Kırmızı */
.status-cikis {
    color: #DC2626;
}

.status-cikis b {
    color: #B91C1C;
}

/* Mikrofon Aldı - Mavi */
.status-mikrofon {
    color: #2563EB;
}

.status-mikrofon b {
    color: #1D4ED8;
}

/* Mikrofon Bıraktı - Turuncu */
.status-mikrofon-birak {
    color: #D97706;
}

.status-mikrofon-birak b {
    color: #B45309;
}

/* Çatı - Mor */
.status-cati {
    color: #7C3AED;
}

.status-cati b {
    color: #6D28D9;
}

/* Small etiket */
.minimal-status small {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

/* Animasyonlar */
@keyframes minimalFadeIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* ==================== MİNİMAL GİRİŞ/ÇIKIŞ BİLDİRİM STİLLERİ (PC) BİTİŞ ==================== */