.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

table.custom-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    table-layout: auto;
}

table.custom-table th,
table.custom-table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
    border: 2px solid #3B5998;
}

/* CTA */
.aradahan_mag_cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 30px;
    position: relative;
    z-index: 9;
    box-sizing: border-box;
}

.aradahan_mag_cta::before,
.aradahan_mag_cta::after {
    position: absolute;
    content: "";
    left: 5%;
    width: 90%;
    height: 10px;
    background: inherit;
    opacity: .08;
    z-index: -1;
}

.aradahan_mag_cta::before {
    top: -10px;
    border-radius: 10px 10px 0 0;
}

.aradahan_mag_cta::after {
    bottom: -10px;
    border-radius: 0 0 10px 10px;
}

.aradahan_mag_action_cta_right {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.aradahan_mag_cta .aradahan_mag_action_cta_right span.cta-title {
    display: block;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 10px;
}

.aradahan_mag_cta .aradahan_mag_action_cta_right p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.aradahan_mag_action_cta_left {
    flex: 0 0 auto;
}

.aradahan_mag_cta .aradahan_mag_action_cta_left a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 46px;
    padding: 0 20px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
}

/* موبایل */
@media (max-width:768px) {

    .aradahan_mag_cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 18px;
        padding: 20px;
    }

    .aradahan_mag_action_cta_right {
        text-align: center;
    }

    .aradahan_mag_cta .aradahan_mag_action_cta_right span.cta-title {
        font-size: 18px;
        line-height: 1.7;
    }

    .aradahan_mag_cta .aradahan_mag_action_cta_right p {
        font-size: 13px;
    }

    .aradahan_mag_action_cta_left {
        width: 100%;
    }

    .aradahan_mag_cta .aradahan_mag_action_cta_left a {
        width: 100%;
        min-width: 0;
    }

    table.custom-table {
        font-size: 70%;
    }
}