/* Base transitions and fonts */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #e7e8e9;
}

/* Glassmorphism custom card borders and glows */
.glass-panel {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Custom Scrollbar for sleek dark look */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 42, 24, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 241, 184, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 241, 177, 0.6);
}

/* Tab Navigation State Styles */
.nav-tab-active {
    background-color: lab(47.0329% -47.0239 31.4788);
    color: lab(92.4222% -26.4702 12.9427);
    border: 1px solid lab(37.4616% -36.7971 22.9692);
    box-shadow: 0 4px 12px -2px hsla(122, 81%, 15%, 0.15);
}

.nav-tab-inactive {
    color: lab(37.4616% -36.7971 22.9692);
    border: 1px solid transparent;
}

.nav-tab-inactive:hover {
    color: lab(37.4616% -36.7971 22.9692);
    background-color: lab(92.4222% -26.4702 12.9427);
    box-shadow: 0 4px 12px -2px hsla(122, 81%, 15%, 0.15);
}

/* Toast Notifications Animation */
.toast-enter {
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.toast-leave {
    animation: slideOut 0.2s ease-in forwards;
}

@keyframes slideOut {
    to {
        transform: translateY(-10px) scale(0.95);
        opacity: 0;
    }
}

/* Mobile Active Tabs */
.mobile-tab-active {
    color: lab(47.0329% -47.0239 31.4788);
}

/* Codeblock formatting */
pre {
    scrollbar-width: thin;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}