html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    height: 70px;
    background-color: var(--eld-dark);
}

.header-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
}

.body-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    overflow: auto;
}

.footer {
    padding: 1rem;
    background-color: #f5f5f5;
    text-align: right;
}

.gap-1 {
    gap: 1rem;
}
