#guide-panel {
  position: fixed;
  top: 50px;
  right: 10px;
  width: 400px;
  min-height: 500px;
  color: white;
  font-family: Arial, sans-serif;
  padding: 10px 20px 10px 20px;
  background: #333;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: move;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#guide-header {
  font-weight: bold;
  cursor: grab;
  padding: 5px;
  background: #444;
  border-radius: 5px;
  text-align: center;
  color: white;
}
#steps-list {
  list-style: none;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}
#steps-list li {
  padding: 5px;
  border-bottom: 1px solid #555;
}
.ui-btn.full-width {
  width: 100%;
}
.ui-btn {
  padding: 5px;
  margin-top: 5px;
  background: #444;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}
.ui-btn:hover {
  background: #575757;
}
.step-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0.5px solid #555;
  padding: 20px 0 20px 0;
  padding: 5px;
  border-radius: 8px;
  margin: 10px 0 10px 0;
  gap: 0.5em;
}
.step-container input,
.step-container textarea {
  padding: 0.5em;
  border-radius: 0.25em;
  outline: none;
  border: none;
  background-color: white;
  color: black;
}
.step-container textarea {
  min-height: 30px;
}
.step-container strong {
}
