.submit-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.photoUpload {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.preview-image {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-image img {
    max-width: 100%;
    max-height: 100%;
}

.image-cancel {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #ccc;
    padding: 2px 3px;
}

.image-cancel:hover {
    background: #ff0000;
    color: white;
}
