/*Log Prompt Generator Code*/

.lpg-generator {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  margin: 20px auto;
  font-family: system-ui, sans-serif;
}
.lpg-generator h2 {
  font-size: 26px;
  color: #222;
  text-align: center;
  margin: 10px 0 30px;
}
.lpg-generator h3 {
  font-size: 20px;
  color: #000;
  margin: 20px 0 10px;
  text-align: left;
}
.lpg-generator label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}
.lpg-generator input[type="text"],
.lpg-generator select,
.lpg-generator textarea {
  width: 100% !important;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
}
.font-style-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 16px;
  margin-top: 10px;
}
.font-style-option {
  width: 30%;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}
.font-style-option input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.4);
}
.font-style-option.selected {
  border-color: #ed2f60;
  background-color: #fff0f5;
}

.lpg-generator input {
    width: auto !important;
}

.font-serif { font-family: 'Georgia', serif; }
.font-sans-serif { font-family: 'Arial', sans-serif; }
.font-script { font-family: 'Brush Script MT', cursive; }
.font-handwritten { font-family: 'Comic Sans MS', cursive; }
.font-display { font-family: 'Impact', fantasy; }

.visual-style {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.color-picker-block {
  display: flex;
  flex-direction: column;
  width: 48%;
}
.color-picker-block input[type="color"] {
  width: 100%;
  height: 48px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 4px;
}
.color-picker-block input[type="text"] {
  background: #eee;
  text-align: center;
  border: none;
  font-size: 14px;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}
.slider-group input[type="range"] {
  width: 100%;
  margin: 4px 0;
  height: 4px;
  accent-color: #ed2f60;
}

.lpg-actions {
  margin-top: 20px;
}
.lpg-actions button {
  background: #ed2f60;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
#lpg-output {
  margin-top: 30px;
}
#lpg-output textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fdfdfd;
  font-family: monospace;
}
.slider-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slider-control {
  display: flex;
  flex-direction: column;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.slider-group input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: #ed2f60;
}
.color-picker-block input[type="color"] {
  width: 100%;
  height: 72px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 0;
}
.color-picker-block input[type="text"] {
  display: none;
}


.slider-group input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background: #ed2f60;
  border: 2px solid #bd1943;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ed2f60;
  border: 2px solid #bd1943;
  border-radius: 50%;
  cursor: pointer;
}

.slider-group input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  background: #ddd;
  border-radius: 3px;
  margin: 0;
  padding: 0;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background: #ed2f60;
  border: 2px solid #bd1943;
  border-radius: 50%;
  margin-top: -8px;
  appearance: none;
  cursor: pointer;
  position: relative;
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ed2f60;
  border: 2px solid #bd1943;
  border-radius: 50%;
  cursor: pointer;
}
.slider-group input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  background: #ed2f60;
  border: none;
  border-radius: 50%;
  margin-top: -10px;
  appearance: none;
  cursor: pointer;
  position: relative;
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #ed2f60;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.slider-group input[type="range"]::-webkit-slider-thumb {
  margin-top: -6px !important;
}

.slider-group input[type="range"]::-moz-range-thumb {
  margin-top: -6px !important;
}
.slider-group input[type="range"]::-webkit-slider-thumb {
  margin-top: -4px !important;
}

.slider-group input[type="range"]::-moz-range-thumb {
  margin-top: -4px !important;
}