﻿@import "variables.css";

html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the root stretches the full viewport height */
}

.responsive-grid {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Takes up 100% of the viewport height */
}

.contentPanel {
    flex: 1;
}

/*
.responsive-grid
{
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}
*/

.page-layout {
    width: 100%;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
}

#dialogContent,
#dialogMessage {
    font-size: 14px;
    width: 100%
}

.border-box {
    box-sizing: border-box;
}

.render-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.page-top {
    background-color: var(--marine);
    height: 40px;
}

.logo-box {
    border-bottom: 2px dotted var(--marine);
}

.logo {
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.ms-container {
    max-width: 95% !important;
    width: 95% !important;
}

.ms-row {
    display: block;
    color: black;
}

.legal-notice {
    float: left;
    padding-left: 10px;
    width: 60%;
}

.footer-left {
    width: 60%;
    color: var(--soft-white);
}

.footer_new {
    padding-top: 15px;
    padding-bottom: 3px;
    min-height: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--marine);
    height: 125px;
    color: var(--soft-white);
}

.visit-accessibility {
    float: right;
    text-align: right;
    color: var(--soft-white);
}

.logo-info-separator {
    margin-right: 3px;
}

.nav-bar-menu-item {
    font-size: 14px;
    color: var(--ink);
    font-weight: bold;
}

.icon-border-radius {
    border-radius: 8px;
    background-color: var(--marine);
}

.icon img {
    background: var(--white);
    border-radius: 20px;
}

    .icon img:hover {
        background: var(--soft-white);
    }

.access {
    float: right;
    text-align: right;
    text-decoration-line: underline;
    color: var(--soft-white);
    padding-left: 10px;
}

