@import "tailwindcss";

:root {
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --accent: #6366f1;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: #020617;
    color: white;
    -webkit-font-smoothing: antialiased;
}

.font-display {
    font-family: var(--font-display);
}

.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}

.glass-vibrant {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-border {
    border: 1px solid rgba(129, 140, 248, 0.5);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2), inset 0 0 20px rgba(99, 102, 241, 0.1);
}

.glossy {
    position: relative;
    overflow: hidden;
}

.glossy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%);
    transform: rotate(30deg);
    pointer-events: none;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

@keyframes progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.animate-progress {
    animation: progress 2s infinite ease-in-out;
}

/* Notion-like Table Styles */
table {
    border-spacing: 0;
}

th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

tr:last-child td {
    border-bottom: none;
}

/* Form Controls */
select,
input,
textarea {
    background: transparent;
    border: none;
    outline: none;
}