/**
 * Brandpirate Custom Theme
 * Nur gezielte Anpassungen - alles andere bleibt Standard
 */

/* ========== FOOTER ANPASSUNGEN ========== */

/* Footer-Box: Kasten entfernen */
#body-public footer {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* Alle Links erstmal ausblenden */
#body-public footer a {
    display: none !important;
}

/* Nur Impressum und Datenschutz Links anzeigen */
#body-public footer a[href*="impressum"],
#body-public footer a[href*="datenschutz"] {
    display: inline !important;
    color: #666 !important;
    font-size: 12px !important;
    text-decoration: none !important;
}

#body-public footer a[href*="impressum"]:hover,
#body-public footer a[href*="datenschutz"]:hover {
    text-decoration: underline !important;
}

/* Pipe-Zeichen zwischen den Links */
#body-public footer a[href*="impressum"]::after {
    content: " | " !important;
    color: #666 !important;
}

/* ========== HEADER / LOGO ANPASSUNGEN ========== */

/* Logo größer machen und vertikal zentrieren */
#header #nextcloud .logo {
    width: 120px !important;
    margin-top: 10px !important;
    background-position: center center !important;
}

/* Mehr Platz für das Logo im Container - Abstand zum Titel */
#header #nextcloud {
    padding-inline-start: 160px !important;
}

/* Zusätzlicher Abstand für header-info */
#header .header-appname,
#header .header-info {
    margin-inline-start: 15px !important;
}


