/* assets/styles/app.css */

nav {
    background: #333;
    color: white;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.content {
    padding: 2rem;
    font-family: sans-serif;
}

.auth-status {
    margin-left: auto;
    font-size: 0.9rem;
}

.btn-keycloak {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0085af;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-keycloak:hover {
    background-color: #006a8c;
}