/* Add some styling for the table */
.project-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.project-table th, .project-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.project-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.project-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-table {
        overflow-x: auto; /* Enable horizontal scrolling on smaller screens */
    }
}