.grid-negative {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: #e9ecef;
  padding: 20px;
  border-radius: 4px;
}

.grid-item-negative {
  background: #20c997;
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.full-width {
  grid-column: 1 / -1;
  background: #ffc107;
  color: #212529;
}

.last-two {
  grid-column: -3 / -1;
  background: #e83e8c;
}