/* Einheitliche Button-Farbe für die ganze Seite */
.uk-button-primary {
    background: #444;        /* dunkles Grau */
    border-color: #444;
    color: #fff;
}

.uk-button-primary:hover {
    background: #222;        /* etwas dunkler beim Hover */
    border-color: #222;
}

/* Alternative: Outline-Button für hell/dunkel nutzbar */
.uk-button-default {
    border: 2px solid #fff;
    color: #fff;
}

.uk-section-default .uk-button-default {
    border-color: #000;
    color: #000;
}

.uk-section-default .uk-button-default:hover {
    border-color: #444;
    color: #444;
}

.logo {
    max-height: 50px;   /* passt zur Navbar */
    height: auto;       /* Verhältnis beibehalten */
    display: block;     /* vermeidet extra Abstand */
}