html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
:root {
    --header-height: 64px; 
    --footer-height: 88px;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-banner{
    display: flex;
    align-items: center;
}
.user-banner-avatar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: lightgray;
}
.user-banner-name{
    font-weight: bold;
    margin-left: 10px;
}
.homePage, .errorPage {
    background-color: #F7F9FE;
}
.loginPage{
    margin: 0;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 500;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    background-color: #0046fe;
}
.loginPage .loginBgImg {
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
    margin: auto;
    display: block;
    width: 0px;
    height: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.loginPage .MuiCardHeader-title {
    margin-bottom: 2px;
}
.loginPage .footer-container {
    display: none;
}
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding: 40px;
    overflow: hidden;
}
.error-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    padding: 20px;
}
.error-message {
    margin: 0;
}
.error-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex: 1;
    overflow: hidden;
}
.error-image {
    max-width: 445px;
    max-height: calc(100vh - var(--header-height) - var(--footer-height));
    object-fit: contain;
}
.main-container {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
}
.dashboard-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}
.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}
.dashboard-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .dashboard-content {
        grid-template-columns: 1fr; 
    }
}

/* Temp suppression padding autoMainId*/
#autoMainId {
    padding:0;
}
