.upload-img-block{
    height: 150px;
    width: 100%;
}

.cancel-position{
    position: absolute;
    top: 0;
    right: 20px;
    border-radius: 10px;
}

.cancel-button{
    border-radius: 10px;
    font-size: 10px;
    background: red;
    color: white;
    border: aliceblue;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Apply the animation to the image */
.spin-image {
  animation: spin 2s linear infinite;
}