﻿.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.content {
    flex: 1 0 auto;
    padding: 2rem 0;
}

.main-content {
    padding-bottom: 4rem; /* Add padding to the bottom of the main content */
}

.footer {
    flex-shrink: 0;
    background-color: #005670;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem; /* Add margin to the top of the footer */
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: #E1E37C;
    }

@media (max-width: 767.98px) {
    .footer .col-sm-6 {
        text-align: center;
    }
}
