    body {
      margin: 0;
      font-family: system-ui, sans-serif;
    }
    .sidebar {
      width: 250px;
      height: 100vh;
      background-color: #f8f9fa;
      border-right: 1px solid #dee2e6;
      display: flex;
      flex-direction: column;
    }
    .sidebar h4 {
      padding: 1rem;
      margin: 0;
      border-bottom: 1px solid #dee2e6;
      background-color: #e9ecef;
    }
    .sidebar .nav {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .sidebar .nav-link {
      padding: 0.75rem 1rem;
      color: #333;
    }
    .sidebar .nav-link:hover {
      background-color: #e2e6ea;
    }
    .sidebar .nav-bottom {
      margin-top: auto;
      border-top: 1px solid #dee2e6;
      padding: 1rem;
    }
    .main-content {
      padding: 2rem;
      flex-grow: 1;
    }
    /* Apply Montserrat to the entire body */
    body {
        font-family: 'Montserrat', sans-serif; /* Fallback to a generic sans-serif */
    }

    /* You might want to apply it to specific elements as well, e.g., headings */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
    }

    /* Example of using different weights if you included them from Google Fonts */
    .my-light-text {
        font-weight: 300; /* If you selected Montserrat Light */
    }

    .my-bold-text {
        font-weight: 700; /* If you selected Montserrat Bold */
    }

     /* For budget form */
    .form-control:focus, .form-select:focus {
      border-color: #86b7fe;
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    /* For Client Detail */
      /* Timeline styles for activity feed */
    .timeline {
      position: relative;
      padding-left: 30px;
    }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
  }
  
  .timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
  }
  
  .timeline-item:last-child {
    padding-bottom: 0;
  }
  
  .timeline-marker {
    position: absolute;
    left: -21px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    border: 2px solid white;
    box-shadow: 0 0 0 2px #e9ecef;
  }
  
  /* Hover effects */
  .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
  }
  
  .progress {
    transition: transform 0.2s ease;
  }
  
  tr:hover .progress {
    transform: scaleY(1.5);
  }

  /* For Budget Home */
  /* Hover effect for table rows */
  .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
  }
  
  /* Better link styling in tables */
  .table a {
    color: inherit;
  }
  
  .table a:hover {
    color: var(--bs-primary);
  }
  
  /* Progress bar animations on hover */
  .progress {
    transition: transform 0.2s ease;
  }
  
  tr:hover .progress {
    transform: scaleY(1.5);
  }

  .mobile-header {
    transition: all 0.3s ease;
  }