:root{
  color-scheme: light;
}

*{box-sizing:border-box}
html{
  font-size:var(--gh-font-size,16px);
  overflow-x: clip;
}
body{
  margin:0;
  font-family:var(--gh-font-body, system-ui);
  background:var(--gh-bg,#fff);
  color:var(--gh-text,#111);
  line-height:1.6;
}

a{color:var(--gh-link,#0b57d0); text-decoration: none;}
a:hover{text-decoration: underline;}

.container{
  width: min(100% - 2rem, var(--gh-container,1120px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
}
.skip-link:focus{
  left:1rem; top:1rem;
  background:#fff; padding:.5rem .75rem;
  border:1px solid #ddd; border-radius:8px;
  z-index:9999;
}

.gh-btn{
  display:inline-block;
  padding:.6rem .9rem;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  background:transparent;
  text-decoration:none;
  font-weight:600;
}
.site-main{padding:1.25rem 0 2rem;}
.layout{
  display:grid;
  grid-template-columns: 1fr;
  gap:1.25rem;
}
.content-area{min-width:0;}

.sidebar .widget{
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--gh-radius,12px);
  padding: .9rem;
  margin-bottom: 1rem;
}

.widget-title{
  margin:.1rem 0 .6rem;
  font-family:var(--gh-font-heading, system-ui);
  font-size:1rem;
}

.post-card, .post, .page{
  /* border:1px solid rgba(0,0,0,.08);
  border-radius: var(--gh-radius,12px);
  padding:1rem;
  background:#fff; */
}

.post-title, .archive-title{
  font-family:var(--gh-font-heading, system-ui);
  line-height:1.25;
  margin:.2rem 0 .75rem;
}

.post-meta{opacity:.8; font-size:.92rem}
.post-content{margin-top:1rem}
.post-content :where(h2,h3){
  font-family:var(--gh-font-heading, system-ui);
  line-height:1.3;
}

.content-widgets{margin:1rem 0;}
.content-widgets .widget{
  border:1px dashed rgba(0,0,0,.2);
  border-radius: var(--gh-radius,12px);
  padding: .9rem;
}

.pagination{margin-top:1rem}

.site-footer{
  border-top:1px solid rgba(0,0,0,.08);
  padding:2rem 0;
}
.footer-widgets{
  display:grid;
  gap:1rem;
  margin-bottom:1.25rem;
}
.footer-cols-2{grid-template-columns: repeat(2, minmax(0,1fr));}
.footer-cols-3{grid-template-columns: repeat(3, minmax(0,1fr));}
.footer-cols-4{grid-template-columns: repeat(4, minmax(0,1fr));}

.footer-col .widget{
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--gh-radius,12px);
  padding:.9rem;
}

.footer-nav ul{
  list-style:none; padding:0; margin:0 0 1rem;
  display:flex; gap:.9rem; flex-wrap:wrap;
}

.gh-product-box{
  border:1px solid rgba(0,0,0,.12);
  border-radius: var(--gh-radius,12px);
  padding: 1rem;
  margin: 1rem 0;
}
.gh-product-box__inner{
  display:flex; flex-wrap:wrap;
  gap:1rem; align-items:center; justify-content:space-between;
}
.gh-product-box__title{font-size:1.05rem}
.gh-product-box__note{margin:.4rem 0 0; opacity:.85; font-size:.92rem}

/* Desktop layout with sidebar */
@media (min-width: 980px){
  .layout{
    grid-template-columns: 1fr 320px;
    align-items:start;
  }
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
}
.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    font-size: 12px;
}
.breadcrumb .current {
    color: #111827;
    font-weight: 600;
}
.home-icon svg {
    width: 14px;
    height: 14px;
    fill: #2563eb;
}

/* Miners Page Template Start*/
.miner-page {
    padding: 25px 50px 60px;
    background: #fff;
}
/* =========================
   TABS (IMPORTANT PART)
========================= */
.miner-page .miner-tabs {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}
.miner-page .miner-tabs .tab {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.2s;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
}
.miner-page .miner-tabs .tab:hover {
    background: #dbeafe;
    color: #1d4ed8;
}
.miner-page .miner-tabs .tab.active {
    background: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    color: #1d4ed8;
}
/* =========================
   SEARCH
========================= */
.miner-page .miner-search {
    margin: 20px 0;
}
.miner-page .miner-search input {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
}
.miner-page .miners-no-results td {
    padding: 24px 12px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}
.miner-page tr.is-filtered-out {
    display: none;
}
/* =========================
   TITLE
========================= */
.miner-page .miners-title {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0 20px;
}
/* =========================
   TABLE WRAPPER
========================= */
.miner-page .miners-table {
    overflow-x: auto;
}
/* =========================
   TABLE
========================= */
.miner-page .miners-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}
/* HEADER */
.miner-page .miners-table th {
    background: #eef2ff;
    padding: 14px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}
/* ROWS */
.miner-page .miners-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #111827;
    vertical-align: middle;
}
/* =========================
   NAME COLUMN
========================= */
.miner-page .miners-table td a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.miner-page .miners-table td a:hover {
    text-decoration: underline;
}
/* =========================
   PROFIT COLORS
========================= */
.miner-page .profit.green {
    color: #16a34a;
    font-weight: 600;
}
.miner-page .profit.red {
    color: #dc2626;
    font-weight: 600;
}
/* =========================
   CHART BUTTON (MATCH UI)
========================= */
.miner-page .chart-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    color: #4b5563;
    width: 130px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 12px;
}
.miner-page .chart-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
.miner-page .chart-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 950px) {
    .miner-page {
        padding: 15px;
    }
    .miner-page .miner-tabs {
        flex-direction: column;
    }
    .miner-page .miners-table table {
        min-width: 800px;
    }
}
/* Miners Page Template END */