/* Toast Container */
#sianovision-toast-container {
    position: fixed;
    top: 32px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toast Item */
.sianovision-toast {
    position: relative;
    width: 300px;
    background: #fff;
    border-left: 4px solid #2271b1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    overflow: hidden;
    animation: svaToastSlideIn 0.3s ease-out;
}

.sianovision-toast.sva-toast-error {
    border-left-color: #d63638;
}

.sianovision-toast.sva-toast-success {
    border-left-color: #00a32a;
}

/* Toast Content */
.sva-toast-icon {
    font-size: 20px;
    line-height: 1;
}

.sva-toast-message {
    font-size: 14px;
    color: #1d2327;
    line-height: 1.4;
    flex: 1;
}

/* Progress Bar */
.sva-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0,0,0,0.1);
    width: 100%;
}

.sva-toast-bar {
    height: 100%;
    background: #2271b1;
    width: 100%;
    transform-origin: left;
    animation: svaToastProgress 3s linear forwards;
}

.sva-toast-error .sva-toast-bar {
    background: #d63638;
}

.sva-toast-success .sva-toast-bar {
    background: #00a32a;
}

/* Animations */
@keyframes svaToastSlideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes svaToastProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.sva-toast-fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in;
}
