.advance-mortgage-table-block table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border-radius: 32px;
    overflow: hidden;
}

.advance-mortgage-table-block table th:first-child,
.advance-mortgage-table-block table td:first-child,
.advance-mortgage-table-block table th:last-child,
.advance-mortgage-table-block table td:last-child {
    width: 276px;
    max-width: 276px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.advance-mortgage-table-block table th:nth-child(2),
.advance-mortgage-table-block table td:nth-child(2),
.advance-mortgage-table-block table th:nth-child(3),
.advance-mortgage-table-block table td:nth-child(3) {
    width: 282px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.advance-mortgage-table-block th,
.advance-mortgage-table-block td {
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: middle;
    text-align: center;
    height: 50px;
    line-height: 1.2;
}

.advance-mortgage-table-block thead th {
    background-color: #5271ff;
    color: white;
}


.advance-mortgage-table-block tbody tr:nth-of-type(odd) td {
    background-color: #ffffff;
    box-shadow: unset;
}

.advance-mortgage-table-block tbody tr:nth-of-type(even) td {
    background-color: #f2f4ff;
}

.advance-mortgage-table-block .circle-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    background-color: #5271ff;
    border-radius: 50%;
    margin: 0 auto; 
}

.advance-mortgage-table-block .circle-check svg {
    width: 12px;
    height: 10px;
    fill: none;
    stroke: white;
    display: block;
}

@media (max-width: 1200px) {
    .advance-mortgage-table-block table th:first-child,
    .advance-mortgage-table-block table td:first-child,
    .advance-mortgage-table-block table th:last-child,
    .advance-mortgage-table-block table td:last-child {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .advance-mortgage-table-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
		border-top-right-radius: 0;
    	border-bottom-right-radius: 0;
    }

    .advance-mortgage-table-block table th,
    .advance-mortgage-table-block table td {
        width: auto;
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .advance-mortgage-table-block table th,
    .advance-mortgage-table-block table td {
        padding: 8px;
        font-size: 14px;
    }
}