@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: #f3f4f6;
    -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Hide scrollbar for clean look */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slide in animation */
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-slide-in {
    animation: slideIn 0.3s ease-out forwards;
}

/* Bottom navigation styling */
.nav-item {
    transition: color 0.2s ease, transform 0.2s ease;
}
.nav-item.active {
    color: #4f46e5;
}
.nav-item:active {
    transform: scale(0.95);
}

/* Mobile container wrapper */
#app-container {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Checkbox customizations */
.custom-checkbox {
    accent-color: #4f46e5;
    width: 1.25rem;
    height: 1.25rem;
}

/* Status colors */
.status-good { color: #10b981; }
.status-okay { color: #f59e0b; }
.status-concern { color: #ef4444; }

.status-bg-good { background-color: #d1fae5; color: #065f46; }
.status-bg-okay { background-color: #fef3c7; color: #92400e; }
.status-bg-concern { background-color: #fee2e2; color: #991b1b; }
