/* Flat background styles */

.aura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #212121;
}

/* Keep these selectors inert to fully disable legacy effects */
.aura-container::before,
.aura-container::after,
.aura-canvas,
.aura-noise,
.aura-noise-texture,
.aura-messages-overlay {
    display: none;
}

/* Minimalist Scrollbar Styles */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: background 0.2s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

#whatsappMessages {
    position: relative;
    z-index: 1;
}

#whatsappMessages > * {
    position: relative;
    z-index: 2;
}
