.FreeMockUp {
  max-width: 400px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.FreeMockUp h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.FreeMockUp label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}


.FreeMockUp input[type="radio"] {
  display: none;
}

.FreeMockUp input[type="radio"]:checked + .color-box {
  border: 3px solid #007bff;
}

.FreeMockUp button.generate-btn {
  width: 75%;
  padding: 10px;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.FreeMockUp button.generate-btn:hover {
  background-color: #0056b3;
  
}

.FreeMockUp .mockup-preview {
  margin-top: 20px;
  text-align: center;
  border: 1px dashed #ccc;
  padding: 15px;
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-style: italic;
  overflow: hidden;
}

.FreeMockUp .powered-by {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

/*.dashed-box {
    border: 2px solid red; /* For debugging purposes 
}
*/



.color-picker {
    display: flex;
    gap: 10px;
    margin: 20px 0; /* Space above and below the color picker */
}

.color-option {
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: transform 0.2s, border 0.2s;
}

.color-option:hover {
    transform: scale(1.1);
    border: 2px solid #000;
}

/* Highlight the selected color */
.color-option.active {
    border: 2px solid #000;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

