:root {
    --bcg-color: #ffffff;
    --title-color: #000000;
    --textarea-color: #A5ABAF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bcg-color);
}

table {
    border-collapse: collapse;
}

td,
th {
    border: 1px solid #030303a1;
    padding: 10px;
}

thead {
    color: #A5ABAF;
}

h1,
h2 {
    color: var(--title-color);
}

label {
    color: var(--title-color);
    font-size: 30px;
    font-weight: bold;
}

textarea,
.proxyma-input {
    border-radius: 20px;
    outline: none;
    padding: 15px;
    margin-bottom: 20px;
}

.proxyma-input {
    margin-bottom: 0;
}

textarea::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.proxy-container {
    display: flex;
}

.container {
    margin: 0 auto;
    max-width: 1900px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.button {
    width: 400px;
    height: 50px;
    border-radius: 30px;
    border: none;
    background-color: rgb(58, 160, 255);
    cursor: pointer;
    color: #ffffff;
}

.result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.proxy-tag {
    cursor: pointer;

    &:hover {
        text-decoration: underline;
    }
}

.ip-tag {
    position: relative;
}

.close {
    display: none;
}

.modal {
    border-radius: 10px;
    border: solid 2px #000000;
    bottom: 100%;
    position: absolute;
    background-color: #ffffff;
    z-index: 10;
}

.time-tag,
.ipquality-tag {
    & p {
        text-align: center;
    }
}



.timeBtn,
.ipquality {
    width: 50px;
    height: 20px;
    border-radius: 30px;
    border: none;
    background-color: rgb(58, 160, 255);
    cursor: pointer;
    color: #ffffff;
}

.tabs-container,
.main-tabs-container {
    width: 900px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 15px;
}

.tab,
.main-tab {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px rgb(58, 160, 255);
    cursor: pointer;
}

.tab,
.main-tab {
    &:hover {
        border-bottom: solid 2px rgb(58, 160, 255);
    }

    &.active {
        border-bottom: solid 3px rgb(58, 160, 255);
    }
}

.result-container-all,
.result-container-best,
.proxy-container-all,
.proxy-container-proxyma,
.proxy-container-mango,
.proxy-container-soax,
.proxy-container-nodemaven {
    display: none;
}

.result-container-all.active,
.result-container-best.active {
    display: block;
}

.proxy-container-all.active,
.proxy-container-proxyma.active,
.proxy-container-mango.active,
.proxy-container-soax.active,
.proxy-container-nodemaven.active {
    display: flex;
    max-width: 900px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.proxy-container-all {
    flex-direction: column;
}

.mango-select,
.soax-select,
.mango-duration,
.nodemaven-select {
    height: 30px;
}

.mango-duration {
    width: 300px;
}

.proxy-container-proxyma,
.proxy-container-mango,
.proxy-container-soax,
.proxy-container-nodemaven {
    gap: 20px;
}