/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(30, 33, 48, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* HTMX Indicator */
.htmx-request#loading-overlay {
    display: flex !important;
    opacity: 1 !important;
}

/* Drag Active State */
.drop-zone.drag-active {
    border-color: #6875f5 !important;
    background-color: rgba(104, 117, 245, 0.1) !important;
    transform: scale(1.02);
}
