:root {
    --color-red: #941f47;
    --color-green: #6d9d50;
    --color-blue: #1783c2;
    --font-size-default: 18px;
    --font-size-small: 16px;
    --font-size-xsmall: 14px;
    --font-size-h1: 48px;
    --font-size-h2: 34px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 22px;

}
.container {
    width: 90%;
    max-width: 1280px;
    min-width: 320px;
    margin: auto;
}
h1 {
    font-size: var(--font-size-h1);
    color: var(--color-red);
    text-align: center;
}

h2 {
    font-size: var(--font-size-h2);
    color: var(--color-red);
    margin-bottom: 20px !important;
}

h3 {
    font-size: var(--font-size-h4);
    color: rgb(0, 0, 0);
}


h4 {
    font-size: var(--font-size-h5);
    color: var(--color-red);
    margin-top: 50px !important;
}

p,
th,
li,
td {
    font-size: var(--font-size-default);
}

li {
    margin-bottom: 8px;
}
.slogan {
    font-size: var(--font-size-h5) !important;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 50px !important;
}
.green {
    color: var(--color-green) !important;
    font-weight: 500;
}

.red {
    color: var(--color-red) !important;
    font-weight: 500;
}

.blue {
    color: var(--color-blue) !important;
    font-weight: 500;
}



.documentation>div {
    margin: 80px 0px;
}

.documentation>div>* {
    margin: 10px 0px;

}

.documentation ul {
    margin-left: 50px;
    margin-top: 10px;
}

.documentation table {
    border: 0.1px solid gray;
    width: 100%;
}


.documentation div:nth-child(1) table tr:nth-child(1) {
    background-color: rgb(228, 228, 228);
}

.documentation div:not(div:nth-child(1)) table tr:nth-child(1) {
    background-color: rgb(199, 222, 241);
}

.documentation a {
    text-decoration: underline;
}

.documentation table tr td,
.documentation table tr th {
    padding: 15px 10px;
    border: 0.1px solid gray;
    text-align: left !important;
}

.documentation table tr td:nth-child(1),
.documentation table tr th:nth-child(1) {
    max-width: 100px !important;
    width: 120px;
}

.status__table {
    margin-top: 50px !important;
}



.response__table tr:nth-child(2) td:nth-child(1),
.status__table tr:nth-child(2) td:nth-child(1) {
    color: var(--color-green) !important;
}

.response__table tr td:nth-child(1),
.status__table tr td:nth-child(1) {
    color: var(--color-red);
    font-weight: 500;
}

.response__table tr:nth-child(2) td:nth-child(2) div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.response__table tr:nth-child(2) td:nth-child(2) div>span:not(span:first-child, span:last-child) {
    margin-left: 20px;
}

@media only screen and (max-width: 768px) {
    .container table {
        max-width: 500px !important;
        margin: auto;
        overflow: hidden;
    }

    .container table th,
    .container table td {
        max-width: 100px;
        overflow: auto;
        font-size: 13px;
    }

    .container table th::-webkit-scrollbar,
    .container table td::-webkit-scrollbar {
        display: none;
    }



}

@media only screen and (max-width: 450px) {
    .container table {
        max-width: 320px !important;
    }
}
