/* ============================================================
   AndyNope App Store – Minimales CSS (Tailwind übernimmt den Rest)
   ============================================================ */

/* Scrollbar ausblenden (Kategorieleiste, Screenshots) */
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* Drag-over Zustand für Upload-Zonen (per JS gesetzt) */
.drag-over {
    border-color: #01875f !important;
    background-color: #e6f4f0 !important;
    color: #01875f !important;
}

/* Lightbox – per JS via .active eingeblendet */
#lightbox { display: none; }
#lightbox.active { display: flex; }
