#image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  padding: 10px 0;
}

.image-preview {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-preview label {
  font-weight: bold;
  margin-bottom: 6px;
}

.image-preview canvas {
  max-width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.image-preview select {
  margin: 4px;
  padding: 4px 6px;
  font-size: 14px;
}

.image-preview button {
  margin: 4px;
  padding: 4px 10px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #888;
  background-color: #007bff;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

.image-preview button:hover {
  background-color: #e2e2e2;
}

.remove-btn {
  background-color: #ffe0e0;
  border-color: #ff9999;
}

.remove-btn:hover {
  background-color: #ffc0c0;
}

button,
.controls button,
#download-pdf-button {
  font-size: 14px;
  padding: 6px 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.control {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s ease-in-out;
}


#download-pdf-button:hover {
  background-color: #0056b3;
}
