.private-section--container {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.private-section--title {
  color: rgb(255, 60, 0);
  text-align: left;
  font-size: 1.8em;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.private-section--table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.private-section--table thead {
  background: rgb(255, 60, 0);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.private-section--table th {
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.private-section--table th:last-child {
  border-right: none;
}

.private-section--table td {
  padding: 10px;
  border-bottom: 1px solid #e4e4e4;
  text-align: center;
  vertical-align: middle;
  color: #333;
}

.private-section--table tr:hover {
  background: #fff7f2;
}

.private-section--table tr.private-section--table--header-row:hover {
  background: rgb(255, 60, 0);
}

.private-section--table tfoot th {
  background: #f9f9f9;
  padding: 12px 10px;
  text-align: right;
  font-size: 1em;
  border-top: 2px solid rgb(255, 60, 0);
}

.private-section--totals {
  text-align: end;
}

.private-section--button-container {
  display: flex;
  flex-direction: row-reverse;
}

.private-section--button {
  background: rgb(255, 60, 0);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95em;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-right: 8px;
  margin-top: 30px;
}

.private-section--button:hover {
  background: #e74d00;
  transform: translateY(-2px);
}

.private-section--button:active {
  transform: translateY(0);
}

.private-section--textarea-container {
    display: flex;
    flex-direction: row-reverse;
}

.private-section--textarea-container div {
  display: flex;
  flex-direction: column;
}

.private-section--textarea-container div textarea {
  width: 380px;
  height: 160px;
}
