/* Global body style update */
body {
  background-color: #f7f7f7;
  font-family: Arial, sans-serif;
}

/* Container and Card Styles */
.container-response {
  max-width: 1250px;
  margin: 1rem auto;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card {
  border: none;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Format Container and Buttons */
.format-container {
  position: relative;
}
.format-btn {
  white-space: nowrap;
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #553c9a, #ee4b2b);
  color: white;
}

/* Spinner Styles */
.spinner-border {
  width: 1.2rem;
  height: 1.2rem;
  border-width: 0.2em;
}

/* Hide scrollbar for overflow containers */
::-webkit-scrollbar {
  width: 0px;
}

/* Relative container for dice icon */
.relative-container {
  position: relative;
}
.dice-reason {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  /* Updated color to black */
  color: #000;
  font-size: 1.2em;
  background: transparent;
  border: none;
}

/* Additional UI styling */
#responseOutput {
  min-height: 150px;
}
.copy-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  color: rgb(199, 46, 46);
}
.action-buttons .btn {
  min-width: 90px;
}

.step {
background-color: #f9f9f9;
padding: 20px;
}
@media screen and (max-width: 768px) {
.step {
padding: 15px;
margin-bottom: 20px;
max-width: 100%;
overflow-x: hidden;
}
}
.step-description {
font-size: 16px;
color: #666;
}
