/* Tabs */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Maze Box */
.maze-step-box {
  background: #fff;
  border: 1px solid #ccd0d4;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  border-left: 4px solid #2271b1;
}
.step-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.step-row {
  margin-bottom: 15px;
}
.step-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.step-row select {
  max-width: 400px;
  width: 100%;
}

/* Decoys */
.step-decoys {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #eee;
}

/* The container for one decoy entry */
.decoy-item {
  margin-bottom: 15px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}
.decoy-item:last-child {
  border-bottom: none;
}

/* The wrapper for the Dropdown and Button (keeps them on one line) */
.lmaze-decoy-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.lmaze-decoy-row select {
  flex-grow: 1;
  margin-right: 10px;
  max-width: 400px;
}

/* Search Box */
.lmaze-search-input {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-bottom: 5px;
  padding: 5px 8px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 13px;
  background-color: #fff;
}

/* General */
.remove-decoy {
  color: #d63638 !important;
  border-color: #d63638 !important;
  background: #fff;
  cursor: pointer;
}
.remove-decoy:hover {
  background: #d63638 !important;
  color: #fff !important;
}
.img-row {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.gnm-guide-box {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-left: 4px solid #2271b1;
  padding: 15px 20px;
  margin-bottom: 25px;
}
.gnm-guide-steps {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.gnm-step {
  flex: 1;
  background: #f6f7f7;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #eee;
}
.step-icon {
  display: inline-block;
  background: #2271b1;
  color: #fff;
  width: 24px;
  height: 24px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 24px;
}
.code-badge {
  background: #eee;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.8em;
  font-weight: bold;
  color: #444;
}
