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

.navbar {
    background-color: rgb(250, 250, 250);
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.navbar-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.navbar-links a {
    color: rgb(60, 60, 60);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.navbar-links a:hover {
    color: rgb(0, 0, 0);
}

.navbar-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: rgb(200, 200, 200);
}

#redoc-container {
    height: calc(100vh - 60px);
    overflow: auto;
}

.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: rgb(60, 60, 60);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 9998;
}

.scroll-to-top:hover {
    background-color: rgb(0, 0, 0);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}
