Spaces:
Paused
Paused
| .upload-card { | |
| width: 320px; /* 🔥 FIX right-side width issue */ | |
| background: #020617; | |
| padding: 20px; | |
| border-radius: 18px; | |
| color: white; | |
| box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); | |
| } | |
| .upload-card h3 { | |
| margin-bottom: 4px; | |
| } | |
| .sub { | |
| font-size: 14px; | |
| color: #94a3b8; | |
| margin-bottom: 16px; | |
| } | |
| .dropzone { | |
| position: relative; | |
| border: 2px dashed #334155; | |
| border-radius: 16px; | |
| padding: 30px; | |
| text-align: center; | |
| background: #020617; | |
| margin-bottom: 16px; | |
| } | |
| .dropzone input { | |
| position: absolute; | |
| inset: 0; | |
| opacity: 0; | |
| cursor: pointer; | |
| } | |
| .file-box { | |
| background: #020617; | |
| padding: 12px; | |
| border-radius: 12px; | |
| } | |
| .file-row { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .file-row p { | |
| font-size: 12px; | |
| color: #94a3b8; | |
| } | |
| .percent { | |
| color: #22d3ee; | |
| font-weight: bold; | |
| } | |
| .progress-bar { | |
| margin-top: 8px; | |
| height: 4px; | |
| background: #1e293b; | |
| border-radius: 999px; | |
| } | |
| .progress { | |
| height: 100%; | |
| background: linear-gradient(to right, #06b6d4, #0ea5e9); | |
| border-radius: 999px; | |
| transition: width 0.4s ease; | |
| } | |
| .clear-btn { | |
| margin-top: 12px; | |
| width: 100%; | |
| padding: 10px; | |
| border-radius: 12px; | |
| background: #0f172a; | |
| color: white; | |
| border: none; | |
| cursor: pointer; | |
| } | |
| .clear-btn:hover { | |
| background: #1e293b; | |
| } | |