
/* ===== Scoped: only affects inside #pcbtab_01 ===== */
#pcbtab_01.pcbtab-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Tabs */
#pcbtab_01 .pcbtab-tabs{
  display: flex;
  align-items: flex-end;
  gap: 28px;
  border-bottom: 2px solid #1b5ea9;
  padding: 0 0 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#pcbtab_01 .pcbtab-tabs::-webkit-scrollbar{ height: 6px; }
#pcbtab_01 .pcbtab-tab{
  appearance: none;
  border: 1px solid #d9dde3;
  background: #fff;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1;
  padding: 14px 18px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
}
#pcbtab_01 .pcbtab-tab:hover{
  color: #1b5ea9;
  border-color: #b9c9dd;
}
#pcbtab_01 .pcbtab-tab.is-active{
  color: #1b5ea9;
  border-color: #1b5ea9;
  box-shadow: 0 0 0 2px rgba(27,94,169,.10) inset;
}

/* Panels */
#pcbtab_01 .pcbtab-panels{ padding: 18px 0 6px; }
#pcbtab_01 .pcbtab-panel{ display: none; }
#pcbtab_01 .pcbtab-panel.is-show{ display: block; }

/* Table */
#pcbtab_01 .pcbtab-table{
  width: 100%;
  border: 1px solid #e6ebf2;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
}
#pcbtab_01 .pcbtab-row{
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.35fr 1.55fr;
  border-top: 1px solid #eef2f7;
}
#pcbtab_01 .pcbtab-row:first-child{ border-top: none; }

#pcbtab_01 .pcbtab-cell{
  padding: 18px 18px;
  box-sizing: border-box;
  font-size: 16px;
  color: #2a2f36;
  line-height: 1.5;
  border-left: 1px solid #eef2f7;
  background: #fff;
  word-break: break-word;
}
#pcbtab_01 .pcbtab-cell:first-child{ border-left: none; }

#pcbtab_01 .pcbtab-head .pcbtab-cell{
  background: #163f74;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-left: 1px solid rgba(255,255,255,.12);
}
#pcbtab_01 .pcbtab-head .pcbtab-cell:first-child{ border-left: none; }

#pcbtab_01 .pcbtab-key{
  color: #1b2a3a;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 980px){
  #pcbtab_01 .pcbtab-row{ grid-template-columns: 1fr; }
  #pcbtab_01 .pcbtab-cell{
    border-left: none;
    border-top: 1px solid #eef2f7;
    padding: 14px 14px;
  }
  #pcbtab_01 .pcbtab-head{ display:none; }
  #pcbtab_01 .pcbtab-row .pcbtab-cell:first-child{
    border-top: none;
    background: #f4f7fb;
    font-weight: 700;
    color:#163f74;
  }
}
