Changed around line 1
+ :root {
+ --primary: #4361ee;
+ --primary-dark: #3a56d4;
+ --secondary: #3f37c9;
+ --accent: #4895ef;
+ --light: #f8f9fa;
+ --dark: #212529;
+ --success: #4cc9f0;
+ --warning: #f72585;
+ --danger: #ef233c;
+ --gray: #6c757d;
+ --white: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: var(--white);
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: var(--white);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: var(--white);
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 3rem auto;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: var(--white);
+ color: var(--primary);
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem 1rem;
+ }
+
+ section {
+ margin-bottom: 4rem;
+ }
+
+ h2 {
+ font-size: 1.8rem;
+ margin-bottom: 2rem;
+ color: var(--primary);
+ }
+
+ .summary-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .summary-card {
+ background: var(--white);
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ text-align: center;
+ }
+
+ .summary-card h3 {
+ font-size: 1rem;
+ color: var(--gray);
+ margin-bottom: 0.5rem;
+ }
+
+ .summary-card .amount {
+ font-size: 1.5rem;
+ font-weight: 700;
+ }
+
+ .chart-container, .report-container {
+ background: var(--white);
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ height: 300px;
+ margin-bottom: 2rem;
+ }
+
+ .transaction-filters {
+ display: flex;
+ gap: 0.5rem;
+ margin-bottom: 1.5rem;
+ flex-wrap: wrap;
+ }
+
+ .transaction-filters button {
+ background: var(--white);
+ border: 1px solid var(--gray);
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: all 0.3s;
+ }
+
+ .transaction-filters button.active {
+ background: var(--primary);
+ color: var(--white);
+ border-color: var(--primary);
+ }
+
+ .transaction-filters button:hover:not(.active) {
+ background: #f1f1f1;
+ }
+
+ .add-button {
+ background: var(--accent) !important;
+ color: var(--white) !important;
+ border: none !important;
+ display: flex;
+ align-items: center;
+ gap: 0.3rem;
+ }
+
+ .transaction-table {
+ width: 100%;
+ border-collapse: collapse;
+ background: var(--white);
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ }
+
+ .transaction-table th, .transaction-table td {
+ padding: 1rem;
+ text-align: left;
+ }
+
+ .transaction-table th {
+ background: var(--primary);
+ color: var(--white);
+ font-weight: 600;
+ }
+
+ .transaction-table tr:nth-child(even) {
+ background: #f8f9fa;
+ }
+
+ .income {
+ color: var(--success);
+ font-weight: 600;
+ }
+
+ .expense {
+ color: var(--danger);
+ font-weight: 600;
+ }
+
+ .budget-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .budget-card {
+ background: var(--white);
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ }
+
+ .budget-card h3 {
+ margin-bottom: 1rem;
+ }
+
+ .budget-bar {
+ height: 10px;
+ background: #e9ecef;
+ border-radius: 5px;
+ margin-bottom: 0.5rem;
+ overflow: hidden;
+ }
+
+ .budget-progress {
+ height: 100%;
+ background: var(--accent);
+ border-radius: 5px;
+ }
+
+ .report-options {
+ display: flex;
+ gap: 0.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .report-options button {
+ background: var(--white);
+ border: 1px solid var(--gray);
+ padding: 0.5rem 1rem;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: all 0.3s;
+ }
+
+ .report-options button.active {
+ background: var(--primary);
+ color: var(--white);
+ border-color: var(--primary);
+ }
+
+ .report-options button:hover:not(.active) {
+ background: #f1f1f1;
+ }
+
+ footer {
+ background: var(--dark);
+ color: var(--white);
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--white);
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .footer-links a:hover {
+ opacity: 0.8;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .transaction-table {
+ display: block;
+ overflow-x: auto;
+ }
+ }