/*
Theme Name: Twenty-twentyfive-md
Theme URI: 
Author: MD
Author URI: 
Description: Modified by MD
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: twenty-twentyfive-md
Tags: 
*/

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom bullet list style with cat paw icon */
/* Add class "paw-list" to any <ul> element to enable paw bullets */
ul.paw-list {
    list-style: none;
    padding-left: 0;
}

ul.paw-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

ul.paw-list li::before {
    content: "\f1b0";
    /* Font Awesome paw icon Unicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: inherit;
    font-size: 0.9em;
    line-height: inherit;
}