html body {
    background-color: #EDF0F5;
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.header {
    background-color: #fff;
    display: flex;
    justify-content: center;
    height: 72px;
    padding: 0 64px;
}

.header .logo {
    max-height: 50px;
    max-width: 130px;
}

.content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-footer {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 20px 0;
    flex-shrink: 0;
    margin-top: 20px
}

.page-footer img {
    margin-right: 8px;
    height: 20px;
}

.white-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    align-items: center;
}

.layout-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sign-in-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sign-in-button {
    margin-right: 8px;
    color: #0055ff;
    text-decoration: none;
}

.sign-in-button > span {
    font-weight: 700;
}

.sign-in-button:hover > span {
    color: #3E7EFC;
}

.sign-in-button:hover > img {
    filter: invert(40%) sepia(87%) saturate(2308%) hue-rotate(207deg) brightness(101%) contrast(98%);
}

.status-loading-animated-ellipsis:after {
    display: inline-block;
    content: '';
    white-space: pre-wrap;
    animation: status-loading-ellipsis-animation 2000ms infinite;
}

@keyframes status-loading-ellipsis-animation {
    0% { content: "   "; }
    25% { content: ".  "; }
    50% { content: ".. "; }
    75% { content: "..."; }
    100% { content: "   "; }
}

.loading-text {
    display: flex;
    justify-content: center;
    color: #05F;
    font-size: 20px;
    font-weight: 400;
    margin-top: 60px;
}

@media only screen and (max-width: 1440px) {
    .header {
        padding: 0 20px;
    }

    .content {
        padding: 0 20px;
        width: auto;
    }
}

@media only screen and (max-width: 600px) {
    .content {
        padding: 0 0px;
    }
}