body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f0f0f5;
  text-align: center;
}

header {
  background: #4a90e2;
  color: white;
  padding: 20px;
}

#editor, #converters {
  background: #4a90e2;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 900px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: relative;
}

#downloadLink {
    position: absolute;
    top: 127px;
    left: 298px;
    color: #000;
    background: #efefef;
    font-size: 13px;
    padding: 2px 6px;
    text-decoration: none;
    border: 1px solid #696565;
}

#thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}

.thumbnail {
  position: relative;
  margin: 10px;
}

.thumbnail img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 6px;
}

.thumbnail div {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.thumbnail button {
  padding: 4px 6px;
  font-size: 12px;
}

#editor-canvas {
  display: block;
  margin: 20px auto;
  background: #fff;
  border: 2px solid #ccc;
  width: 100%;
  max-width: 600px;
  
}

.controls button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  background: #0661cc;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.controls button:hover {
  background: #357ABD;
}
