﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
}

form, #main-content {
    flex: 1;
}

#main-scroll-wrapper {
    flex: 1; 
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

.main-content {
    flex: 1;
    padding-left:10px;
    padding-right:10px;
}

#custom-footer {
    text-align: center;
    padding: 30px 10px;
    background-color: #f8f9fa;
    font-family: sans-serif;
    clear: both;
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box;
}

#custom-footer .footer-nav {
    margin-bottom: 15px;
}

#custom-footer .footer-nav a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    padding: 5px 10px;
}

#custom-footer .footer-nav a:hover {
    text-decoration: underline;
}

#custom-footer .footer-divider {
    color: #cccccc;
    font-size: 14px;
}

#custom-footer .footer-copyright {
    color: #666666;
    font-size: 12px;
    margin-top: 10px;
}

@media screen and (max-width: 600px) {
    #custom-footer .footer-nav a {
        display: block;
        padding: 10px 0;
    }
    #custom-footer .footer-divider {
        display: none;
    }
}

