/* User-Agent Stylesheet Approximation */

/* General container divs */
.custom-page-container div {
    display: block;
}

/* Paragraphs */
.custom-page-container p {
    display: block;
    margin: 1em 0;
}

/* Strong (bold text) */
.custom-page-container strong {
    font-weight: bolder;
}

/* Emphasized text (italic) */
.custom-page-container em {
    font-style: italic;
}

/* Headings (H3 and H4) */
.custom-page-container h3 {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
    margin: 1em 0;
}

h4 {
    display: block;
    font-size: 1em;
    font-weight: bold;
    margin: 1.33em 0;
}

/* Unordered Lists */
.custom-page-container ul {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 40px;
    list-style-type: disc;
}

/* List Items */
.custom-page-container li {
    display: list-item;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

/* Anchors (Links) */
.custom-page-container a {
    color: -webkit-link;
    text-decoration: underline;
    cursor: pointer;
}

/* Breaks */
.custom-page-container br {
    display: inline;
}

/* Line break styles */
.custom-page-container hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0.5em 0;
    padding: 0;
}