.footer {
    width: var(--header-width);
    left: calc((100% + var(--sidebar-width)) / 2);
    transform: translateX(-50%);
    position: fixed;
    bottom: 0;
    height: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: var(--AD-white);

    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 11px;
    color: #000000;
}

.footer-container {
    width: var(--main-width);
    left: calc((100% + var(--sidebar-width)) / 2);
    height: auto; /* Висота контейнера автоматично підлаштовується */
    margin-left: 27.5px;
    display: flex; /* Розташовує елементи горизонтально */
    align-items: flex-end; /* Вирівнює елементи по нижньому краю */
}

