/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
    /* slate-950 */
}

::-webkit-scrollbar-thumb {
    background: #334155;
    /* slate-700 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
    /* slate-600 */
}

/* Hide Number Input Spin Buttons */
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;
    /* Firefox */
    appearance: textfield;
    /* Standard */
}

body {
    background:
        radial-gradient(1200px 600px at 15% 35%,
            hsl(152 45% 28% / 0.55) 0%,
            hsl(152 45% 22% / 0.35) 35%,
            transparent 65%),
        linear-gradient(135deg,
            hsl(152 45% 18%) 0%,
            hsl(152 45% 22%) 35%,
            hsl(210 40% 12%) 100%);
}