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

body {
    font-family: 'Inter', sans-serif;
}

/* Glow effect for active tasks */
.glow-card {
    box-shadow: 0 4px 20px -5px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 4px 25px -5px rgba(66, 153, 225, 0.5);
}

/* Futuristic progress bar */
.progress-container {
    height: 8px;
    border-radius: 4px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shine 2s infinite;
}

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

/* Holographic effect for table rows */
.table-row-hover:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px -5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}