/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
*{box-sizing:border-box} body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#0b1020;color:#f5f7fb}.wrap{max-width:1100px;margin:auto;padding:32px}.card{background:#151c31;border:1px solid #2a3557;border-radius:14px;padding:22px;margin-bottom:18px}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));grid-gap:16px;gap:16px}.muted{color:#9eabc9}.good{color:#54d69b}.warn{color:#ffcc66}.danger{color:#ff7474}.btn{display:inline-block;padding:11px 16px;border-radius:9px;border:0;background:#5b7cff;color:white;font-weight:700;cursor:pointer}.input{width:100%;padding:12px;border-radius:8px;border:1px solid #3a4565;background:#0d1427;color:white;margin:7px 0 14px}a{color:#90a7ff;text-decoration:none}h1,h2,h3{margin-top:0}.pill{display:inline-block;border-radius:999px;padding:5px 9px;background:#24304f;font-size:12px}

/* Wide trading dashboard */
.wrap {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.historyTopbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.historyFilters{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.historySeasonButtons{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}

.historySeasonButton{
  display:inline-block;
  padding:9px 13px;
  border:1px solid #3a4565;
  border-radius:8px;
  color:#cdd7f2;
  font-weight:700;
}

.historySeasonButton.active{
  background:#5b7cff;
  border-color:#5b7cff;
  color:white;
}

.historyStat{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:3px;
}

.historyStat strong{
  font-size:28px;
}

.historyList{
  display:grid;
  grid-gap:12px;
  gap:12px;
}

.historyMatchRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  color:inherit;
  transition:transform .15s ease,border-color .15s ease,background .15s ease;
}

.historyMatchRow:hover{
  transform:translateY(-1px);
  border-color:#50618f;
  background:#18213a;
}

.historyMatchMain{
  min-width:0;
}

.historyMatchTitle{
  font-size:18px;
  font-weight:800;
}

.historyMatchMeta{
  margin-top:5px;
}

.historyTicker{
  font-size:11px;
  word-break:break-all;
}

.historyNumbers{
  display:flex;
  gap:22px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.historyNumbers>div{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  min-width:64px;
}

.historyNumbers strong{
  font-size:18px;
}

.historyNumbers span{
  color:#9eabc9;
  font-size:12px;
}

.historyScore{
  font-size:24px;
  font-weight:900;
  color:#fff;
}

.historySectionHeader{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.historyLegend{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:10px;
}

.historyLegendItem{
  display:flex;
  align-items:center;
  gap:7px;
  font-weight:700;
  font-size:13px;
}

.historyLegendDot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
}

.historyChartScroller{
  overflow-x:auto;
}

.historyChart{
  width:100%;
  min-width:850px;
  height:auto;
  background:#0d1427;
  border:1px solid #2a3557;
  border-radius:12px;
}

.historyEventList{
  display:grid;
  grid-gap:8px;
  gap:8px;
}

.historyEventRow{
  display:grid;
  grid-template-columns:80px 140px 1fr 1fr 80px;
  grid-gap:12px;
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.historyTable{
  width:100%;
  min-width:800px;
  border-collapse:collapse;
}

.historyTable th,
.historyTable td{
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

@media (max-width: 768px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .historyMatchRow{
    align-items:flex-start;
    flex-direction:column;
  }

  .historyNumbers{
    width:100%;
    justify-content:space-between;
  }

  .historyNumbers>div{
    align-items:flex-start;
  }

  .historyStat{
    align-items:flex-start;
  }

  .historyEventRow{
    grid-template-columns:60px 110px 1fr;
  }

  .historyEventRow span:nth-child(4),
  .historyEventRow strong:last-child{
    display:none;
  }
}

