File size: 1,276 Bytes
6acce24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1e1e2f;
  color: #eee;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #2a2a40;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

h1, h2 {
  text-align: center;
  color: #00adb5;
}

.expense-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.expense-form input, .expense-form button {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.expense-form input {
  flex: 1;
  background: #3a3a55;
  color: #fff;
}

.expense-form button {
  background: #00adb5;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.expense-form button:hover {
  background: #009ba8;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

thead {
  background: #393963;
}

th, td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #555;
}

.delete-btn {
  background: #ff5252;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.delete-btn:hover {
  background: #e63946;
}

.chart-section {
  max-width: 400px;
  margin: 20px auto;
}