/* Base CSS Variables & Animations */

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

select option {
    background-color: #112D32;
    color: white;
}

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #2A5D66;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00CEC9;
}

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

    .bg-surface,
    .bg-background {
        background: white !important;
        border-color: #e2e8f0 !important;
    }

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

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

    .bg-gradient-to-r,
    .bg-gradient-to-br,
    .bg-gradient-to-b {
        background: none !important;
    }

    .border-border {
        border-color: #e2e8f0 !important;
    }

    header,
    button {
        display: none !important;
    }

    /* Enforce some dark mode text colors that need visibility */
    .text-primary {
        color: #009c98 !important;
    }

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

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