Changed around line 1
+ :root {
+ --primary: #0056b3;
+ --primary-light: #e6f0ff;
+ --secondary: #4a4a4a;
+ --success: #28a745;
+ --danger: #dc3545;
+ --light: #f8f9fa;
+ --dark: #343a40;
+ --border-radius: 8px;
+ --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ }
+
+ body {
+ background-color: #f5f7fa;
+ color: var(--secondary);
+ line-height: 1.6;
+ }
+
+ .bank-header {
+ background: white;
+ box-shadow: var(--shadow);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ .header-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .main-nav {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .main-nav a {
+ text-decoration: none;
+ color: var(--secondary);
+ font-weight: 500;
+ transition: color 0.2s;
+ }
+
+ .main-nav a:hover {
+ color: var(--primary);
+ }
+
+ .user-menu {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ cursor: pointer;
+ }
+
+ .user-avatar {
+ width: 32px;
+ height: 32px;
+ background-color: var(--primary);
+ color: white;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-weight: bold;
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .dashboard {
+ margin-bottom: 2rem;
+ }
+
+ .welcome-banner {
+ margin-bottom: 2rem;
+ }
+
+ .welcome-banner h1 {
+ font-size: 2rem;
+ color: var(--dark);
+ margin-bottom: 0.5rem;
+ }
+
+ .welcome-banner p {
+ color: #6c757d;
+ }
+
+ .accounts-summary h2 {
+ margin-bottom: 1rem;
+ font-size: 1.5rem;
+ }
+
+ .account-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .account-card {
+ background: white;
+ border-radius: var(--border-radius);
+ padding: 1.5rem;
+ box-shadow: var(--shadow);
+ transition: transform 0.2s;
+ }
+
+ .account-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .account-card.primary {
+ border-top: 4px solid var(--primary);
+ }
+
+ .account-card h3 {
+ color: var(--secondary);
+ margin-bottom: 0.5rem;
+ }
+
+ .account-card p {
+ font-size: 1.75rem;
+ font-weight: 600;
+ margin-bottom: 1rem;
+ }
+
+ .account-number p {
+ font-size: 0.9rem;
+ color: #6c757d;
+ font-weight: normal;
+ }
+
+ .quick-actions {
+ margin: 3rem 0;
+ }
+
+ .quick-actions h2 {
+ margin-bottom: 1.5rem;
+ font-size: 1.5rem;
+ }
+
+ .action-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .action-card {
+ background: white;
+ border-radius: var(--border-radius);
+ padding: 1.5rem;
+ box-shadow: var(--shadow);
+ text-align: center;
+ cursor: pointer;
+ transition: all 0.2s;
+ }
+
+ .action-card:hover {
+ background: var(--primary-light);
+ }
+
+ .action-icon {
+ width: 60px;
+ height: 60px;
+ margin: 0 auto 1rem;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: var(--primary-light);
+ color: var(--primary);
+ font-size: 1.5rem;
+ }
+
+ .action-card h3 {
+ margin-bottom: 0.5rem;
+ font-size: 1.1rem;
+ }
+
+ .action-card p {
+ color: #6c757d;
+ font-size: 0.9rem;
+ }
+
+ .recent-transactions h2 {
+ margin-bottom: 1.5rem;
+ font-size: 1.5rem;
+ }
+
+ .transactions-list {
+ background: white;
+ border-radius: var(--border-radius);
+ box-shadow: var(--shadow);
+ overflow: hidden;
+ }
+
+ .transaction-item {
+ display: flex;
+ align-items: center;
+ padding: 1rem 1.5rem;
+ border-bottom: 1px solid #eee;
+ }
+
+ .transaction-item:last-child {
+ border-bottom: none;
+ }
+
+ .transaction-icon {
+ width: 40px;
+ height: 40px;
+ border-radius: 50%;
+ background: var(--primary-light);
+ color: var(--primary);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin-right: 1rem;
+ }
+
+ .transaction-details h3 {
+ font-size: 1rem;
+ margin-bottom: 0.25rem;
+ }
+
+ .transaction-details p {
+ font-size: 0.85rem;
+ color: #6c757d;
+ }
+
+ .transaction-amount {
+ margin-left: auto;
+ font-weight: 600;
+ }
+
+ .transaction-amount.positive {
+ color: var(--success);
+ }
+
+ .bank-footer {
+ background: var(--dark);
+ color: white;
+ padding: 2rem 0;
+ margin-top: 3rem;
+ }
+
+ .footer-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.2s;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ .bank-info {
+ opacity: 0.7;
+ font-size: 0.9rem;
+ }
+
+ @media (max-width: 768px) {
+ .header-container {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .main-nav {
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+
+ .footer-container {
+ flex-direction: column;
+ gap: 1.5rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+ }