/* support.css */

:root {
    --brand: #495deb;
    --brand-light: #ffe9e9;
    --brand-dark: #e14b49;
}

.bg-brand {
    background-color: var(--brand);
}
.bg-dark-brand {
    background-color: var(--brand-dark);
}

.bg-brand-light {
    background-color: var(--brand-light);
}

.text-brand {
    color: var(--brand);
}

.border-brand {
    border-color: var(--brand);
}

.ring-brand {
    --tw-ring-color: var(--brand);
}

/* Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

/* Chat animations */
.message-in {
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes ride {
    0% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(50px);
    }
}

.dashboard-enter {
    animation: fadeScale 0.4s ease-out forwards;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#chat-input:focus {
    outline: none;
    border: 1px solid #c9caf9;
    box-shadow: none;
}
.bg-slate-200 {
    background-color: rgb(255 100 129) !important;
}
/* Professional Refinements */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUpRefined 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpRefined {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cleaner Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

/* Remove default focus rings that look messy */
button:focus, input:focus {
    outline: none !important;
}

.step-dot {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Emerald Glow (Not a heavy shadow) */
.bg-emerald-500 {
    background-color: #10b981 !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    border-color: #ffffff !important;
}

/* Smooth transition for icons */
.step-dot i {
    font-size: 11px; /* Bigger icon */
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
#view-status-pill {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    min-width: 140px;
    transition: all 0.4s ease;
}

/* Specific status "Glow" effects */
.text-emerald-400 {
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.text-amber-400 {
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}
/* Container must be 100% of the available height */
.dashboard-scroll-container {
    height: 100%;
    scroll-behavior: smooth;
}

/* Professional Thin Scroller */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

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

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* Refresh Animation */
.dashboard-enter {
    animation: dashboardSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dashboardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}