@media screen and (min-width:1024px){
  .grid {
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width:768px) and (max-width:1024px){
  .grid {
    max-width: 750px;
    grid-template-columns: 1fr;
  }
  .card{
    max-width: 750px;
  }
}
@media screen and (max-width:767px){
  .grid {
    max-width: 400px;
    grid-template-columns: 1fr;
  }
  .card{
    max-width: 400px;
  }
}

.grid {
  margin: 50px 0 auto;
  display: grid;
  /* grid-template-columns: 1fr; */
  gap: 1.5rem;
}

/* @media(min-width:1024px){
  .grid {
    grid-template-columns: 1fr 1fr;
  }
} */

.card {
  background-color: #1e293b;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  padding: 1rem 1.25rem 1.25rem;
  border: 1px solid rgba(255,255,255,.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .75rem;
}

.card-title {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.card-desc {
  font-size: .8rem;
  color: #64748b;
  margin: 0;
}

/* テーブル */
.table-wrapper {
  max-height: 400px;
  overflow-y: auto;
  border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.07);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
  /* min-width: 600px; */
  background-color: #0f172a;
}

thead {
  background-color: rgba(15,23,42,.6);
  position: sticky;
  top: 0;
  z-index: 1;
}

th {
  text-align: left;
  padding: .6rem .75rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .7rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

td {
  padding: .6rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.03);
  color: #e2e8f0;
  vertical-align: top;
}

.noteCell {
  color: #94a3b8;
  font-size: .7rem;
  line-height: 1.4;
}

/* ステータスカード */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(110px,1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}

.stat-card {
  background-color: rgba(15,23,42,.6);
  border-radius: .75rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(255,255,255,.07);
}

.stat-label {
  font-size: .7rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: .25rem;
}

.stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

canvas {
  width: 100%;
  height: 240px;
}

/* last updated on 2025-10-30 14:40 */