.custom-table {
  max-width: 810px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.custom-table__container {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.custom-table__header {
  background: linear-gradient(135deg, #c8e8ff 0%, #a0ccec 100%);
  color: #333;
}

.custom-table__cell {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.custom-table__cell--header {
  font-size: 1.1em;
  font-weight: bold;
  padding: 15px 12px;
}

.custom-table__body {
  background: #f9f9f9;
}

.custom-table__cell--data {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.6em;
}

.custom-table__cell--green {
  color: #339966;
}

.custom-table__cell--red {
  color: #993300;
  font-size: 1.5em;
}

.custom-table__cell--blue {
  color: #0000ff;
  font-style: italic;
}

.custom-table__cell:last-child {
  border-right: none;
}