﻿/* Header section */
body.layout-page .header {
    background-color: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1;
    height: 70px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

body.layout-page .top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 1em;
}

/* Header Logo */
body.layout-page .logo-container {
    display: flex;
    align-items: center;
    margin-top: 10px
}

body.layout-page .logo img {
    width: 250px;
    height: 57px;
    margin-top: 5px;
    vertical-align: middle;
}

/* Navigation bar */
body.layout-page .right-menu {
    display: flex;
    align-items: center;
}

body.layout-page .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Footer section */
body.layout-page footer {
    display: flex;
    justify-content: space-between;
    align-content: center;
    height: 62px;
    align-items: center;
    position: fixed;
    bottom: 0px;
    background-color: white;
    width: 100%;
    vertical-align: middle;
}

    .footer-logo {
        height: 25px;
    }
    body.layout-page footer .powered-content {
        margin-left: 25px;
    }

    body.layout-page footer .copyright-content {
        margin-right: 25px;
    }

    body.layout-page footer .powered-content .img {
        height: 25px;
    }

/* Hide scrollbar for Chrome, Safari and Opera */
body.layout-page .example::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body.layout-page .example {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* ==== Responsive Adjustments ==== */
@media(max-width: 768px) {
    body.layout-page .logo img {
        width: 160px;
        height: auto;
        margin-top: 15px;
    }

    body.layout-page .right-menu {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    body.layout-page footer {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        text-align: center;
    }

    body.layout-page footer .powered-content, footer.copyright-content {
        margin: 5px 0;
    }

    body.layout-page .footer-logo {
        height: 20px;
    }

    body.layout-page > div#large-screen-content {
        padding-bottom: 80px;
    }
}