

/* Start:/products/online/json-decode/style.css?17772079076439*/
.hash256-page {
  color: #fff;
}

.hash256-page h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.hash256-page .generator-section {
  margin: 40px 0;
}

.hash256-page .input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  align-items: center;
}

.hash256-page .text-input,
.hash256-page .json-input {
  width: 100%;
  max-width: 700px;
  padding: 24px 24px 50px;
  background: #17191c4d;
  border: 1px solid #3e3e3e;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "Courier New", monospace;
}

.hash256-page .json-input {
  min-height: 220px;
  resize: vertical;
  padding-bottom: 24px;
}

.hash256-page .text-input:focus,
.hash256-page .json-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.hash256-page .generate-btn {
  width: auto;
  max-width: 700px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.hash256-page .generate-btn .generate-icon {
  flex: 0 0 auto;
  display: block;
}

.hash256-page .generate-btn .generate-text {
  display: inline-block;
}

.hash256-page .generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 162, 230, 0.28);
}

.hash256-page .generate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hash256-page .loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: jsondecode-spin 1s linear infinite;
}

@keyframes jsondecode-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hash256-page .instructions {
  text-align: center;
  margin: 90px 0;
}

.hash256-page h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2rem;
}

.hash256-page h3 {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.hash256-page .instructions p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 14px;
}

.hash256-page .result-section {
  color: #fff;
  padding: 0;
  margin-top: 20px;
  display: none;
}

.hash256-page .result-section.active {
  display: block;
  animation: jsondecode-fadeIn 0.5s ease;
}

@keyframes jsondecode-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hash256-page .json-stats {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hash256-page .stat-item {
  min-width: 160px;
  background: #17191c4d;
  border: 1px solid #3e3e3e;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 16px;
  text-align: center;
}

.hash256-page .stat-value {
  font-weight: 800;
  color: #fff;
  font-size: 1.3rem;
}

.hash256-page .stat-label {
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hash256-page .json-display {
  background: #17191c4d;
  border: none;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 18px;
  margin-bottom: 20px;
  font-family: "Courier New", monospace;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 1.05rem;
  color: #fff;
  text-align: left;
  overflow: auto;
  max-height: min(760px, 72vh);
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255, 255, 255, 0.35) rgba(255, 255, 255, 0.12); /* Firefox */
}

.hash256-page .json-display::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.hash256-page .json-display::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
}

.hash256-page .json-display::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}

.hash256-page .json-display::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.40);
  background-clip: padding-box;
}

.hash256-page .result-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hash256-page .action-btn {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hash256-page .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.hash256-page .btn-icon {
  display: block;
}

.hash256-page .copy-btn {
  background: #ffffff33;
  color: #fff;
}

.hash256-page .download-btn {
  background: var(--accent);
  color: #fff;
}

.hash256-page .clear-btn {
  background: #ffffff1f;
  color: #fff;
}

.hash256-page .action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hash256-page .copy-btn.is-success {
  background: #2E7D32;
}

.hash256-page .error-message {
  color: #dc3545;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 5px;
  display: none;
}

.hash256-page .example-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.hash256-page .example-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hash256-page .example-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hash256-page h1 {
    font-size: 2.5rem;
  }

  .hash256-page .generate-btn {
    width: 100%;
  }

  .hash256-page .stat-item {
    width: 100%;
    min-width: 0;
  }

  .hash256-page .result-actions {
    flex-wrap: wrap;
  }

  .hash256-page .json-display {
    max-height: min(560px, 70vh);
  }
}


/* End */
/* /products/online/json-decode/style.css?17772079076439 */
