#lk-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lk-toast {
    min-width: 280px;
    max-width: 380px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: lk-slide-in 0.3s ease forwards;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lk-toast-success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.lk-toast-error {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.lk-toast-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.lk-toast-message {
    flex: 1;
}

.lk-toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(255,255,255,0.4);
    animation: lk-progress 4s linear forwards;
}

@keyframes lk-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lk-progress {
    from { width: 100%; }
    to { width: 0%; }
}
.lk-toast.paused::after {
    animation-play-state: paused;
}
