/* top bar container */
.toolbox-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #1C0085;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* title on left */
.toolbox-title {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  color: white;
}

/* home button on right - FIXED */
.toolbox-home {
  background: white;
  border: none;
  color: #1C0085;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  width: auto;
  min-width: 80px;
  text-align: center;
}

.toolbox-home:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbox-home:active {
  transform: translateY(0);
}