/* Amadeus Dashboard — Custom Styles */

/* Smooth page transitions */
body {
    min-height: 100dvh;
}

/* Login card glow effect */
.login-card {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 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 hsl(var(--p) / 0.3);
}

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

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

#messages::-webkit-scrollbar-thumb {
    background: hsl(var(--bc) / 0.15);
    border-radius: 3px;
}

#messages::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--bc) / 0.25);
}

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

/* Logo text gradient */
.logo-text {
    background: linear-gradient(135deg, hsl(var(--p)), hsl(var(--s)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 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;
}
