/* Styles for the Card Gallery page */
/* Add any specific styles for card_gallery.php here */

/* Example: Style for the gallery container if needed */
/*
#card-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
*/

/* Example: Style for individual cards in the gallery */
/*
.gallery-card {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    color: var(--primary-text);
}
*/
