/* ==========================================================================
   report_strip_table.css
   Wide report table for financial reports.
   ========================================================================= */

.wow-report-strip-table {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  background: #ffffff;
}

.wow-report-strip-table__header,
.wow-report-strip-table__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, auto);
  gap: 0;
  min-width: max-content;
}

.wow-report-strip-table__header {
  border: 1px solid #b9b9b9;
  border-bottom: none;
  background: #f7f7f7;
}

.wow-report-strip-table__body {
  display: grid;
  gap: 10px;
  padding: 10px 0;
}

.wow-report-strip-table__cell {
  padding: 10px 12px;
  font-size: 13px;
  color: #333;
  text-align: right;
  border-left: 1px solid #d6d6d6;
  white-space: nowrap;
}

.wow-report-strip-table__cell:last-child {
  border-left: none;
}

.wow-report-strip-table__cell--head {
  font-weight: 700;
  color: #444;
  background: #f7f7f7;
}

.wow-report-strip-table__row {
  border: 1px solid #f5a35a;
  border-radius: 6px;
  background: #ffffff;
}

.wow-report-strip-table__row--past {
  border-color: #f5a35a;
}

.wow-report-strip-table__row--current {
  border-color: #7ed957;
}

.wow-report-strip-table__row--summary {
  border-color: #b9b9b9;
}

.wow-report-strip-table__empty {
  padding: 14px 12px;
  color: #666;
  font-size: 13px;
}

.wow-report-strip-table__action-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: #fff;
  cursor: pointer;
}

.wow-report-strip-table__action-btn svg {
  width: 18px;
  height: 18px;
}
