/* W-INVOICE Custom Styles - Teal Brand Palette */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand-50: #f0fdfa;
    --brand-100: #ccfbf1;
    --brand-200: #99f6e4;
    --brand-300: #5eead4;
    --brand-400: #2dd4bf;
    --brand-500: #008080; /* Standard HTML/CSS Teal */
    --brand-600: #008080;
    --brand-700: #006666;
    --brand-800: #004d4d;
    --brand-900: #003333;
    --brand-950: #001a1a;
    --red-600: #ff0000;   /* Standard HTML/CSS Red */
    --accent-orange: #f59e0b;
}

/* Custom Scrollbar Toàn Cục - Áp dụng cho MỌI phần tử trên toàn bộ hệ thống (TUYỆT ĐỐI KHÔNG HIỆN MẶC ĐỊNH) */
* {
    scrollbar-width: thin;
    scrollbar-color: #008080 #f1f5f9;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 9999px;
}

*::-webkit-scrollbar-thumb {
    background: #008080;
    border-radius: 9999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #006666;
}

*::-webkit-scrollbar-corner {
    background: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Gradients based on Teal */
.gradient-hero {
    background: radial-gradient(circle at 15% 20%, rgba(0, 128, 128, 0.15) 0%, rgba(255, 255, 255, 1) 85%),
                linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.gradient-primary {
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
}

.gradient-primary:hover {
    background: linear-gradient(135deg, #009999 0%, #004d4d 100%);
}

.gradient-teal-dark {
    background: linear-gradient(135deg, #001a1a 0%, #003333 100%);
}

.gradient-badge {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.15) 0%, rgba(0, 128, 128, 0.05) 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(153, 246, 228, 0.6);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 128, 128, 0.15), 0 8px 10px -6px rgba(0, 128, 128, 0.1);
}

.floating-button-glow {
    box-shadow: 0 0 20px rgba(0, 128, 128, 0.45);
}

/* Quick contact widgets */
.quick-contact-badge {
    animation: pulseGlow 2.2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0, 128, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 128, 128, 0);
    }
}

/* Custom scrollbar for wide tables */
.custom-scrollbar::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #008080;
    border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #006666;
}
