body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
}

.container {
  max-width: 500px;
  margin: auto;
  padding-bottom: 80px; /* spațiu suplimentar pentru bara de pe mobil */
}

button {
  padding: 10px 20px;
  margin-top: 15px;
  font-size: 16px;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:disabled {
  background-color: #777;
  cursor: not-allowed;
}

.image-container {
  margin-top: 20px;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px dashed #ccc;
  background-color: #fff;
  overflow: hidden;
}

#image {
  max-width: 100%;
  max-height: 100%;
  display: none;
  object-fit: contain;
}

.placeholder-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  border: 2px dashed #bbb;
  box-sizing: border-box;
}

.final-image-wrapper {
  margin-top: 30px;
}

#finalImage {
  max-width: 100%;
  border-radius: 12px;
}

#download {
  margin-top: 15px;
}

#iphoneTip {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}