body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.heading {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
}

.card {
  background-color: #F2E9F8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-heading {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}

.expense-input,
.income-input {
  margin-bottom: 10px;
}

.button {
  padding: 10px 20px;
  background-color: #8D54E9;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #6E3ED4;
}

.list-heading {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
}

.expense-list-items,
.income-list-items {
  list-style-type: none;
  padding: 0;
}

.expense-list-items li {
  margin-bottom: 5px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paid-button {
  font-size: 14px;
  padding: 5px 10px;
  background-color: #FF6B6B;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.paid-button:hover {
  background-color: #E65C5C;
}

.income-amounts {
  margin-top: 10px;
}

.income-frequency {
  font-weight: bold;
}

.income-amount {
  color: #000;
  font-weight: bold;
  font-size: 18px;
}
