
.app-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/*.left-panel,
.right-panel {
background: white;
border-radius: 20px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}*/

.joinUsContainer .app-wrapper {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 10px;
  max-width: 1020px;
  margin: 0 auto;
  gap: 0;
}

.left-panel {
  width: 55%;
  min-height: 300px;
  text-align: center;
}

.right-panel {
  width: 45%;
  min-height: 300px;
  text-align: center;
}

.step-label {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

#container {
  position: relative;
  margin-top: 10px;
  max-width: 100%;
  border: 2px dashed #ccc !important;
  border-radius: 12px;
  padding: 10px;
  display: none;
}

#mainImage {
  max-width: 100%;
  max-height: unset !important;
  border-radius: 10px;
  width: 100% !important;
}

.face-overlay {
  position: absolute;
  border: 1px solid #999;
  overflow: hidden;
  cursor: move;
  aspect-ratio: 1 / 1.26;
  z-index: 5;
  width: 120px;
  right: 0;
  top: 0;
}

.ui-resizable-handle.ui-resizable-s,
.ui-resizable-handle.ui-resizable-e {
  display: none !important;
}

.ui-resizable-handle.ui-resizable-se.ui-icon.ui-icon-gripsmall-diagonal-se {
  display: block;
  background: url(../img/face/resize-area.svg) no-repeat scroll center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.face-overlay img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  object-fit: contain;
}

.tools {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 4px;
  padding: 2px;
  z-index: 10;
}

.tools button {
  font-size: 12px;
  padding: 2px 6px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
}

.tools .remove-face {
  background: #ff4444;
  color: white;
}

/* Resize handles */
.ui-resizable-handle {
  width: 10px;
  height: 10px;
  background: #00783c;
  z-index: 20;
  position: absolute;
}

.ui-resizable-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
}

.ui-resizable-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}

.ui-resizable-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
}

.ui-resizable-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
}

span.removeUploadImage {
  display: block;
  left: 5px;
  top: 5px;
  position: absolute;
  z-index: 1;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* background-image: url(../img/face/close-circle-svgrepo-com.svg); */
  cursor: pointer;
}

#dropZone {
  margin-top: 10px;
  padding: 20px;
  border: 2px dashed #aaa;
  border-radius: 8px;
  color: #777;
  cursor: pointer;
}

#downloadBtn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #00783c;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#downloadBtn:hover {
  background-color: #4b8e36;
}

.face-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 180px;
    margin: 47px auto 0 auto;
}

.face-options img {
    width: 100%;
    display: block;
    margin: 0;
}

#previewImage {
  display: none !important;
}

input#imageUpload {
  display: block !important; 
  margin: 0 auto;
}