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

/* Hide native number input 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;
}

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

.tooltip-trigger {
    cursor: help;
    border-bottom: 1px dotted rgba(161, 161, 170, 0.5);
    /* zinc-400 */
}

/* Method Card state */
.method-card.inactive {
    opacity: 0.6;
    filter: grayscale(80%);
}

.method-card.inactive input {
    pointer-events: none;
}

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

    .absolute,
    header,
    button,
    .hidden,
    .md\:hidden {
        display: none !important;
    }

    .glass-panel,
    .bg-background\/50,
    .bg-surface\/50 {
        background: white !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
    }

    input {
        background: transparent !important;
        color: black !important;
        border: 1px solid #cbd5e1 !important;
    }

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

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

    .text-primary {
        color: #8b5cf6 !important;
    }

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

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

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

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

    /* Keep layout mostly intact */
    .grid {
        display: grid !important;
        gap: 1.5rem !important;
    }

    .grid-cols-1.lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}