/* Noctua custom styles */

/* Drag-and-drop zone */
.drop-zone {
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.drop-zone-active {
    border-color: rgb(168, 85, 247) !important;
    background-color: rgba(168, 85, 247, 0.05) !important;
}

/* HTMX indicator visibility */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: block;
}

/* Smooth fade-in for report cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-nyx-800 {
    animation: fadeInUp 0.3s ease-out;
}

/* Scrollbar styling for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0a1a;
}

::-webkit-scrollbar-thumb {
    background: #3b2662;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4c3380;
}
