/* Shift Footer Styles */

#footer-small {
    display: none;
}

/* Show the small footer and hide the large footer for screens smaller than 1200px */
@media screen and (max-width: 1199px) {
    #footer-small {
        display: flex;
    }
    #footer-large {
        display: none;
    }
}

/* Show the large footer by default */
@media screen and (min-width: 1200px) {
    #footer-large {
        display: flex;
    }
}

.footer {
    width: 100%;
    height: 35px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--color-blue);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.user-info {
    color: white;
}

.footer-owner-link {
    color: white;
    text-decoration: none;
}

.footer-owner-link:hover,
.footer-owner-link:focus {
    color: white;
    text-decoration: underline;
}

.footer-logo {
    margin-left: auto;
    height: 25px;
}
