.container-website-screenshot {
  font-family: Arial, sans-serif;
  background-color: #ffefce;
  margin: 0;
  padding: 40px 10px;
  color: #fff;
}
.container-website-screenshot .containerr {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.container-website-screenshot .card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  flex: 1;
  min-width: 300px;
  color: #333;
}
.container-website-screenshot h2 {
  margin-top: 0;
  font-size: 22px;
  color: #1e1e1e;
}
.container-website-screenshot label {
  display: block;
  margin: 10px 0 5px;
}
.container-website-screenshot input, .container-website-screenshot select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #facf7e;
  background-color: #fff4df;
}
.container-website-screenshot input[type=range] {
  width: 100%;
  accent-color: #de9406;
  height: 6px;
  background: #fff4df;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 0;
}
.container-website-screenshot input#noads, .container-website-screenshot input#usproxy, .container-website-screenshot input#fullsize {
  width: 20px;
  accent-color: #de9406;
}
.container-website-screenshot label:has(input) {
  display: flex !important;
  justify-content: space-between;
}

.container-website-screenshot input[type=range]:focus::-webkit-slider-thumb {
  background: #ffc14e;
}

.container-website-screenshot input[type=range]:focus::-moz-range-thumb {
  background: #b67c11;
}

.container-website-screenshot input[type=range]:focus::-ms-thumb {
  background: #b67c11;
}

.container-website-screenshot input[type=range]::-ms-fill-lower {
  background: #facf7e;
  border-radius: 5px;
}
.container-website-screenshot input[type=range]::-ms-fill-upper {
  background: #facf7e;
  border-radius: 5px;
}
.container-website-screenshot input[type=range]:focus {
  outline: none;
}
.container-website-screenshot button {
  background-color: #DE9406;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
.container-website-screenshot button:hover {
  background-color: #b67c11;
}
.container-website-screenshot #preview {
  background: #fff7e6;
  height: 600px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 24px;
  color: #999;
  flex-direction: column;
  overflow-y: auto;
}
.container-website-screenshot .loader {
  border: 6px solid #ffffff;
  border-top: 6px solid #de9406;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
.container-website-screenshot .download-btn {
  margin-top: 20px;
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}