/* /features/the-outpost/the-outpost.css */

.op-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px; /* Enforcing absolute left-aligned 12px padding law */
  background-color: #070a12; /* Solid premium matte black background canvas */
  color: #d1d5db;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
}

/* Content Panel Navigation Header */
.op-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 12px;
}

.op-back-link {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
}

.op-back-link:hover { color: #ffffff; }

.op-quad-indicator {
  font-size: 11px;
  font-weight: 700;
  color: #f472b6; /* Vivid Pink Quadrant Identifier Token */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section A: Food Truck Active Radar Tracker */
.op-truck-tracker-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.op-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.op-section-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.op-read-only-marker {
  font-size: 9px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.05em;
}

/* Active Operator Card Node */
.op-truck-card {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.op-truck-header-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.op-truck-name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.op-verified-badge {
  font-size: 9px;
  font-weight: 800;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.op-truck-location {
  margin: 0;
  font-size: 13px;
  color: #00ffcc; /* Neon teal parameter marker */
  font-weight: 700;
}

/* Clipboard Menu Exporter Row */
.op-clipboard-exporter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #070a12;
  border: 1px solid #1f2937;
  border-radius: 6px;
  padding: 4px 4px 4px 10px;
}

.op-menu-preview {
  flex: 1;
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.op-copy-btn {
  height: 32px;
  padding: 0 10px;
  background-color: #1f2937;
  border: 1px solid #374151;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.1s ease;
}

.op-copy-btn:hover {
  background-color: #374151;
  border-color: #4b5563;
}

.op-clock-expiration {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  margin-top: 2px;
}

/* Section B: Anti-Chain Dining Slot Machine Engine */
.op-spinner-engine-card {
  background-color: #111827;
  border: 1px dashed #f472b6; /* Signature pink dashed engine outline token */
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.op-spinner-text-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.op-spinner-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.op-spinner-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #9ca3af;
}

/* Slot Machine Reel Frame Display Window */
.op-spinner-reel-window {
  background-color: #070a12;
  border: 1px solid #1f2937;
  border-radius: 6px;
  height: 44px; /* Hardened touch target line spacing metrics alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
}

.op-reel-text {
  font-size: 14px;
  font-weight: 800;
  color: #00ffcc; /* Neon teal results focus indicator */
  letter-spacing: 0.05em;
}

/* Touch Boundary Protect Lever Action Button */
.op-spin-lever-btn {
  height: 44px; /* Rigid 44px mobile touch target law standard compliance */
  background-color: #f472b6;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.1s ease;
}

.op-spin-lever-btn:hover { background-color: #ec4899; }

/* Desktop Screen Adaptation Rules */
@media (min-width: 1024px) {
  .op-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 12px;
  }
}
