@charset "utf-8";
        /* Sticky Header Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
body, html 
{
    width: 100%;
    min-height: 80vh;
    background-color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content horizontally */
    align-items: center;
    overscroll-behavior: none;
}
.header 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    padding: 20px 10px;
    z-index: 100;
}
.header a 
{
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    border-radius: 4px;
}

.header a.logo 
{
    font-size: 25px;
    font-weight: bold;
}
.header a:hover 
{
    background-color: dodgerblue;
    color: black;
}
.header-right 
{
    float: right;
}
.main-content 
{
    padding: 20px;
    overflow: auto;
}     
.footer 
{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    font-size: 1em; 
    font-family: Arial, Helvetica, sans-serif; 
}
.footer a:hover 
{
    background-color: dodgerblue;
    color: black;
    font-size: 1em; 
}  
.footer-line
{
    width: 100%;  /* Adjust the width as needed */
    border-top: 1px solid black; /* Customize the line style */
}
@media (max-width: 768px) 
{
    /* Adjust styles for screens up to 768px wide */
    .header 
    {
        flex-direction: column; /* Stack header items vertically */
        align-items: flex-start; /* Align items to the left */
        padding: 10px; /* Reduce padding for smaller screens */
    }
    .header-right 
    {
        margin-top: 10px; /* Add margin to separate header-right items */
    }      
    body, html 
    {
        font-size: 14px; /* Adjust font size for smaller screens */
        margin: 0; /* Remove default margin to fully utilize screen space */
        padding: 0; /* Remove default padding to fully utilize screen space */
        overscroll-behavior: none;
    }
    .main-content 
    {
        padding: 20px;
        overflow: auto;
    }
    .footer 
    {
        font-size: 12;
        
    }
    ol 
    {
        margin-left: 20px; /* Adjust the value to set the desired indentation */
    }

    li 
    {
        margin-left: 20px; /* Optional: Add some space between list items */
    } 
    .indent 
    {
        margin-left: 20px; /* Adjust the value to set the desired indentation */
    } 
    p 
    {
        margin-left: 0; /* Remove indentation for smaller screens */
        text-align: left; /* Align text to the left for better readability on smaller screens */
    
    } 
    .footer-line 
    {
        width: 100%; /* Adjust for smaller screens */
    }
 }