.static-guide-nav .tab-button {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 20px;
      border-radius: 999px;
      color: #eef6f8;
      font-size: 0.84rem;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(226, 232, 240, 0.11);
      cursor: pointer;
      transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    }
    .static-guide-nav .tab-button:hover {
      color: #061014;
      background: #87f1df;
      transform: translateY(-2px);
    }
    .static-guide-nav .tab-button.active {
      color: #061014;
      background: #87f1df;
      border-color: #87f1df;
    }
    .tab-content {
      display: none;
    }
    .tab-content.active {
      display: block;
    }
    .static-guide-section {
      display: block;
      margin-top: 50px;
    }
    .static-guide-heading {
      margin-bottom: 24px;
    }
    
    /* Table Styling Reset & Modernization */
    .table-modern {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: 0.95rem;
    }
    
    .table-modern th, 
    .table-modern td {
      padding: 16px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background: none !important;
    }
    
    /* Remove default box styles */
    .table-modern .dato-item,
    .table-modern .dato-item-info {
      background: none !important;
      padding: 0 !important;
      border-radius: 0 !important;
      text-align: left !important;
    }
    
    /* Right-align values for structured alignment */
    .table-modern th:not(:first-child),
    .table-modern td:not(:first-child) {
      text-align: right !important;
    }
    
    .table-modern th:not(:first-child) .dato-item,
    .table-modern td:not(:first-child) .dato-item-info {
      justify-content: flex-end;
      text-align: right !important;
    }
    
    /* Align icon next to item name */
    .table-modern td:first-child .dato-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .table-modern .item-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* Header style */
    .table-modern thead th {
      font-weight: 700;
      color: #c99b5b; /* Accent Gold */
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-bottom: 2px solid rgba(201, 155, 91, 0.3);
      padding-bottom: 12px;
    }
    
    /* Row hover highlighting */
    .table-modern tbody tr {
      transition: background-color 0.2s ease;
    }
    
    .table-modern tbody tr:hover {
      background-color: rgba(135, 241, 223, 0.03) !important; /* Soft green-accent hover */
    }
    
    /* Resumen / profit callouts outside the table */
    #tabla-resumen-yellow > .dato-item-info {
      background: rgba(135, 241, 223, 0.08) !important;
      border: 1px solid rgba(135, 241, 223, 0.2);
      color: #87f1df;
      padding: 16px;
      border-radius: 12px;
      margin-top: 24px;
      font-weight: 700;
      font-size: 1.05rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(135, 241, 223, 0.03);
    }
    
    #tabla-resumen-yellow > p.dato-item-info {
      background: none !important;
      border: none !important;
      color: #94a3b8;
      font-size: 0.85rem;
      text-align: center;
      margin-top: 12px !important;
      padding: 0 !important;
    }

.table-scroll {
  overflow-x: auto;
}
