/* Suttawala B2B Custom Clean Light Theme Design System */

/* Premium Slate Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.15);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.4);
}

/* Base Body Enhancements */
html {
    scroll-behavior: smooth;
}

/* Clean Glassmorphism Backgrounds & Cards for Light Theme */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.03);
}

.glass-panel-glow {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.05), 0 5px 15px -5px rgba(0, 0, 0, 0.02);
}

.glass-input {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-input:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Corporate Royal Blue Details */
.blue-text-glow {
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.blue-gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.blue-gradient-border {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(29, 78, 216, 0.05) 100%);
}

/* Subtle Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Dynamic Hover Glow Cards */
.hover-glow-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-glow-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.1);
}

/* Bounce for Toast Alert notifications */
@keyframes bounceShort {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.animate-bounce-short {
    animation: bounceShort 3s ease-in-out infinite;
}

/* Tab Active Transitions */
.tab-transition {
    transition: all 0.3s ease;
}
