﻿.fees_and_limits_wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fees_and_limits_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.fees_and_limits {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fees_and_limits_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fees_and_limits_title {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.fees_and_limits_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fees_and_limits_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fees_and_limits_section_title {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.fees_and_limits_section_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 36px;
}

    .fees_and_limits_section_list li {
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
    }

.fees_and_limits_section_sub_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 36px;
}

    .fees_and_limits_section_sub_list li {
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
    }

.table_responsive::-webkit-scrollbar {
    height: 8px;
}

.table_responsive::-webkit-scrollbar-thumb {
    background-color: var(--dark);
    border-radius: 4px;
}

    .table_responsive::-webkit-scrollbar-thumb:hover {
        background-color: var(--dark);
    }

.table_responsive {
    width: 100%;
    margin: 8px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border: 1px solid var(--dark);
    border-collapse: collapse;
}

    table th {
        padding: 12px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
        color: var(--dark);
        text-align: left;
        border-right: 1px solid var(--dark);
        border-bottom: 1px solid var(--dark);
    }

    table td {
        padding: 12px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        border-right: 1px solid var(--dark);
        border-bottom: 1px solid var(--dark);
        white-space: nowrap;
    }

    table tr:nth-child(odd) {
        background-color: var(--grey);
    }

    table tr:hover {
        background-color: var(--grey);
    }

@media only screen and (min-width: 1200px) {
    table td {
        white-space: pre-line;
    }
}
