
#maestro-wrapper{max-width:680px;margin:auto;font-family:inherit}
.maestro-btn{background:#1e88e5;color:#fff;border:none;padding:8px 20px;border-radius:6px;cursor:pointer}
.maestro-drop{border:2px dashed #1e88e5;padding:50px;text-align:center;border-radius:8px;margin:10px 0;color:#555}
.maestro-drop.drag{background:#f3f9ff}
.bar{background:#e0e0e0;border-radius:4px;overflow:hidden;margin-top:4px}
.bar span{display:block;color:#fff;text-align:center;font-size:12px;width:0;height:14px;line-height:14px}

/* === Animated progress bar === */
.bar span{
  transition: width .4s ease;
  background: repeating-linear-gradient(45deg,#1e88e5 0px 10px,#1576cb 10px 20px);
  background-size:40px 40px;
  animation: maestro-move 1s linear infinite;
}
.bar span.complete{
  animation:none;
  background:#4caf50;
}
@keyframes maestro-move{
  from{background-position:0 0;}
  to{background-position:40px 0;}
}
.upload-item{margin-bottom:12px}
.status{margin:4px 0;font-size:14px;color:#555}

.maestro-toast{position:fixed;bottom:20px;right:20px;background:#4caf50;color:#fff;padding:10px 16px;border-radius:6px;font-weight:600;z-index:9999;opacity:0.95}
.maestro-toast.err{background:#f44336}
