/* ───── Outer Container ───── */
.ui-toolbox-container-wrapper {
  max-width: 1300px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #1a1a1a;
  border: 2px solid #75c3c7;
  box-shadow: 0 0 15px #75c3c7;
  border-radius: 8px;
}

/* remove inner background */
.ui-toolbox-wrapper {
  width: 100%;
  padding: 0;
  background: transparent;
}

/* ───── Controls ───── */
.ui-toolbox-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ui-toolbox-title {
  flex: 1;
  margin: 0;
  font-size: 1.5rem;
  color: #75c3c7;
}
.ui-toolbox-controls button {
  padding: 0.5rem 1rem;
  background: #75c3c7;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}
.ui-toolbox-controls button:hover {
  background: #75c3c7;
}

/* ───── Stack Items ───── */
.ui-toolbox-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  width: 100%;
  background: #2b2b2b;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform .2s;
}
.accordion-item:hover {
  transform: translateY(-2px);
}

/* ───── Title & Icon ───── */
.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #75c3c7;
  color: #fff;
  padding: 0.75rem 1rem;
  cursor: pointer;
}
.accordion-title .tool-image {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 0.5rem;
}
.accordion-icon {
  font-weight: bold;
  transition: transform .2s;
}

/* ───── Content & Animation ───── */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #333;
  color: #ddd;
  transition: max-height .3s ease, padding .3s ease;
}
.accordion-item.open .accordion-content {
  max-height: 500px;
  padding: 1rem;
}

/* ───── Tool Actions ───── */
.tool-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.tool-actions .btn-open,
.tool-actions .btn-copy-url,
.tool-actions .btn-coming-soon,
.tool-actions .btn-members-only {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}


.tool-actions .btn-open { background: #000; color: #fff; }
.tool-actions .btn-copy-url { background: #444; color: #fff; }
.tool-actions .btn-open:hover { background: hsl(183, 74%, 69%); }
.tool-actions .btn-copy-url:hover { background: #555; }
.tool-actions .btn-coming-soon,
.tool-actions .btn-members-only {
  background: #666;
  cursor: default;
}
