/* Custom scrollbars for chat */
.chat-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.chat-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.chat-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(107, 114, 128, 0.8);
    border-radius: 9999px;
}

/* Fullscreen mode for chat */
#chat-window.fullscreen {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    z-index: 9999;
}

/* Chat window specific containers and positioning */
.chat-window-container {
    position: relative;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.chat-log-container {
    background: linear-gradient(to bottom, #000000, #27272a, #52525b);
}

.chat-input-area {
    background-color: rgba(24, 24, 27, 0.9);
}
