.site-footer {
    background: #1e1e1e;
    color: #ccc;
    margin-top: 15px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* venstre */
.footer-left p {
    margin: 0;
}

/* midt links */
.footer-center {
    display: flex;
    gap: 20px;
}

.footer-center a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-center a:hover {
    color: white;
}

/* højre */
.footer-right p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

/* til admin login */
.footer-login-link{
    display:inline-block;
    margin-top:6px;
    font-size:12px;
    color:#aaa;
    text-decoration:none;
    opacity:0.7;
}

.footer-login-link:hover{
    color:white;
    opacity:1;
}
/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {

}
/* landscape */
@media (min-width: 601px) and (max-width: 1024px) and (orientation: landscape){
    .site-footer {
        margin-top: 5px;
    }

    .footer-container {
        /*flex-direction: column;*/ /* Ændrer fra række til kolonne */
        /*gap: 5px;*/
        padding: 0px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
    }

        .footer-left p,
    .footer-center,
    .footer-right p,
    .footer-login-link {
        font-size: 0.8rem; /* Samlet alle tekst-størrelser i én regel */
    }
   .footer-login-link {
        display: block;
        width: 100%;
    }

}

/* mobil */
@media (min-width: 0px) and (max-width: 600px){
    .footer-container {
        flex-direction: column; /* Ændrer fra række til kolonne */
        gap: 15px;
        padding: 5px;
        text-align: center;
    }

    .footer-left p,
    .footer-center,
    .footer-right p,
    .footer-login-link {
        font-size: 0.8rem; /* Samlet alle tekst-størrelser i én regel */
    }

    .footer-center {
        gap: 10px; /* Mindre mellemrum mellem links på mobil */
    }

    .footer-login-link {
        display: block;
        width: 100%;
    }
}