    /* ============ Bulk Estimate Styles ============ */

    /* PRO Lock Overlay */
    .bulk-pro-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      border-radius: 8px;
    }

    .bulk-pro-content {
      text-align: center;
      padding: 32px;
    }

    #bulkEstimateSection {
      position: relative;
    }

    /* Bulk Results Table */
    .bulk-results-table-wrapper {
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 8px;
    }

    .bulk-results-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }

    .bulk-results-table th,
    .bulk-results-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .bulk-results-table th {
      background: var(--bg-secondary);
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-dim);
    }

    .bulk-results-table th.sortable {
      cursor: pointer;
      user-select: none;
    }

    .bulk-results-table th.sortable:hover {
      color: var(--text);
    }

    .bulk-results-table .sort-icon {
      font-size: 10px;
      opacity: 0.7;
    }

    .bulk-results-table tbody tr:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .bulk-results-table tbody tr:last-child td {
      border-bottom: none;
    }

    .bulk-username-link {
      color: var(--accent);
      text-decoration: none;
      font-family: monospace;
      font-weight: 500;
    }

    .bulk-username-link:hover {
      text-decoration: underline;
    }

    .bulk-price {
      color: var(--yellow);
      font-weight: 600;
      font-family: monospace;
    }

    .bulk-price-unit {
      color: var(--text-dim);
      font-size: 11px;
      margin-left: 4px;
    }

    .bulk-confidence {
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
    }

    /* ============ Inline Estimate (Marketplace) ============ */
    .inline-estimate {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
      white-space: nowrap;
    }

    .inline-estimate.deal-amazing {
      background: rgba(0, 255, 0, 0.2);
      color: #00ff00;
      animation: pulse-glow 2s infinite;
    }

    .inline-estimate.deal-great {
      background: rgba(46, 204, 113, 0.2);
      color: #2ecc71;
    }

    .inline-estimate.deal-good {
      background: rgba(46, 204, 113, 0.15);
      color: #27ae60;
    }

    .inline-estimate.deal-fair {
      background: rgba(241, 196, 15, 0.15);
      color: #f1c40f;
    }

    .inline-estimate.deal-high {
      background: rgba(230, 126, 34, 0.15);
      color: #e67e22;
    }

    .inline-estimate.deal-overpriced {
      background: rgba(231, 76, 60, 0.15);
      color: #e74c3c;
    }

    @keyframes pulse-glow {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .deal-savings {
      font-size: 9px;
      color: var(--text-dim);
      display: block;
      margin-top: 2px;
    }

    /* ============ Estimate All Button ============ */
    .btn-estimate-all {
      background: linear-gradient(135deg, var(--accent) 0%, #2980b9 100%);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 12px;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .btn-estimate-all:hover {
      opacity: 0.9;
    }

    .btn-estimate-all:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .btn-estimate-all .pro-badge {
      font-size: 9px;
      background: rgba(255,255,255,0.2);
      padding: 2px 5px;
      border-radius: 3px;
      margin-left: 6px;
    }

    .btn-estimate-inline {
      background: var(--bg-tertiary) !important;
      color: var(--green) !important;
      border: 1px solid var(--border) !important;
      font-size: 10px !important;
      padding: 2px 8px !important;
    }

    .btn-estimate-inline:hover {
      background: var(--green) !important;
      color: #000 !important;
    }

    .spinner-xs {
      display: inline-block;
      width: 10px;
      height: 10px;
      border: 2px solid var(--border);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
    }

    .usage-counter {
      font-weight: normal;
    }

    .watchlist-col-estimate {
      min-width: 70px;
      text-align: center;
    }

    /* ============ Estimate Result Card ============ */
    .estimate-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }

    .estimate-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
    }

    .estimate-card-username {
      font-family: monospace;
      font-size: 18px;
      font-weight: 600;
      color: var(--text);
    }

    .estimate-card-badges {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .estimate-confidence {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 4px;
      background: var(--bg-secondary);
    }

    .estimate-confidence-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .estimate-cached-badge {
      font-size: 10px;
      padding: 3px 8px;
      background: rgba(46, 204, 113, 0.15);
      color: var(--green);
      border-radius: 4px;
      font-weight: 600;
    }

    .estimate-card-price {
      padding: 20px 16px;
      text-align: center;
    }

    .estimate-price-value {
      font-size: 32px;
      font-weight: 700;
      color: var(--yellow);
      letter-spacing: -0.5px;
    }

    .estimate-price-unit {
      color: var(--text-dim);
      font-size: 14px;
      margin-left: 4px;
    }

    .estimate-price-usd {
      font-size: 13px;
      color: var(--text-dim);
      margin-top: 4px;
    }

    .estimate-card-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 16px;
      border-top: 1px solid var(--border);
      font-size: 11px;
      flex-wrap: wrap;
    }

    .estimate-card-row-label {
      font-size: 10px;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-right: 4px;
    }

    .estimate-sep {
      color: var(--text-dim);
      opacity: 0.4;
    }

    .estimate-sale-link {
      color: var(--accent);
      text-decoration: none;
      font-family: monospace;
    }

    .estimate-sale-link:hover {
      text-decoration: underline;
    }

    /* Context Insight */
    .estimate-insight {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 16px;
      border-top: 1px solid var(--border);
      font-size: 12px;
      color: var(--text-dim);
      background: rgba(52, 152, 219, 0.05);
    }

    .estimate-insight-icon {
      font-size: 14px;
    }

    .estimate-insight-text {
      font-weight: 500;
    }

    .estimate-card-upsell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      border-top: 1px solid var(--border);
      background: rgba(52, 152, 219, 0.05);
      font-size: 12px;
      color: var(--text-dim);
    }

    .estimate-card-actions {
      display: flex;
      gap: 6px;
      padding: 10px 16px;
      border-top: 1px solid var(--border);
    }

    .estimate-action-btn {
      flex: 1;
      padding: 8px 4px;
      font-size: 11px;
      font-weight: 600;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 6px;
      color: var(--text-dim);
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: all 0.15s;
      white-space: nowrap;
    }

    .estimate-action-btn:hover {
      color: var(--text);
      border-color: var(--text-dim);
    }

    .estimate-action-btn.accent {
      background: rgba(52, 152, 219, 0.12);
      border-color: rgba(52, 152, 219, 0.25);
      color: var(--accent);
    }

    .estimate-action-btn.accent:hover {
      background: rgba(52, 152, 219, 0.2);
    }

    .estimate-action-btn.saved {
      background: rgba(46, 204, 113, 0.1);
      border-color: rgba(46, 204, 113, 0.2);
      color: var(--green);
      cursor: default;
    }

    .estimate-card-footer {
      padding: 8px 16px;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 10px;
      color: var(--text-dim);
      opacity: 0.5;
    }

    /* Limit reached card */
    .estimate-limit-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 32px 20px;
      text-align: center;
    }

    .estimate-limit-card h3 {
      font-size: 16px;
      margin: 12px 0 8px;
    }

    .estimate-limit-card p {
      font-size: 13px;
      color: var(--text-dim);
      margin: 0 0 16px;
    }

    /* ============ Tools Tabs ============ */

    .tools-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--border);
      margin-bottom: 12px;
    }

    .tools-tab {
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      transition: all 0.15s;
    }

    .tools-tab:hover {
      color: var(--text);
    }

    .tools-tab.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .tools-tab-content {
      display: none;
    }

    .tools-tab-content.active {
      display: block;
    }

    /* ============ Tools Sections (Market Stats, My Estimates) ============ */

    .tools-section {
      margin-top: 16px;
    }

    .tools-section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 10px;
    }

    .tools-section-title {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text);
    }

    .tools-section-subtitle {
      font-size: 11px;
      color: var(--text-dim);
    }

    .tools-section-link {
      font-size: 11px;
      color: var(--accent);
      text-decoration: none;
      cursor: pointer;
    }

    .tools-section-link:hover {
      text-decoration: underline;
    }

    /* Recent Sales Feed */
    .recent-sales-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: background 0.15s;
      font-size: 12px;
    }

    .recent-sales-item:first-of-type {
      border-top: 1px solid var(--border);
      border-radius: 8px 8px 0 0;
    }

    .recent-sales-item:last-child {
      border-bottom: none;
      border-radius: 0 0 8px 8px;
    }

    .recent-sales-item:only-of-type {
      border-radius: 8px;
    }

    .recent-sales-item:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .recent-sales-username {
      font-family: monospace;
      font-size: 13px;
      color: var(--accent);
      flex: 1;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .recent-sales-price {
      color: var(--yellow);
      font-weight: 600;
      font-family: monospace;
      white-space: nowrap;
    }

    .recent-sales-time {
      color: var(--text-dim);
      font-size: 11px;
      white-space: nowrap;
      min-width: 50px;
      text-align: right;
    }

    /* Estimates Table */
    .estimates-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }

    .estimates-table th,
    .estimates-table td {
      padding: 8px 12px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .estimates-table th {
      background: var(--bg-secondary);
      font-weight: 600;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-dim);
    }

    .estimates-table tbody tr:hover {
      background: rgba(255, 255, 255, 0.03);
    }

    .estimates-table tbody tr:last-child td {
      border-bottom: none;
    }

    /* Estimates table */
    .estimates-table .est-username {
      font-family: monospace;
      font-size: 13px;
      color: var(--accent);
      cursor: pointer;
    }

    .estimates-table .est-username:hover {
      text-decoration: underline;
    }

    .estimates-table .est-price {
      color: var(--yellow);
      font-weight: 600;
      font-family: monospace;
    }

    .estimates-table .est-confidence {
      font-size: 11px;
      font-weight: 600;
    }

    .estimates-table .est-date {
      color: var(--text-dim);
      font-size: 11px;
    }

    .estimates-table tr {
      cursor: pointer;
    }

    /* Login prompt */
    .tools-section-login {
      padding: 20px;
      text-align: center;
      color: var(--text-dim);
      font-size: 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--card-bg);
    }

    /* Empty state */
    .tools-section-empty {
      padding: 16px;
      text-align: center;
      color: var(--text-dim);
      font-size: 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--card-bg);
    }
