/* Amadeus Dashboard — Custom Styles */

/* Login card — additional polish (page-level styles set the dark surface). */
.login-card {
    backdrop-filter: blur(12px);
}

/* Bot cards hover lift */
.card:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Chat messages scroll */
#messages {
    scroll-behavior: smooth;
}

/* Message input focus ring */
#message-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.3);
}

/* Custom scrollbar for chat */
#messages::-webkit-scrollbar {
    width: 6px;
}

#messages::-webkit-scrollbar-track {
    background: transparent;
}

#messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

#messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive chat layout */
@media (max-width: 640px) {
    .chat .chat-bubble {
        max-width: 85%;
    }
}

/* Pulse animation for online status */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.badge-success .w-2 {
    animation: pulse-dot 2s ease-in-out infinite;
    background-color: #16a34a;
}
