/* Sticky Footer Styles */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;  /* Entfernt mögliche Standard-Margins */
}

main {
    flex: 1 0 auto;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    margin-bottom: 0;  /* Entfernt mögliche Abstände */
    padding-bottom: 0; /* Entfernt mögliche Abstände */
}

footer {
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    line-height: 1;  /* Verhindert zusätzliche Zeilenhöhe */
}

#footer-placeholder {
    background-color: var(--background);
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    display: block;  /* Verhindert unerwünschte Abstände */
}

/* Entfernt mögliche Abstände zwischen Elementen */
footer > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
} 