
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.nav-bar {
    background-color: #1a202c;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-weight: bold;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: white;
    background-color: #2d3748;
}

.nav-links a.active {
    color: white;
    background-color: #3182ce;
    font-weight: bold;
}

#redoc-container {
    margin-top: 0;
}
