.scheme-container, .information-container {
    display: none;
}

body {
    font-family: 'Archivo Variable', sans-serif;
}

.logo-bar {
    display: flex;
    background-color: #2c2c2b;
    height: 82px;
}

.logo {
    width: 127px;
    margin-left: 40px;
}

.tech-preview-warning {
    background-color: #FBBEA8;
    color: #9D3007;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    text-align: center;
}

.body {
    margin: 72px 155px;
    color: #0D0D0C;
    line-height: 20px;
    font-size: 14px;
}

code {
    color: #0D0D0C;
    font-family: 'Archivo Variable', sans-serif;
    font-size: 14px;
}

.nav {
    margin-top: 40px !important;
}

.nav-tabs .nav-link {
    margin-bottom: calc(-2 * var(--bs-nav-tabs-border-width));
}

.nav-tabs,
.nav-link.active {
    border-bottom-width: 2px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #002CFA;
}

.nav-tabs .nav-link.active {
    background-color: #F5F5F5;
    border-bottom-color: #002CFA;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #0D0D0C;
    font-weight: 600;
}

.nav-link {
    color: #0D0D0C;
    font-size: 14px;
    transition: none;
}

input {
    border-radius: 8px;
    height: 40px;
}

#input_apiKey {
    width: 350px;
    border: 1px solid #ccc;
    color: #0d0d0c;

    &::placeholder {
        color: #b3b3b3;
    }

    &:focus-visible,
    &:focus {
        border: 1px solid #002cfa;
        box-shadow: 0 0 0 2px #c7d1ff;
        outline: none;
    }
}

.token-access {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
    
}
.token-access input {
    padding-left: 10px;
}

.tab-content {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

a {
    margin-top: 0;
    margin-bottom: 10px;
    color: #002CFA;
    text-decoration: none;

    &:last-child {
        margin-bottom: 0;
    }
}

button {
    &.btn.btn-primary {
        background-color: #002CFA;
        border: none;
    }
        
    &.btn.btn-secondary {
        background-color: transparent;
        border: 1px solid #002CFA;
        color: #002CFA;

        &:hover {
            border-color: #4C6EE4;
            color: white;
        }

        &:active {
            border-color: #94A7FF;
        }
    }

    &.btn.btn-primary,
    &.btn.btn-secondary {
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.875rem;
        height: 35px;
        margin: 0;

        &:hover {
            background-color: #4C6EE4;
        }

        &:active {
            background-color: #94A7FF;
        }
    }
}

#migrating,
#overview {
    table {
        border-collapse: separate;
        border-spacing: 0;
        margin-bottom: 1rem;

        tr {
            &:first-child {
                th:first-child {
                    border-top-left-radius: 0.75rem;
                }

                th:last-child {
                    border-top-right-radius: 0.75rem;
                }
            }

            &:last-child {
                td:first-child {
                    border-bottom-left-radius: 0.75rem;
                }
    
                td:last-child {
                   border-bottom-right-radius: 0.75rem;
                }
            }

            th {
                border-top: 1px solid #ccc;
                font-weight: 500;
                text-transform: uppercase;
            }

            th,
            td {
                border-bottom: 1px solid #ccc;
                border-right: 1px solid #ccc;
                padding: 1rem;

                &:first-child {
                    border-left: 1px solid #ccc;
                }
            }
        }
    }
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}

h1 {
    font-size: 34px;
}

h3 {
    margin-bottom: 24px;
    font-size: 1.375rem;
}

h4 {
    margin-bottom: 1rem;
}

.swagger-ui .opblock-body pre.microlight {
    margin-bottom: 16px;
}

.swagger-ui .wrapper {
    padding: 0;
}

/* modal */
.modal-dialog {
    margin-top: 10vh;

    .modal-content {
        display: flex;
        gap: 1rem;
        border-radius: 24px;
        padding: 24px;

        .modal-header-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 20px;
            width: 20px;
            border-radius: 17px;

            &:hover,
            &:focus-visible,
            &:focus {
                background-color: rgb(13 13 12 / 5%);
                cursor: pointer;
                outline: none;
            }

            .btn-close {
                color: #5e5e5e;
                font-size: 0.625rem;
                opacity: 1;
                padding: 0;
                height: 20px;
                width: 20px;

                &:focus-visible,
                &:focus {
                    box-shadow: none;;
                    outline: none;
                }
            }
        }
    }

    .modal-header {
        border-bottom: 0;
    }

    .modal-body {
        * {
            font-size: 0.875rem;
        }

        #token_error_response {
            margin-top: 16px;
        
            &:empty {
                display: none;
            }
        }
    }

    .modal-footer {
        border-top: 0;
        justify-content: flex-start;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 0;
        gap: 4px;
    }

    .modal-header,
    .modal-footer {
        * {
            line-height: 1;
        }
    }
}

/* form */
form {
    line-height: 1.4;

    .form-control {
        border-radius: 8px;
        border: 1px solid #ccc;
        color: #0d0d0c;
        
        &:focus {
            border: 1px solid #002cfa;
            box-shadow: 0 0 0 2px #c7d1ff;
        }
    }
}

.form-label {
    margin-bottom: 0.25rem;
}

