Reformatting

This commit is contained in:
jheaps
2025-10-09 11:35:54 -06:00
parent 9269e806b2
commit f59f90c179
5 changed files with 151 additions and 15 deletions
@@ -49,6 +49,34 @@
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
/* Upload Progress Bar */
#upload-progress {
margin: 15px 0;
}
.progress-bar {
width: 100%;
height: 30px;
background: #f0f0f0;
border-radius: 15px;
overflow: hidden;
margin-bottom: 10px;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
transition: width 0.3s ease;
width: 0%;
}
.progress-text {
text-align: center;
font-size: 14px;
color: #555;
font-weight: 500;
}
.upload-form-header {
display: flex;
justify-content: space-between;