/* Chatbot Container - dodatni stilovi */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #intima-chatbot-container {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
        bottom: 10px;
    }
    
    .chatbot-toggle-btn {
        right: 10px;
        bottom: 10px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .toggle-text {
        display: none;
    }
}

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

.message {
    animation: fadeIn 0.3s ease;
}