.toast-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1100;
}

.toast {
    min-width: 260px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(12,27,51,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    animation: toast-in 240ms ease forwards;
}

.toast__message {
    font-size: 0.95rem;
    margin-right: 16px;
}

.toast__close {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
}

.toast--success {
    border-color: rgba(244,197,66,0.8);
}

.toast--warning {
    border-color: #f08d49;
}

.toast--critical {
    border-color: #ff5c73;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
