/* FluxenAT Premium Notifications */
.fluxen-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    pointer-events: none;
}

.fluxen-toast {
    width: 350px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

.fluxen-toast.show {
    transform: translateX(0);
}

.fluxen-toast.hide {
    transform: translateX(120%);
}

.fluxen-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fluxen-toast-content {
    flex-grow: 1;
}

.fluxen-toast-title {
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.fluxen-toast-msg {
    color: #94a3b8;
    font-size: 12px;
}

.fluxen-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform-origin: left;
}

/* Types */
.toast-success { border-left: 4px solid #10b981; }
.toast-success .fluxen-toast-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.toast-success .fluxen-toast-progress { background: #10b981; }

.toast-error { border-left: 4px solid #f43f5e; }
.toast-error .fluxen-toast-icon { background: rgba(244, 63, 94, 0.1); color: #f43f5e; }
.toast-error .fluxen-toast-progress { background: #f43f5e; }

.toast-info { border-left: 4px solid #6366f1; }
.toast-info .fluxen-toast-icon { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.toast-info .fluxen-toast-progress { background: #6366f1; }

@keyframes progress-shrink {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}
