/* Modern Styling Elements */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #09090b;
}

.glass-panel {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Custom native input removing arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Tooltips basic visual hint */
.tooltip-trigger {
    cursor: help;
    border-bottom: 1px dotted rgba(148, 163, 184, 0.5);
}

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

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

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

/* Pulse animation for ambient gradients */
@keyframes pulse-slow {

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

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

/* Print specific for PDF export */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .fixed,
    header,
    button {
        display: none !important;
    }

    .glass-panel {
        background: white !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
        color: black !important;
        break-inside: avoid;
    }

    .text-white,
    .text-textMain {
        color: #0f172a !important;
    }

    .text-textMuted {
        color: #64748b !important;
    }

    .text-primary {
        color: #4f46e5 !important;
    }

    .text-secondary {
        color: #db2777 !important;
    }

    .text-accent {
        color: #0284c7 !important;
    }

    .text-success {
        color: #059669 !important;
    }

    .text-danger {
        color: #e11d48 !important;
    }

    .bg-clip-text {
        background: none !important;
        -webkit-text-fill-color: initial !important;
        color: #4f46e5 !important;
    }
}