
        #tojpg {
            width: 100%;
          margin: 0 auto;
          text-align: center;
        }
        canvas {
          max-width: 100%;
          height: auto;
          cursor: crosshair;
          display: none;
          margin-bottom: 1em;
        }
        .color-entry {
          display: inline-block;
          margin-bottom: 20px;
          font-size: 1.2em;
          font-weight: bold;
          padding: 20px;
          border: dashed 3px #988574 !important;
          margin: 10px;
          border-radius: 5px;
        }
        .color-box {
          width: 100px;
          height: 30px;
          border: 1px solid #ccc;
        }
        #drop-zone {
          margin-bottom: 1em;
          padding: 2em;
          border: 3px dashed #988574;
          background-color: #fff;
          color: #666;
        }
        #select-button {
            width: 200px;
            height: 60px;
            font-weight: bold;
            font-size: 1.3em;
          margin-top: 1em;
          padding: 0.5em 1em;
          border: none;
          background-color: #988574;
          color: white;
          border-radius: 4px;
          cursor: pointer;
        }
        #select-button:hover {
          background-color: #c0ad9d;
        }
        .colorstitle{
            font-size: 1.3em;
            font-weight: bold;
        }

        .piclist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
#download-button{
  width: 100%;
  height: 60px;
            background-color: #988574;
            color: #e6f4ec;
            border: 2px solid #988574;
            font-size: 1.3em;
            font-weight: bold;
            border-radius: 10px;
}
#download-button:hover,
#download-button:active{
  background-color: #af9e8e;
  color: #d2e7db;
}

.piclist .thumb {
  width: 180px;
  height: 180px;
  border: 2px solid #988574;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.piclist .thumb img {
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(216, 90, 132, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.remove-btn:hover{
  background: rgba(228, 107, 147, 0.8);
}