
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    :root {
      --primary: #4361ee;
      --primary-light: #4895ef;
      --primary-dark: #3a0ca3;
      --secondary: #7209b7;
      --success: #4cc9f0;
      --danger: #f72585;
      --warning: #f8961e;
      --dark: #1a1a2e;
      --light: #f8f9fa;
      --gray: #6c757d;
      --border: #dee2e6;
      --card-bg: #ffffff;
      --sidebar-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
      --radius: 16px;
      --radius-sm: 8px;
    }

    body {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      color: var(--dark);
      min-height: 100vh;
      line-height: 1.6;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 280px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      z-index: -1;
      border-radius: 0 0 40px 40px;
    }

    body.dark-mode {
      background: #0f172a;
      color: #e2e8f0;
    }

    body.dark-mode::before {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }

    .dashboard-container {
      display: grid;
      grid-template-columns: 280px 1fr;
      min-height: 100vh;
      gap: 0;
      position: relative;
    }

    /* Sidebar */
    .sidebar {
      background: var(--sidebar-bg);
      color: white;
      padding: 30px 0;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
      border-right: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      z-index: 100;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 40px;
      padding: 0 24px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .logo-text {
      font-size: 24px;
      font-weight: 700;
      background: linear-gradient(to right, #ffffff, #b8b8ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .sidebar-menu {
      list-style: none;
      margin-bottom: 40px;
    }

    .sidebar-menu li {
      margin-bottom: 4px;
    }

    .sidebar-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .sidebar-menu a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--primary-light);
      transform: translateX(-100%);
      transition: var(--transition);
    }

    .sidebar-menu a:hover {
      color: white;
      background: rgba(255,255,255,0.05);
    }

    .sidebar-menu a:hover::before {
      transform: translateX(0);
    }

    .sidebar-menu a.active {
      color: white;
      background: rgba(255,255,255,0.1);
    }

    .sidebar-menu a.active::before {
      transform: translateX(0);
    }

    .sidebar-menu i {
      width: 20px;
      text-align: center;
      font-size: 18px;
    }

    .user-profile {
      background: rgba(255,255,255,0.05);
      margin: 20px 24px;
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
    }

    .user-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
    }

    .user-id {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      font-family: monospace;
      margin-top: 4px;
    }

    /* Main Content */
    .main-content {
      padding: 30px;
      overflow-y: auto;
      max-height: 100vh;
    }

    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .header-left h2 {
      font-size: 32px;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
    }

    .header-left p {
      color: rgba(255,255,255,0.8);
    }

    .header-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .action-btn {
      background: white;
      border: none;
      padding: 14px 24px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      font-weight: 600;
      color: var(--dark);
      text-decoration: none;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .action-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      color: var(--primary);
    }

    .action-btn.primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
    }

    .action-btn.primary:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      color: white;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .stat-card {
      background: var(--card-bg);
      padding: 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    body.dark-mode .stat-card {
      background: #1e293b;
      border-color: rgba(255,255,255,0.1);
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
      z-index: 0;
    }

    .stat-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .stat-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
    }

    .stat-icon.income {
      background: linear-gradient(135deg, var(--success), #4cc9f0);
    }

    .stat-icon.expense {
      background: linear-gradient(135deg, var(--danger), #f72585);
    }

    .stat-icon.balance {
      background: linear-gradient(135deg, var(--warning), #f9c74f);
    }

    .stat-value {
      font-size: 36px;
      font-weight: 700;
      margin: 16px 0 8px;
      color: var(--dark);
      position: relative;
      z-index: 1;
    }

    body.dark-mode .stat-value {
      color: #e2e8f0;
    }

    .stat-label {
      font-size: 14px;
      color: var(--gray);
      font-weight: 500;
      position: relative;
      z-index: 1;
    }

    body.dark-mode .stat-label {
      color: #94a3b8;
    }

    .stat-change {
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      position: relative;
      z-index: 1;
    }

    .stat-change.positive {
      color: var(--success);
    }

    .stat-change.negative {
      color: var(--danger);
    }

    /* Charts */
    .charts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    @media (max-width: 1200px) {
      .charts-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .charts-grid {
        grid-template-columns: 1fr;
      }
    }

    .chart-container {
      background: var(--card-bg);
      padding: 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
    }

    body.dark-mode .chart-container {
      background: #1e293b;
      border-color: rgba(255,255,255,0.1);
    }

    .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .chart-header h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    body.dark-mode .chart-header h3 {
      color: #e2e8f0;
    }

    .chart-actions {
      display: flex;
      gap: 8px;
      background: rgba(0,0,0,0.05);
      padding: 4px;
      border-radius: var(--radius-sm);
    }

    .chart-action-btn {
      background: transparent;
      border: none;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      color: var(--gray);
      transition: var(--transition);
    }

    .chart-action-btn:hover {
      color: var(--primary);
    }

    .chart-action-btn.active {
      background: white;
      color: var(--primary);
      box-shadow: var(--shadow-sm);
    }

    body.dark-mode .chart-action-btn.active {
      background: #334155;
      color: #60a5fa;
    }

    canvas {
      width: 100% !important;
      height: 300px !important;
    }

    /* Transactions */
    .transactions-section {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    body.dark-mode .transactions-section {
      background: #1e293b;
      border-color: rgba(255,255,255,0.1);
    }

    .section-header {
      padding: 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    body.dark-mode .section-header {
      border-color: #334155;
    }

    .section-header h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    body.dark-mode .section-header h3 {
      color: #e2e8f0;
    }

    .filters {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .filter-select {
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: white;
      color: var(--dark);
      font-size: 14px;
      cursor: pointer;
      min-width: 140px;
    }

    body.dark-mode .filter-select {
      background: #334155;
      border-color: #475569;
      color: #e2e8f0;
    }

    .transactions-table {
      width: 100%;
      border-collapse: collapse;
    }

    .transactions-table th {
      text-align: left;
      padding: 20px 24px;
      background: rgba(0,0,0,0.02);
      font-weight: 600;
      color: var(--gray);
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }

    body.dark-mode .transactions-table th {
      background: rgba(255,255,255,0.02);
      color: #94a3b8;
      border-color: #334155;
    }

    .transactions-table td {
      padding: 20px 24px;
      border-bottom: 1px solid var(--border);
    }

    body.dark-mode .transactions-table td {
      border-color: #334155;
    }

    .transaction-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .transaction-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
    }

    .transaction-icon.expense {
      background: linear-gradient(135deg, var(--danger), #f72585);
    }

    .transaction-details h4 {
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 4px;
    }

    body.dark-mode .transaction-details h4 {
      color: #e2e8f0;
    }

    .transaction-details p {
      font-size: 14px;
      color: var(--gray);
    }

    .transaction-amount {
      font-weight: 700;
      font-size: 18px;
    }

    .transaction-amount.positive {
      color: var(--success);
    }

    .transaction-amount.negative {
      color: var(--danger);
    }

    .transaction-date {
      color: var(--gray);
      font-size: 14px;
    }

    .transaction-actions {
      display: flex;
      gap: 8px;
      opacity: 0;
      transition: var(--transition);
    }

    .transactions-table tr:hover .transaction-actions {
      opacity: 1;
    }

    .action-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.05);
      color: var(--gray);
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }

    body.dark-mode .action-icon {
      background: rgba(255,255,255,0.05);
      color: #94a3b8;
    }

    .action-icon:hover {
      background: var(--primary);
      color: white;
      transform: scale(1.1);
    }

    .action-icon.delete:hover {
      background: var(--danger);
    }

    .action-icon.edit:hover {
      background: var(--warning);
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(5px);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal {
      background: var(--card-bg);
      border-radius: var(--radius);
      width: 90%;
      max-width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,0.2);
      animation: slideUp 0.3s ease;
    }

    body.dark-mode .modal {
      background: #1e293b;
      border-color: rgba(255,255,255,0.1);
    }

    @keyframes slideUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .modal-header {
      padding: 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    body.dark-mode .modal-header {
      border-color: #334155;
    }

    .modal-header h2 {
      font-size: 24px;
      font-weight: 700;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    body.dark-mode .modal-header h2 {
      color: #e2e8f0;
    }

    .close-modal {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.05);
      border: none;
      cursor: pointer;
      color: var(--gray);
      transition: var(--transition);
    }

    body.dark-mode .close-modal {
      background: rgba(255,255,255,0.05);
    }

    .close-modal:hover {
      background: var(--danger);
      color: white;
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 24px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    body.dark-mode .form-group label {
      color: #e2e8f0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 16px;
      background: white;
      color: var(--dark);
      transition: var(--transition);
    }

    body.dark-mode .form-group input,
    body.dark-mode .form-group select,
    body.dark-mode .form-group textarea {
      background: #334155;
      border-color: #475569;
      color: #e2e8f0;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .modal-footer {
      padding: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: flex-end;
      gap: 12px;
    }

    body.dark-mode .modal-footer {
      border-color: #334155;
    }

    .btn {
      padding: 14px 32px;
      border-radius: var(--radius);
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
    }

    .btn-secondary {
      background: white;
      color: var(--gray);
      border: 1px solid var(--border);
    }

    body.dark-mode .btn-secondary {
      background: #334155;
      color: #94a3b8;
      border-color: #475569;
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--card-bg);
      padding: 20px 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 16px;
      transform: translateX(150%);
      transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 1001;
      border-left: 4px solid var(--success);
      max-width: 400px;
    }

    body.dark-mode .toast {
      background: #1e293b;
    }

    .toast.show {
      transform: translateX(0);
    }

    .toast.error {
      border-left-color: var(--danger);
    }

    .toast.warning {
      border-left-color: var(--warning);
    }

    .toast i {
      font-size: 24px;
      color: var(--success);
    }

    .toast.error i {
      color: var(--danger);
    }

    .toast.warning i {
      color: var(--warning);
    }

    /* Empty State */
    .empty-state {
      text-align: center;
      padding: 60px 20px;
    }

    .empty-state i {
      font-size: 64px;
      color: #e2e8f0;
      margin-bottom: 20px;
    }

    .empty-state h3 {
      font-size: 20px;
      color: var(--gray);
      margin-bottom: 10px;
    }

    .empty-state p {
      color: #94a3b8;
      margin-bottom: 30px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .dashboard-container {
        grid-template-columns: 1fr;
      }
      
      .sidebar {
        position: fixed;
        left: -280px;
        width: 280px;
        transition: left 0.3s ease;
        z-index: 1000;
      }
      
      .sidebar.active {
        left: 0;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .main-content {
        padding: 20px;
      }
    }

    @media (max-width: 768px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
      
      .charts-grid {
        grid-template-columns: 1fr;
      }
      
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .transactions-table {
        display: block;
        overflow-x: auto;
      }
      
      .dashboard-header {
        flex-direction: column;
        align-items: stretch;
      }
      
      .header-actions {
        width: 100%;
      }
      
      .action-btn {
        flex: 1;
        justify-content: center;
      }
      
      .filters {
        width: 100%;
      }
      
      .filter-select {
        flex: 1;
      }
    }

    @media (max-width: 480px) {
      .chart-container {
        padding: 16px;
      }
      
      .section-header {
        padding: 16px;
      }
      
      .transactions-table th,
      .transactions-table td {
        padding: 12px;
      }
      
      .transaction-item {
        gap: 8px;
      }
      
      .transaction-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    .menu-toggle {
      display: none;
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 999;
      background: white;
      border: none;
      padding: 12px;
      border-radius: var(--radius);
      cursor: pointer;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }

    body.dark-mode .menu-toggle {
      background: #334155;
      color: #e2e8f0;
    }

    .menu-toggle:hover {
      transform: scale(1.1);
    }

    .menu-toggle.active {
      left: 300px;
    }

    .hidden {
      display: none;
    }

    .text-center {
      text-align: center;
    }

    /* Budget Section */
    .budget-section {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      padding: 24px;
      margin-bottom: 30px;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
    }

    body.dark-mode .budget-section {
      background: #1e293b;
      border-color: rgba(255,255,255,0.1);
    }

    .budget-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .budget-progress {
      margin-bottom: 20px;
    }

    .progress-bar {
      height: 8px;
      background: rgba(0,0,0,0.1);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    body.dark-mode .progress-bar {
      background: rgba(255,255,255,0.1);
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--success), var(--primary));
      border-radius: 4px;
      transition: width 0.3s ease;
    }

    .budget-info {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--gray);
    }

    .category-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 15px;
    }

    .category-badge {
      padding: 6px 12px;
      background: rgba(67, 97, 238, 0.1);
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      color: var(--primary);
    }

    /* Loading Spinner */
    .spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(67, 97, 238, 0.1);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 20px auto;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Dark Mode Toggle */
    .theme-toggle {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border: none;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      z-index: 100;
    }

    .theme-toggle:hover {
      transform: rotate(180deg) scale(1.1);
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(0,0,0,0.05);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(67, 97, 238, 0.3);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: rgba(67, 97, 238, 0.5);
    }

    /* Additional styles for new features */
    .goal-card {
      background: var(--card-bg);
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      margin-bottom: 15px;
      transition: var(--transition);
    }
    
    body.dark-mode .goal-card {
      background: #334155;
      border-color: #475569;
    }

    .goal-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .goal-progress {
      height: 8px;
      background: rgba(0,0,0,0.1);
      border-radius: 4px;
      overflow: hidden;
      margin: 10px 0;
    }
    
    body.dark-mode .goal-progress {
      background: rgba(255,255,255,0.1);
    }
    
    .goal-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      border-radius: 4px;
      transition: width 0.3s ease;
    }
    
    .goal-info {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--gray);
      margin-bottom: 10px;
    }
    
    .goal-actions {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }
    
    .report-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    
    .report-table th,
    .report-table td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }
    
    body.dark-mode .report-table th,
    body.dark-mode .report-table td {
      border-color: #475569;
    }
    
    .report-table th {
      background: rgba(0,0,0,0.02);
      font-weight: 600;
      color: var(--gray);
    }
    
    body.dark-mode .report-table th {
      background: rgba(255,255,255,0.02);
      color: #94a3b8;
    }
    
    .ml-1 { margin-left: 4px; }
    .ml-2 { margin-left: 8px; }
  
    /* Footer Styles */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 30px 20px;
  margin-top: 40px;
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

body.dark-mode footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.creator {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.creator-name {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.creator-name:hover {
  color: white;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.social-icon:nth-child(1):hover { background: #E4405F; } /* Instagram */
.social-icon:nth-child(2):hover { background: #1877F2; } /* Facebook */
.social-icon:nth-child(3):hover { background: #0A66C2; } /* LinkedIn */
.social-icon:nth-child(4):hover { background: #333; } /* GitHub */

.copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile responsive adjustments for footer */
@media (max-width: 768px) {
  footer {
    padding: 20px 15px;
    margin-top: 30px;
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .creator {
    font-size: 14px;
  }
  
  .copyright {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}