.upload-limit-text{
font-size:13px;
color:#888;
margin-top:8px;
}
#toastContainer{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast{
    background: #333;
    color: white;
    padding: 12px 18px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 14px;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    opacity: 0;
    transform: translateX(50px);
}
.toast.show{
    opacity: 1;
    transform: translateX(0);
    transition: all .3s ease;
}

.toast.error{
    background:#e74c3c;
}

.toast.success{
    background:#27ae60;
}

.toast.warning{
    background:#f39c12;
}
.file-counter{
font-size:14px;
color:#666;
margin-bottom:5px;
}