.value-table {
  width: 100%;
  margin: 20px auto;
  font-family: 'Arial', sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.value-table .row {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  align-items: center;
  transition: background 0.3s;
}

.value-table .row.header {
  background-color: #1e40af; /* Blue header */
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.value-table .row.light {
  background-color: #f9fafb;
}

.value-table .row.dark {
  background-color: #111827;
  color: #fff;
}

.value-table .row.total {
  font-weight: 700;
  font-size: 16px;
}

.value-table .row.investment {
  font-weight: 700;
  font-size: 16px;
  background-color: #f9fafb;
  color: #111827;
}

/* .value-table .row:hover {
  background-color: #e5e7eb;
  cursor: default;
} */

.value-table .left {
  text-align: left;
}

.value-table .right {
  text-align: right;
}

/* Responsive */
@media (max-width: 480px) {
  .value-table .row {
    flex-direction: column;
    text-align: left;
    padding: 12px 15px;
  }
  .value-table .right {
    text-align: left;
    margin-top: 5px;
  }
}
