/* generator.css */
.thecool-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  box-sizing: border-box;
}

.pmtc-input-container-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pmtc-input-container {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 12px;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.pmtc-input-container input {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  background-color: #f9f9f9;
}

.pmtc-input-container input:focus {
  border-color: #3f51b5;
}

.pmtc-size-container {
  width: 100%;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pmtc-size-container label {
  margin-right: 10px;
  font-weight: 600;
  color: #333333;
}

.pmtc-size-container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 200px;
  height: 5px;
  background: #e0e0e0;
  outline: none;
  opacity: 0.9;
  transition: opacity 0.2s;
  border-radius: 8px;
}

.pmtc-size-container input[type="range"]:hover {
  opacity: 1;
}

.pmtc-size-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #3f51b5;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.pmtc-size-container input[type="range"]::-webkit-slider-thumb:hover {
  background-color: #303f9f;
}

.pmtc-output-container {
  width: 100%;
  margin: 20px 0;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.pmtc-font-label {
  margin-top: 15px;
  font-weight: bold;
  color: #3f51b5;
}

.pmtc-font-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.pmtc-font-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.pmtc-font-item span {
  font-size: 18px;
  flex: 1;
  color: #333333;
}

.pmtc-font-item::after {
  content: "Copy";
  padding: 8px 16px;
  background-color: #3f51b5;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pmtc-font-item:active::after,
.pmtc-font-item.copied::after {
  background-color: #303f9f;
}

.pmtc-font-item.copied::after {
  content: "Copied";
}
