

#ssj_container {
  background: #ffffffee;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 800px;
}

#ssj_title {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

#ssj_input_area input {
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}

#ssj_input_area button {
  width: 100%;
  background: linear-gradient(90deg, #43cea2, #185a9d);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

#ssj_input_area button:hover {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transform: scale(1.05);
}

#ssj_buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

#ssj_buttons button {
  flex: 1 1 30%;
  background: linear-gradient(90deg, #ff9966, #ff5e62);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

#ssj_buttons button:hover {
  background: linear-gradient(90deg, #43cea2, #185a9d);
  transform: scale(1.05);
}

#ssj_output {
  width: 100%;
  height: 300px;
  margin-top: 15px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  font-size: 14px;
  font-family: monospace;
}

@media (max-width: 600px) {
  #ssj_buttons {
    flex-direction: column;
  }
  #ssj_buttons button {
    flex: 1 1 100%;
  }
}
