.progress-bar {
    margin: 10px 0;
}
.progress-bar .bar {
    background: #eee;
    height: 20px;
    width: 100%;
    position: relative;
}
.progress-bar .fill {
    background: #ff0099;
    height: 100%;
    width: 0%;
    transition: width 0.3s;
}
.progress-bar.success .fill {
    background: #4CAF50;
}
.custom-file-label {
    background-color: #ff0099;
    color: white;
    padding: 7px 20px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background-color 0.3s;
    font-size:14px;
}

.custom-file-label:hover {
    background-color: #e60087;
}

#uploadButton {
    background-color: #ff0099;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px;
    font-size:14px;
    margin-bottom: 10px;
}

#uploadProgress {
    width: 90%;
}

#uploadButton:hover {
    background-color: #e60087;
}

#multi-upload-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.upload-complete {
    margin-top: 20px;
    padding: 10px;
    background: #e6ffe6;
    border: 1px solid #66cc66;
    color: #2d862d;
    font-weight: bold;
    border-radius: 6px;
}