.chat-info {
    position: fixed;
    bottom: 10px;
    left: 10px;
    box-shadow: 0 4px 20px rgba(139, 64, 82, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

@media (max-width: 768px) {
    .chat-info {
        right: 2px;
        left: 2px;
        bottom: 2px;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .chat-info {
        right: 2px;
        left: 2px;
        bottom: 2px;
    }
}

.chat-messages {
    scrollbar-width: thin;
    scrollbar-color: #e01e50 #f1f1f1;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background-color: #e01e50;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}