/* Mesajlaşma stilleri */
.max-w-75 {
    max-width: 75%;
}

.message-container {
    scroll-behavior: smooth;
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.list-group-item.active .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.list-group-item.active h6 {
    color: white;
}

.unread-indicator {
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

.message-bubble {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mesaj input alanı */
.message-input-container {
    position: sticky;
    bottom: 0;
    background-color: white;
    border-top: 1px solid #dee2e6;
    padding: 15px;
}

/* Scrollbar özelleştirme */
#mesaj-alani::-webkit-scrollbar {
    width: 6px;
}

#mesaj-alani::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#mesaj-alani::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

#mesaj-alani::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Admin paneli için tam genişlik - boxed layout override */
.body-wrapper > .container-fluid {
    max-width: 100% !important;
}

/* Modern Sekme Tasarimi */
.nav-tabs-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: none;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}
.nav-tabs-custom .nav-link {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #6c757d;
    padding: 10px 18px;
    font-weight: 500;
    background: #fff;
    transition: all 0.2s ease;
}
.nav-tabs-custom .nav-link:hover {
    color: #5D87FF;
    border-color: #5D87FF;
    background: rgba(93, 135, 255, 0.05);
}
.nav-tabs-custom .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #5D87FF 0%, #3b5998 100%);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(93, 135, 255, 0.3);
}
.nav-tabs-custom .nav-link i {
    margin-right: 6px;
}
