        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 100%;
            overflow-x: auto;
            padding: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #ddd;
            margin-top: 10px;
        }
        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
            cursor: pointer; /* Added cursor pointer for sortable headers */
        }
        th {
            background-color: #f2f2f2;
            position: relative; /* Added relative positioning */
        }
        .sort-arrow {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            display: inline-block;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            opacity: 0.6;
        }
        .asc .sort-arrow {
            border-bottom: 6px solid #333; /* Arrow pointing upwards for ascending */
        }
        .desc .sort-arrow {
            border-top: 6px solid #333; /* Arrow pointing downwards for descending */
        }
        .actions a {
            margin-right: 5px;
            text-decoration: none;
            color: #333;
        }
        .build-dream {
            background-color: #f9f9f9;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        .build-dream a {
            display: inline-block;
            background-color:#12974c; /* #007bff;   nadi changed 20241009*/
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .build-dream a:hover {
            background-color: #0056b3;
        }
        .filter {
            background-color: #f9f9f9;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-bottom: 10px;
            position: relative; /* Added relative positioning */
        }
        .filter label, .filter select, .filter button {
            display: block;
            width: 100%;
            margin-bottom: 5px;
        }
        .clear-filters {
            position: absolute;
            top: 10px;
            right: 0; /* Adjust position as needed */
            cursor: pointer;
            color: #007bff; /* Blue color */
        }
        .clear-filters:hover {
            text-decoration: underline;
        }
        .active-filter {
            margin-top: 10px;
            font-size: 14px;
            font-weight: bold;
        }
        @media (max-width: 600px) {
            .build-dream a {
              /*  display: block;*/
                width: 19%;
                text-align: center;
                margin-bottom: 10px;
            }
            .filter {
                padding: 5px;
            }
            .filter label, .filter select, .filter button {
                width: 100%;
                margin-bottom: 3px;
            }
            .active-filter {
                margin-top: 5px;
            }
        }
        /* Conditional row colors based on status */
        tr.completed {
            background-color: #d3f5d3; /* light green */
        }
        tr.in-progress {
            background-color: #d9edf7; /* light blue */
        }
        tr.pending {
            background-color: #fdebd0; /* light orange */
        }
