/* Exclude elements with the header class */
body *:not(.header):not(.header_style_01) ol,
body *:not(.header):not(.header_style_01) ul {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Exclude header from list styles */
body *:not(.header):not(.header_style_01) ol ::marker {
    color: navy;
}
body *:not(.header):not(.header_style_01) ul ::marker {
    color: navy;
    content: "🔹 ";
}

/* Exclude header from list items */
body *:not(.header):not(.header_style_01) ol li {
    list-style-type: decimal;
    margin-left: 40px;
}
body *:not(.header):not(.header_style_01) ul li {
    list-style-type: square;
    margin-left: 40px;
}

/* Apply styles only to div#about */
div#about p {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: justify;
}
div#about h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Exclude header from styling headings */
body *:not(.header):not(.header_style_01) h1 {
    text-shadow: 4px 4px 2px #00000080;
}

body *:not(.header):not(.header_style_01) h3.date {
    font-weight: bold;
    background-color: #ffffff80;
    padding-top: 10px;
    padding-bottom: 10px;
}

body *:not(.header):not(.header_style_01) h4 {
    padding-top: 10px;
    padding-bottom: 10px;
}

