/* /features/labor-exchange/labor-exchange.css */

.le-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 */
.le-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 12px;
}

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

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

.le-quad-indicator {
  font-size: 11px;
  font-weight: 700;
  color: #fcd34d; /* Soft Amber Gold Quadrant Identifier Token */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Binary Viewport Toggle Sliders Bar */
.le-binary-toggle-bar {
  display: flex;
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 6px;
  padding: 2px;
}

.le-toggle-btn {
  flex: 1;
  height: 38px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.1s ease;
}

.le-toggle-btn.le-toggle-active {
  background-color: #1f2937;
  color: #ffffff;
  border-bottom: 2px solid #3b82f6; /* Subtle blue tracking line indicator */
}

/* Dynamic Workspace Panels Box */
.le-feed-viewport {
  display: flex;
  flex-direction: column;
}

.le-sub-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.le-sub-feed.le-hidden {
  display: none !important; /* Fast hot-swap viewport toggling */
}

/* Regulatory Warning Box Callout */
.le-regulatory-warning-box {
  background-color: rgba(239, 68, 68, 0.03); /* Faint crimson alert shade */
  border: 1px dashed #ef4444;
  border-radius: 6px;
  padding: 12px;
  text-align: left;
}

.le-warning-title {
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  display: block;
  margin-bottom: 4px;
}

.le-warning-text {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #9ca3af;
}

/* High-Density Provider Profile Logs Matrix Cards */
.le-provider-profile-card {
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  box-sizing: border-box;
}

/* Hardened Premium Amber Highlights Wrapper for Contractors */
.le-provider-profile-card.le-pro-glowing-edge {
  border: 1px solid #f59e0b; /* Signature Amber Focus Token */
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15); /* Translucent amber radiance */
}

.le-card-header-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

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

.le-pro-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.le-pro-certified-tag {
  font-size: 9px;
  font-weight: 800;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.le-provider-skills-tag {
  font-size: 10px;
  color: #00ffcc; /* Clean neon-teal system identifiers */
  font-weight: 700;
  margin-top: 2px;
  display: block;
}

.le-provider-score {
  font-size: 12px;
  font-weight: 700;
  color: #fcd34d;
  white-space: nowrap;
}

.le-review-count {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
}

.le-provider-bio-snippet {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #d1d5db;
}

.le-license-string-line {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
}

/* Hardened Zero-Liability Dropdown Request Panel Elements */
.le-secure-action-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.le-prompt-dropdown-select {
  flex: 1;
  height: 44px; /* Rigid 44px mobile touch-target law standard compliance */
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  color: #ffffff;
  padding: 0 10px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}

.le-prompt-dropdown-select:focus {
  outline: none;
  border-color: #3b82f6;
}

.le-request-contact-btn {
  height: 44px; /* Absolute compliance target boundaries */
  padding: 0 16px;
  background-color: #3b82f6; /* Blue call-to-action anchor */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.1s ease;
}

.le-request-contact-btn:hover { background-color: #2563eb; }

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