.card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Allows wrapping if cards exceed width */
    gap: 10px; /* Adds spacing between cards */
}