#toast-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    min-width: 300px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.visible {
    transform: translateX(0);
}
.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.toast-success .toast-icon { background: #e6f4ea; color: #1e8e3e; }
.toast-error .toast-icon { background: #fce8e6; color: #d93025; }
.toast-info .toast-icon { background: #e8f0fe; color: #1a73e8; }
.toast-content {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}