.usage-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid #e4e7eb;
  border-radius: 10px;
  background: #fff;
}

.usage-summary span {
  color: #737985;
}

.usage-summary .warning {
  color: #c8102e;
  font-weight: 700;
}

.usage-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.usage-card {
  padding: 14px;
  border: 1px solid #e8eaee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 7px #1921310a;
}

.usage-card span {
  display: block;
  color: #818792;
  font-size: 12px;
}

.usage-card strong {
  display: block;
  margin-top: 6px;
  color: #222;
  font-size: 20px;
}

.section-title {
  margin: 18px 0 10px;
  font-size: 16px;
}

.compact-table table {
  min-width: 1120px;
}

.compact-table th,
.compact-table td {
  padding: 9px 10px;
}

@media (max-width: 1100px) {
  .usage-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
