@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
}
.app-status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}
.status-installed { background-color: #d1fae5; color: #059669; } /* Green */
.status-request { background-color: #bfdbfe; color: #2563eb; }   /* Blue */
.status-pending { background-color: #fef3c7; color: #d97706; }   /* Yellow */
.status-na { background-color: #e5e7eb; color: #6b7280; }       /* Gray */

/* Custom scrollbar for filtering panel on desktop */
.custom-scroll::-webkit-scrollbar { width: 4px; }
.custom-scroll::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 2px; }