ul {
    padding-bottom: 0 !important;
    padding-left: 0 !important;
}

.mb100 {
    margin-bottom: 12.5rem;
}

.btnWrap {
    margin-top: 6.25rem;
}

@media screen and (max-width: 768px) {
     .btnWrap {
        margin-top: 3rem;
    }
}



.btnWrap button {
    display: flex;
    padding: 17px 82px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 14rem;
}

.btnWrap button.now {
    color: #fff;
    /* font-family: Inter; */
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    border: 1px solid #e5e5e5;
    background: #000;
}
.btnWrap button.notnow {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #000;
    /* font-family: Inter; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.content_table {
    margin-top: 5rem;
}

.content_table input {
    display: flex;
    width: 100%;
    height: 45px;
    padding: 0 3rem 0 1.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #fff;
}
.content_table .inputBox img {
    position: absolute;
    right: 1.25rem;
    top: 0.75rem;
}

.content_table table {
    width: 100%;
    border-top: 1px solid #000;
    margin-top: 2.5rem;
}
.content_table table th {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}
.content_table table th,
td {
    text-align: center;
    padding: 2.5rem 0;
}
.content_table table tbody tr td:first-child {
    text-align: center;
    color: #000;
    font-family: Pretendard;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    width: 10%;
}

@media screen and (max-width: 768px) {
    .content_table table tbody tr td:first-child {
        width: 20%;
    }
    .tab-button {
        font-size: 14px;
        white-space: nowrap;
    }
    section.section.last {
        padding-bottom: 50px;
    }
    .btnWrap a {
        flex: 1;
        width: 100%;
    }
    .btnWrap button {
        min-width: 0;
    }
}

.content_table table tbody tr td:nth-child(2) {
    text-align: left;
    color: #000;
    font-family: Pretendard;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
}
.content_table table tbody tr td:nth-child(3) {
    text-align: center;
    color: #999;
    font-family: Pretendard;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    width: 10%;
}
.content_table table tbody tr td:last-child {
    text-align: center;
    color: #999;
    font-family: Pretendard;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    width: 10%;
}

.content_table table tbody tr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    /* background: rgba(87, 44, 255, 0.1); */
}
.content_table table tbody tr.fixed td:first-child {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 10%;
}
.content_table table tbody tr.fixed td:nth-child(2) {
    color: #000;
    text-align: left;
    font-family: Pretendard;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.writeBtnWrap {
    margin: 2.5rem 0;
}
.writeBtnWrap button {
    display: flex;
    width: 130px;
    height: 44px;
    padding: 12px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #000;
    background: #fff;
}

.pagination-container {
    padding: 2.5rem 0rem;
}

.pagination-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center; /* Vertically align items */
    justify-content: center;
}

.active > .page-link,
.page-link.active {
    font-size: 1.25rem;
}

.pagination-item {
    margin: 0 1.25rem; /* Space between items */
}

.page-link,
.pagination-arrow a {
    display: flex; /* Use flex for centering text/icons */
    justify-content: center;
    align-items: center;

    text-decoration: none;
    color: #888; /* Default color for inactive pages */
    font-size: 1rem; /* Base font size, 18px */
    font-weight: 500;
    border-radius: 50%; /* Make them circular */
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

/* Active page styling */
.page-link.active {
    color: #333; /* Darker color for active page */
    font-weight: 700; /* Bold for active page */
    /* background-color: #e0e0e0; Optional: Add a subtle background for active page */
}

/* Arrow styling */
.pagination-arrow a {
    min-width: 3rem; /* Slightly wider for arrows */
    font-size: 1.75rem; /* Larger font size for arrows, 28px */
    color: #333; /* Darker color for arrows */
    font-weight: 400; /* Regular weight for icon font */
}

/* Hover effects */
.page-link:not(.active):hover,
.pagination-arrow a:hover {
    background-color: #f0f0f0;
    color: #000;
}

@media (max-width: 768px) {
    .pagination-container {
        padding: 1rem 0.5rem;
    }

    .pagination-item {
        margin: 0 0.3rem; /* Reduce space between items */
    }

    .page-link,
    .pagination-arrow a {
        margin: 0 1rem;
        font-size: 1rem; /* Smaller font size */
    }

    .pagination-arrow a {
        min-width: 2.5rem; /* Adjust arrow width */
        font-size: 1.5rem; /* Smaller arrow font size */
    }
    .content_table table tbody tr.fixed td:first-child {
        font-size: 1rem;
    }
    .content_table table tbody tr.fixed td:nth-child(2) {
        font-size: 1rem;
    }
    .content_table table tbody tr td:first-child {
        font-size: 1rem;
    }
    .content_table table tbody tr td:nth-child(2) {
        font-size: 1rem;
    }
    .content_table table tbody tr td:nth-child(3) {
        font-size: 1rem;
    }
    .content_table table tbody tr td:last-child {
        font-size: 1rem;
    }
}

/* Even smaller screens if necessary */
@media (max-width: 480px) {
    .pagination-item {
        margin: 0 0.2rem;
    }
    .page-link,
    .pagination-arrow a {
        font-size: 0.9rem;
    }
}

.tab-buttons {
    display: flex;

    border-bottom: 2px solid #eee;
    overflow-x: scroll;
    margin-top: 2.5rem;
}

.tab-button {
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent; /* For the active indicator */
    margin-right: 5px; /* Space between buttons */
}

.tab-button:hover {
    color: #222;
}

.tab-button.active {
    color: #222;
    font-weight: bold;
    border-bottom: 2px solid #222; /* Active tab indicator */
}

.tab-content {
    display: none; /* Hidden by default */
}

.tab-content.active {
    display: block; /* Show active tab content */
}

.tabtab::-webkit-scrollbar {
    display: none;
}
.tab-buttons::-webkit-scrollbar {
    display: none;
}
.faqTable table {
    margin-top: 0;
}

.faqMid {
    padding: 5rem 0;
    margin-top: 5rem;
}

.bggray {
    background-color: #F7F7F7;
}

.faq_left h1 {
    color: #000;
    font-family: Pretendard;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2.5rem;
}
.faq_left ul li {
    margin-bottom: 1.25rem;
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 144.444% */
}
.faq_left ul li a {
    color: #000;
    font-family: Pretendard;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}
.faq_right h6 {
    color: #000;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
}
.faq_right li {
    color: #999;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}
.faq_right h2 {
    color: #222;
    font-family: Pretendard;
    font-size: 2.95rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 2.5rem;
    margin-bottom: 0.625rem;
}

@media screen and (max-width: 768px) {
    .faq_right h2 {
        font-size: 2rem;
    }
    .faqMid {
        padding: 2.5rem 0;
    }
    .faq_right button {
        margin-top: 1rem;
    }
}
.faq_right button {
    display: flex;
    width: 100%;
    height: 60px;
    padding: 17px 82px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 1px solid #e5e5e5;
    background: #000;
    color: #fff;
    /* font-family: Inter; */
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

aside li a button {
    display: flex;
    padding: 8px 13px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-radius: 4px;
    color: #444;
    text-align: center;
    /* font-family: Inter; */
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    background-color: transparent;
    border: 1px solid #eee;
}
aside li a button.active {
 color: #fff;
 background-color: #000;
 border-color: #000;
}
