/* Scrollbar */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: #EFF2F7; box-shadow: grey 0px 0px 4px inset; border-radius: 10px; }
body::-webkit-scrollbar-thumb { background: #25477B; border-radius: 10px; }
body::-webkit-scrollbar-thumb:hover { background: #0078D3; border-radius: 10px; }

/* Core content positioning and size style */
.centered {
    max-width: 1200px;
    margin: auto;
}

/* Footer positioning and size style */
.footer {
    max-width: 1200px;
    margin: auto;
    overflow-wrap: break-word;
    overflow: wrap;
}
img.social {
    height: 20px;
}

/* General page text style */
body {
    font-family: "Roboto", sans-serif;
    color: #3c5164;
    line-height: normal;
    margin-bottom: 0.5em;
    font-size: 100%;
}

/* Page title style */
.title {
    font-size: 2em;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #25477b;
}

/* Heading 1 style */
h1 {
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 1em;
    color: #0078d3;
    margin-bottom: 0.5em;
}

/* Heading 2 style */
h2 {
    font-size: 1.25em;
    font-weight: bold;
    padding-top: 0.5em;
    color: #25477b;
    margin-bottom: 0.25em;
}

ol,ul {margin: 0px;}
li {padding-top: 0.5em;}

.pill-text {
    padding: 5px;
    border: 1px solid #66788c;
    border-radius: 10px;
    margin: 0 10px 5px 0;
    display: table-cell;
    background-color: #66788c;
    color: white;
    font-size: 85%;
}

/* Hyperlink style */
a:link {color: #0078d3;}
a:visited {color: #0078d3;}
.screenReader {
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
}

/* Section separator and spacing style */
.section {
    padding-bottom: 3em;
    border-top: 0.25em dotted #66788c;
}

/* Pill button format */ 
button.pills {
    padding: 5px 15px;
    border: 1px solid #cfd5dc;
    border-radius: 30px;
    margin: 0 10px 5px 0;
    background-color: #cfd5dc;
    color: #3c5164;
}
button.pills:hover {background-color: #d1d6dd;}
button.pills.active {
    background-color: #0078d3;
    color: #ffffff;
    border: #0078d3;
}

/* Button style */
button {
    min-width: 150px;
    display: inline-block;
    background-color: #25477b;
    color: white;
    outline: none;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1em;
    font-weight: bold;
    border-radius: 12px;
    padding: 10px;
}
button:hover {background-color: #546E97;}

/* Container for webinar and practice content */
.box {
    width: 100%;
    min-width: 400px;
}

/* Style embedded content */
.embedVideo {
    border: 1px solid #cfd5dc;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.embedTutorial {
    border: none;
    width: 100%;
    aspect-ratio: 16/9;
}

/* Style the tip table */
.tipTable {margin: 0 auto;}
.tipCell {
    border: 1px solid #0078d3;
    border-left: 6px solid #0078d3;
    padding: 0.5em;
}

/* Style recommended learning table */
.pracTable {
    margin: 0;
    border-collapse: collapse;
    width: 80%;
    min-width: 400px;
}
.pracCell {
    border: 1px solid #cfd5dc;
    padding: 0.5em;
    width: 50%;
}