.category-card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    display: block;
}

.category-card:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.category-card img {
    max-width: 40px;
    margin-bottom: 0.5rem;
}

.category-label {
    display: block;
    font-weight: 500;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}