.upload-section {
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  text-align: center;
}

.upload-section1 {
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  text-align: center;
}

.upload-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed #007bff;
  border-radius: 5px;
  background-color: rgba(240, 240, 240, 0.8);
  cursor: pointer;
  position: relative;
  margin: 0px;
  vertical-align: top;
}

.upload-box1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed #007bff;
  border-radius: 5px;
  background-color: rgba(240, 240, 240, 0.8);
  cursor: pointer;
  position: relative;
  margin: 0px;
  vertical-align: top;
}

.upload-box i {
  font-size: 24px;
  color: #007bff;
}

.uploaded {
  border: 2px solid black;
}
.upload-section .main-box {
  width: 250px !important;
  height: 250px !important;
  margin: 5px;
  display: inline-flex;
}

.upload-section .upload-box {
  width: 150px;
  height: 150px;
  margin: 5px;
  display: inline-flex;
}

.upload-section1 .main-box1 {
  width: 200px !important;
  height: 200px !important;
  margin: 5px;
  display: inline-flex;
}

.upload-section1 .upload-box1 {
  width: 100px;
  height: 100px;
  margin: 2px;
  display: inline-flex;
}

.crop-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.crop-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crop-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.image-result {
  margin-top: 20px;
  text-align: center;
}

button {
  padding: 8px 12px;
  border: none;
  background-color: #0062cc;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0049a1;
}

.crop-buttons i {
  color: #0062cc;
  font-size: 24px;
  cursor: pointer;
  margin: 5px;
}

.crop-buttons i:hover {
  color: #0049a1;
}

.page-content-wrapper {
  height: 100vh;
  overflow-y: scroll;
  flex-direction: column;
  padding-bottom: 20px; /* Extra padding for space at the bottom */
  box-sizing: border-box;
  margin: 0 8%;
  padding-top: 2rem;
}
/* Hide scrollbar for Webkit browsers */
.page-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for other browsers */
.page-content-wrapper {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}