/* TradeForge Quick Actions Strip
   Shared on War Room and Project Workspace for immediate operational actions. */

.tf-quick-actions-strip {
  position: sticky;
  top: 64px;
  z-index: 48;
  margin: 10px 0 14px;
}

.tf-quick-actions-strip .container {
  max-width: 100%;
}

.tf-quick-actions-strip-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid rgba(140, 106, 62, 0.24);
  border-radius: 12px;
  background: rgba(15, 17, 20, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  scrollbar-width: thin;
}

.tf-quick-actions-strip-inner::-webkit-scrollbar {
  height: 6px;
}

.tf-quick-actions-strip-inner::-webkit-scrollbar-thumb {
  background: rgba(140, 106, 62, 0.35);
  border-radius: 999px;
}

.tf-quick-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(181, 183, 185, 0.16);
  background: rgba(30, 32, 35, 0.76);
  color: var(--ash, #d2d6db);
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tf-quick-action svg {
  width: 16px;
  height: 16px;
  color: var(--bronze, #8c6a3e);
  flex-shrink: 0;
}

.tf-quick-action:hover,
.tf-quick-action:focus-visible {
  border-color: rgba(140, 106, 62, 0.45);
  background: rgba(140, 106, 62, 0.12);
  color: #fff;
  outline: none;
}

body.cw-app-mode .tf-quick-actions-strip {
  top: calc(var(--cwapp-topbar-h, 60px) + 10px);
}

@media (max-width: 768px) {
  .tf-quick-actions-strip {
    margin: 8px 0 12px;
    top: 52px;
  }

  .tf-quick-actions-strip-inner {
    border-radius: 10px;
    padding: 7px;
    gap: 7px;
  }

  .tf-quick-action {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 11px;
  }
}
