/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 10 2025 | 16:02:17 */
/* Apply the style to all headings */
h2, h3, h4, h5, h6 {
    background-color: #4285F4; /* Blue background */
    color: #ffffff; /* White text */
    font-size: 1.5em; /* Adjust font size based on the heading */
    font-weight: bold;
    padding: 15px 30px; /* Spacing around the text */
    border-radius: 25px; /* Rounded corners */
    display: inline-block; /* Prevent full-width styling */
}

/* Adjust font size based on heading level */
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1em; }
