.category-heading {
    margin-top: 2rem; /* More spacing above each category */
    margin-bottom: 1rem; /* Prevents category title from overlapping with cards */
    font-size: 1.5rem;
    font-weight: bold;
}

.card {
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Make all cards the same height */
}

.card-body {
    flex-grow: 1; /* Ensures content fills available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}