@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0f19;
    color: #e2e8f0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Glassmorphism & Cards */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Micro-animations */
.hover-scale {
    transition: all 0.2s ease-in-out;
}
.hover-scale:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Gradients */
.bg-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}
.bg-gradient-emerald {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}
.bg-gradient-rose {
    background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
}
.bg-gradient-violet {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

/* Table styling for dark theme */
.custom-table th {
    background-color: #1e293b;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.custom-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.custom-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}
