.expense-type-section {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 2rem;
}

form{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.table-section{
    max-width: max-content
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  text-align: left;
}
thead {
  background: #e7e9ec;
  font-weight: bold;
}
tbody tr:nth-child(even) {
  background: #fafafa;
}
