:root {
    --app-sans: "Zalando Sans Expanded", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

html, body {
    font-family: var(--app-sans);
}

.logout-btn {
    color: red; /* red text */
    text-decoration: none; /* remove underline */
    background: none; /* remove button background */
    border: none; /* remove border */
    padding: 0; /* optional, same as btn-link */
    font: inherit; /* inherit navbar font if you want */
    cursor: pointer; /* hand cursor like link */
}

    .logout-btn:hover {
        color: darkred; /* optional hover effect */
        text-decoration: none; /* still no underline */
    }
