/* Custom styling for category items */

/* Hide the category footer */
.category-footer {
    display: none;
}

/* Ensure category links display in a column */
.category-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    max-height: none; /* Remove height limitation */
    overflow-y: visible;
}

.category-content a {
    color: #0c59a2;
    text-decoration: none;
    padding: 0.1rem 0;
    border-bottom: none; /* Remove border between links */
    font-weight: bold;
    font-family: var(--font-sans-serif);
    display: block; /* Ensure block display for column layout */
    width: 100%;
}

.category-content a:hover {
    color: #074179;
}

/* Style the header with white background and no border */
.category-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: none !important; /* Remove border */
    background-color: white !important; /* White background */
}

/* Remove border from the category card */
.category-card {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}
