h1 {
    font-size: 24px;
    text-align: center;
}

form {
    text-align: center;
    margin-top: 20px;
}

button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: darkgreen;
}
/*.upload-index-index .page-main{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}*/
.upload-index-index .page-main .column{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.upload-index-index .page-main .column.main{
    min-height: initial;
    padding: 0 30px;
}
.upload-index-index .page-title-wrapper{
    width: 100%;
    text-align: center;
}
.upload-index-index .page-title-wrapper h1{
    font-size: 22px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 0;
}
.customImageUploadPage{
    text-align: center;
}
.customImageUploadPage .btn-upload{
    position: relative;
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    height: 45px;
    min-width: 170px;
    cursor: pointer;
}
.customImageUploadPage .btn-upload input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.uploadedImages{
    display: flex;
    flex-wrap: wrap;
    max-height: 500px;
    overflow-y: auto;
}
.uploadedImages .upload-items{
    display: flex;
    align-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid #dddddd;
    padding: 3px;
    margin-right: 10px;
    list-style-type: none;
    justify-content: center;
    margin-bottom: 10px;
}
.uploadedImages .upload-items img{
    max-height: 100%;
    max-width: 100%;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid lightblue;
  border-right-color: orange;
  animation: l2 1s infinite linear;

  /* Centering styles */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes l2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}