
.container-json-formatter {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 800px;
}
textarea {
  width: 100%;
  height: 500px;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  font-family: monospace;
}
.buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.buttonClass {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.format-btn {
  background-color: #007bff;
  color: white;
}
.format-btn:hover {
  background-color: #0056b3;
}
.copy-btn {
  background-color: #28a745;
  color: white;
}
.copy-btn:hover {
  background-color: #1e7e34;
}
.clear-btn {
  background-color: #dc3545;
  color: white;
}
.clear-btn:hover {
  background-color: #c82333;
}
.error {
  color: red;
  margin-top: 10px;
  font-weight: bold;
  min-height: 20px;
}
.success {
  color: green;
  margin-top: 10px;
  font-weight: bold;
  min-height: 20px;
}



@media (max-width: 890px) {
  .container-passwrod-generator {
    
    width: 90%;
  }

  .innerPageContainer{
    padding: 30px 10px;
  }
}