/***********************************************/
/* Shawnee.css - Updated CSS                   */
/***********************************************/

/* Universal Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.166;
    background: #cccccc url("/Assets/images/css/bg_shawnee.jpg") repeat;
    font-size: 101%;
    overflow-x: hidden;
}

/******* Hyperlink Styles *******/
a {
    color: #005FA9;
    text-decoration: none;
}

a:hover {
    color: #CC0000;
    text-decoration: underline;
}

/************ Header Tag Styles ************/
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #334d55;
}

h1 { font-size: 1.5rem; color: #334d55; }
h2 { font-size: 1.25rem; color: #006699; }
h3 { font-size: 1rem; }
h4 { font-size: 0.875rem; color: #333333; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.5rem; }

/*************** List Styles ***************/
ul {
    list-style-type: square;
    padding: 4px 0;
}

ul ul { list-style-type: disc; }
ul ul ul { list-style-type: none; }

/********* Form and Input Styles *********/
form, input {
    font-family: Arial, sans-serif;
}

label {
    font-weight: bold;
    color: #334d55;
}

/********** Table Styles **********/
table {
    width: 100%;
    border-collapse: collapse;
}

td {
	padding: 5px; /* Adjust padding as needed */
    word-wrap: break-word; /* Prevents content overflow */
}

/************* Navigation and Layout Styles *************/
#pageNav {
    float: left;
    width: 20%;
    max-width: 200px;
    padding: 0;
    background-color: #F5f7f7;
    border-right: 1px solid #cccccc;
    font-size: 0.875rem;
}

#content {
    padding: 10px;
    margin: 0;
    border-left: 1px solid #ccd2d2;
    background-color: #FFFFFF;
    position: relative;
    float: none;
    font-size: 87%;
    width: calc(100% - 200px); /* Adjust width dynamically */
    margin-left: 200px; /* Align next to #pageNav */
}

#pagecell1 {
    margin: 0 auto;
    padding: 10px;
    background-color: #ffffff;
    max-width: 1200px;
}

#masthead {
    width: 100%;
    padding: 10px;
    text-align: center;
}

/************* Global Navigation Styles ****************/
#globalNav {
    width: 100%;
    min-width: 300px; /* Adjust for smaller screens */
    height: 32px;
    background-image: url("/Assets/images/css/glbnav_background.gif");
}

a.glink {
    font-size: small;
    color: #000000;
    font-weight: bold;
    padding: 2px 5px;
    display: inline-block;
    border-right: 1px solid #8FB8BC;
}

a.glink:hover {
    background-image: url("/Assets/images/css/glblnav_selected.gif");
    text-decoration: none;
}

/************* Breadcrumb Styles **************/
#breadCrumb {
    padding: 5px 10px;
    font-size: 0.875rem;
    color: #AAAAAA;
}

#breadCrumb a {
    color: #AAAAAA;
}

#breadCrumb a:hover {
    color: #005FA9;
    text-decoration: underline;
}

/************** Feature and Story Styles **************/
.feature, .story {
    padding: 10px;
    font-size: 0.875rem;
}

.feature h3, .story h3 {
    font-weight: bold;
    color: #000000;
    padding: 5px 0;
}

.story a.capsule {
    font-weight: bold;
    color: #005FA9;
    display: block;
    padding-bottom: 5px;
}

.story a.capsule:hover {
    text-decoration: underline;
}

/************ SiteInfo and SectionLinks Styles **************/
#siteInfo {
    clear: both;
    border-top: 1px solid #cccccc;
    font-size: small;
    color: #cccccc;
    padding: 10px;
}

#sectionLinks {
    margin: 0;
    padding: 0;
}

#sectionLinks a {
    display: block;
    padding: 5px 10px;
    background-image: url("/Assets/images/css/bg_nav.jpg");
    color: #21536A;
    border-bottom: 1px solid #cccccc;
}

#sectionLinks a:hover {
    background-color: #DDEEFF;
    text-decoration: none;
}

/************ Responsive Design **************/
@media (max-width: 768px) {
    #pageNav {
        width: 100%;
        max-width: 100%;
        float: none;
        border-right: none;
    }

    #content {
        width: 100%;
        margin: 0;
        padding: 10px;
        border-left: none;
    }
    
    #utility {
        position: relative;
        width: auto;
        text-align: center;
    }

    #globalNav {
        height: auto;
    }

    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1rem;
    }

    a.glink {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    #globalNav {
        height: auto;
    }

    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 0.875rem;
    }

    #content {
        padding: 5px;
    }

    img {
        width: 100%;
        height: auto;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
