/*
styles.css

Author: Sean Maden

Main website styles. Includes styles for header, body, footer, menu, links, and basic elements.

Additional styles for pages stored at `./inst/styles/*`.


/* Added for year in text 2024 */

body { margin: 0; padding: 0; width: 100%; } 

.container { width: 100% margin: 0 auto; }

@media (max-width: 1000px) { 
    .container { padding: 10px; } 
}

.scroll-box { 
    width: 80%; 
    height: 250px; 
    overflow-y: scroll; 
    border: 1px solid #ccc; 
    padding: 10px; 
}
.tooltip { position: relative; display: inline-block; cursor: pointer; } 
.tooltip .tooltiptext { visibility: hidden; width: 500px; background-color: #555; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -60px; opacity: 0; transition: opacity 0.3s; } 
.tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }
.left-align { text-align: left; }

*/

/* The side navigation menu */
.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 250px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: hsla(241, 54%, 35%, 0.85); /* Black background color */
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}




.fa {
    padding: 20px 2px 2px 20px;
}
.menu-link a {
    transition: 0.5s;
    padding: 20px 2px 2px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #ffb5fb;
    &:hover {
        font-size: 14px;
    }
    &:active {
        font-size: 14px;
    }
    &:visited {
        font-size: 14px;
    }
}

/* The navigation menu links */
.menu-sitemap {
    pext-decoration: none;
    color: #ffb5fb;
    display: block;
}
.menu-sitemap a {
    transition: 0.5s;
    padding: 2px 2px 2px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #ffb5fb;
    display: block;
    &:hover {
        font-size: 14px;
    }
    &:active {
        font-size: 14px;
    }
    &:visited {
        font-size: 14px;
    }
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
    &:hover {
        font-size: 40px;
    }
}
.sidenav-open-container {
    z-index:1;
    position: fixed;
    justify-content: center;
    width: 45px;
    height: 25px;
    /**/bottom: 30px;
    left: 30px;/**/
    position: fixed;
}
.sticky {
    padding: 10px;
    width: 300px;
    height: 17px;
    z-index: 0;
    top: 0;
    /*bottom: 30px;*/
    left: 30px;
    position: fixed;
    /*background-color: #101357;*/
    background-color: hsla(241, 54%, 35%, 1);
    outline: 1px solid white;
    box-shadow: 4px 4px 4px rgba(1, 1, 1, 0.5);/**/
}
.sticky-back {
    padding: 20px;
    width: 100%;
    height: 100px;
    z-index: -1;
    top: 0;
    left: 58px;
    /*bottom: 30px;
    left: 30px;*/
    position: fixed;
    /*background-color: #101357;*/
    background-color: hsla(241, 54%, 35%, 0.9);
}
.name {
    font-size: 20px;
}
.openbtn {
    left: 10px;
    position: flex;
    align: center;
}

.title {
    left: 100px;
}

.column {
  float: left;
  width: 35%;
}
.column2 {
  float: left;
  width: 40%;
  padding: 5px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*begin index.html div content*/
.twitter-container {
    padding: 10px;
    margin-bottom: 10px;
}
.pdf-container {
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
}
.container {
    display: inline-block;
    position: relative;
    justify-content: center;
}
/*end index.html div content*/

/* color/style */

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left 0.5s;
    padding: 20px;
}
#wrapper.toggled #page-content-wrapper {
    margin-left: 220px; /* Width of the sidebar */
}
.wrapper {
    display: flex;
}
#content {
    flex-grow: 1;
    padding: 40px;
    /*background-color: #101357;*/
    background-color: hsla(241, 54%, 35%, 0.7);
    margin-left: 0px;
    margin-top: 0;
    top: 0;
}

.bodymain {
    /*background-color: #101357;*/
    background-color: hsla(241, 54%, 35%, 0.9);
}

body {
    hieght: 150%;
    width: 100%;
    /*background-color: #c6c6cc;*/
    background-color: hsla(241, 54%, 35%, 0.9);
    font-family: Helvetica;
    font-size: 18px;
    color: #75d6da;
    overflow: visible;
    background-image: url("./inst/media/jpg/bg.jpg");
    background-size: cover;
    background-attachment: fixed;
}

/*change link color*/
a, a:hover, a:active, a:visited {
    color: #ffb5fb;
    font-size: 16px;
    font-family: Helvetica;
    &:hover {
        color: white;
    }
}
/*social media hove link icon styles*/
.aicon {
    font-size: 24px;
    &:hover {
        color: white;
        font-size: 22px;
    }
}