.list-cards ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    
    /* This removes the dots */
    list-style: none !important; 
    
    /* This removes the default list indentation */
    padding-left: 0 !important; 
    margin-left: 0 !important;
}

.list-cards ul li {
    margin: 0;
    padding: 20px;
    border: 1px solid var(--background-modifier-border);
    border-radius: 8px;
    background-color: var(--background-secondary);
    text-align: center;
}

.list-cards ul li::before {
    display: none !important;
    content: none !important;
}