* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f9;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.dashboard {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.card {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  color: white;
  text-align: center;
}

.saldo {
  background: #2ecc71;
}

.receita {
  background: #3498db;
}

.despesa {
  background: #e74c3c;
}

.form-section,
.lista-section,
.grafico-section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

form {
  display: grid;
  gap: 10px;
}

input, select, button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: #2c3e50;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #34495e;
}

ul {
  list-style: none;
}

li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li button {
  background: #e74c3c;
  border: none;
  padding: 5px 8px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
