@font-face { 
    font-family: NotoSans; 
    src: url('fonts/NotoSansTC-ExtraLight.ttf');
    font-weight: lighter;
}

@font-face { 
    font-family: NotoSans; 
    src: url('fonts/NotoSansTC-Regular.ttf');
    font-weight: normal;
}

@font-face { 
    font-family: NotoSans; 
    src: url('fonts/NotoSansTC-Medium.ttf');
    font-weight: 500;
}

@font-face { 
    font-family: NotoSans; 
    src: url('fonts/NotoSansTC-Bold.ttf');
    font-weight: bold;
}

@font-face { 
    font-family: NotoSans; 
    src: url('fonts/NotoSansTC-Black.ttf');
    font-weight: 900;
}


/* RESET STILE DEFAULT */

*, *::before, *::after {
    box-sizing: border-box;
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    input {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 162, 66, 1) rgba(42, 42, 42, 1);
    :focus {
        outline: none;
    }

    a, a:link, a:visited  {
        text-decoration: none;
        color: #FBFBFB;
        font-size: 16px;
    }
    
    a:hover  {
        text-decoration: none;
        color: #FBFBFB;
    }
}

input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    -ms-appearance: checkbox !important;
    -o-appearance: checkbox !important;
    appearance: checkbox !important;
}

html *::-webkit-scrollbar {
    width: 6px;
    padding-right: 5px;
}

html *::-webkit-scrollbar-track {
    background: rgba(211, 211, 211, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(211, 211, 211, 0.2);
    margin: 60px 0px 10px 0px;
}

html *::-webkit-scrollbar-thumb {
    background: rgba(207, 162, 66, 0.6);
    border-radius: 100px;
}

body {
    font-family: "NotoSans";
    font-weight: normal;
    font-size: 14px;
    background-color: #1E1E1E;
    color: #FBFBFB;
    display: flex;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-wrap: anywhere;
}

/* GENERAL CSS */

.body-container {
    position: relative;
    min-width: 320px;
    max-width: 700px;
    min-height: 100%;
    background-color: #1E1E1E;
    padding: 15px;
}

.header-box {
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.body-header-img {
    width: 40%;
}

.name-page-text {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
}

.page-text-normal {
    margin-top: 20px;
    font-size: 16px;
}

.metodapi-box {
    background-color: #2C2C2C;
    border-radius: 15px;
    padding: 15px;
    margin: 30px 0;
}

.metodapi-header-name {
    font-size: 20px;
    font-weight: 500;
}

.metodapi-header-text {
    font-size: 16px;
    margin-top: 20px;
}

.content-required-name {
    font-size: 20px;
    font-weight: 500;
}

.required-container {
    display: flex;
    width: 100%;
    margin-top: 20px;
    align-items: center;
}


.content-required-text-name {
    font-weight: bold;
}

.response-body-text {
    font-weight: bold;
    margin-top: 20px;
}

.content-required-text-name-text {
    margin-left: auto;
}

.content-response {
    border-radius: 9px;
}

.response-status-ok {
    background-color: #42CF83;
    padding: 5px 15px;
    border-radius: 9px;
    font-weight: bold;
    min-width: 60px;
    margin-left: 20px;
}

.request-post {
    background-color: #CFA242;
    padding: 5px 15px;
    border-radius: 9px;
    font-weight: bold;
    min-width: 70px;
    margin-left: 20px;
}

.response-status-failed {
    background-color: #CF4242;
    padding: 5px 15px;
    border-radius: 9px;
    font-weight: bold;
}

.metodapi-content {
    margin-top: 30px;
}

.content-response-name {
    font-size: 20px;
    font-weight: 500;
    margin-top: 40px;
}

.response-json {
    background-color: #1E1E1E;
    border-radius: 15px;
    padding: 30px;
    margin-top: 10px;
}

.response-json pre {
    margin: 0;
    white-space: pre-wrap;
}

.content-required-box {
    margin-top: 40px;
}

.code {
    margin-top: 20px;
    background-color: #2C2C2C;
    border-radius: 20px;
    padding: 20px;
}

.code pre {
    white-space: pre-wrap;
    margin: 0;
}

