#mp-upload-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    
    text-align: center;
}

#mp-upload-form .progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#mp-upload-form .progress-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ccc;
    transform: translateY(-50%);
    z-index: 0;
}

#mp-upload-form .step {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ccc;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
}

#mp-upload-form .step.active {
    background: #17206f;
}

#mp-upload-form .step-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    margin-top: 20px; /* Space between progress bar and content */
}

#mp-upload-form .step-content.active {
    display: block;
}

#mp-upload-form .step-content#step-1 {
    display: block;
}

#mp-upload-form input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding does not affect width */
}

#mp-upload-form button {
    background: #3cc8eb;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 30px; /* Space above buttons */
}

#mp-upload-form button:hover {
    background: #17206f;
}

#loading-spinner {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #17206f;
}

#mp-upload-form h5 {
    text-align: left;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 18px;
}

#mp-upload-form h4 {
    font-size: 20px;
}
