/* Table Tabs Navigation */
.multitable-section .multitable-tabs-wrapper {
    margin-top: 48px;
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

.multitable-section .multitable-tabs {
    display: inline-flex;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    gap: 0;
    border: 1px solid rgba(197, 204, 207, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.multitable-section .multitable-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    outline: none;
}

.multitable-section .multitable-tab-btn:not(:last-child) {
    border-right: 1px solid rgba(197, 204, 207, 0.5);
}

.multitable-section .multitable-tab-btn:hover {
    background: rgba(29, 155, 240, 0.05);
    color: #1D9BF0;
}

.multitable-section .multitable-tab-btn.active {
    background: rgba(29, 155, 240, 0.1);
    color: #1D9BF0;
    border: 1px solid #1D9BF0;
    box-shadow: 0 0 0 1px #1D9BF0;
}

.multitable-section .multitable-tab-btn.active:not(:first-child) {
    margin-left: -1px;
}

.multitable-section .multitable-tab-btn.active:not(:last-child) {
    margin-right: -1px;
}

@media screen and (max-width: 768px) {
    .multitable-section .multitable-tabs-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .multitable-section .multitable-tabs {
        min-width: max-content;
    }
    
    .multitable-section .multitable-tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.multitable-section h2 {
    /* color: #1D9BF0; */
    color: #374046;
    margin-bottom: 48px;
}
.multitable-section .align-left {
    text-align: left;
}
.multitable-section .align-center {
    text-align: center;
}
.multitable-section .description {
    color: var(----gray-04, #6E7B81);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 166.667% */
    margin-bottom: 0;
}
.multitable-section .tables .table {
    display: flex;
    margin-bottom: 60px;
    min-height: auto;
    height: auto;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.multitable-section .tables .table-instance {
    min-height: auto;
    height: auto;
    overflow: visible;
    width: 100%;
}
.multitable-section .tables h3 {
    margin-bottom: 24px;
}
.multitable-section .tables .table > div  .cell,
.multitable-section .tables .table > div  .head {
    height: auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

/* Override height for pricing rows */
.multitable-section .tables .table > div .cell.pricing-row,
.multitable-section .tables .table > div .cell.pricing-row-content {
    height: auto;
    min-height: 180px;
    overflow: visible;
}

/* Pricing Row Styles */
.multitable-section .tables .table > div .cell.pricing-row {
    height: auto;
    min-height: 180px;
    padding: 32px 24px;
    border-top: 2px solid rgba(91, 91, 91, 0.2);
    background-color: transparent;
    overflow: visible;
}

.multitable-section .tables .table > div .cell.pricing-row p {
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
}

.multitable-section .tables .table > div .cell.pricing-row .pricing-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.multitable-section .tables .table > div .cell.pricing-row .price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.2;
}

.multitable-section .tables .table > div .cell.pricing-row .price-amount {
    font-size: 40px;
    font-weight: 700;
    color: #1D9BF0;
    line-height: 1.2;
    display: block;
}

.multitable-section .tables .table > div .cell.pricing-row .price-period {
    font-size: 16px;
    color: var(----gray-04, #6E7B81);
    font-weight: 400;
    margin-top: 4px;
}

.multitable-section .tables .table > div .cell.pricing-row .pricing-button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 180px;
    box-sizing: border-box;
}

.multitable-section .tables .table > div .cell.pricing-row .pricing-button-secondary {
    background: transparent;
    color: #1D9BF0;
    border: 2px solid #1D9BF0;
}

.multitable-section .tables .table > div .cell.pricing-row .pricing-button-secondary:hover {
    background: #1D9BF0;
    color: #fff;
}

.multitable-section .tables .table > div .cell.pricing-row .pricing-button-primary {
    background: #1D9BF0;
    color: #fff;
    border: 2px solid #1D9BF0;
}

.multitable-section .tables .table > div .cell.pricing-row .pricing-button-primary:hover {
    background: #0C57AD;
    border-color: #0C57AD;
}

.multitable-section .tables .table > div.feature-column .cell.pricing-row {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 24px;
    min-height: 180px;
    height: auto;
}

/* Pricing row with HTML content */
.multitable-section .tables .table > div .cell.pricing-row-content {
    border-top: 2px solid rgba(91, 91, 91, 0.2);
    padding: 32px 24px;
    min-height: 180px;
    height: auto;
    overflow: visible;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell > * {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell p {
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.6;
    word-wrap: break-word;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell p:last-child {
    margin-bottom: 0;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell p strong {
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell h4 {
    margin: 0 0 12px 0;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1D9BF0;
    line-height: 1.3;
    word-wrap: break-word;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell h4 .p,
.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell h4 span.p {
    font-size: 16px;
    font-weight: 400;
    color: var(----gray-04, #6E7B81);
    display: inline;
    line-height: 1.4;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell a.button-tertiary,
.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell .button-tertiary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    background: transparent;
    color: #1D9BF0;
    border: 2px solid #1D9BF0;
}

.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell a.button-tertiary:hover,
.multitable-section .tables .table > div .cell.pricing-row-content .pricing-cell .button-tertiary:hover {
    background: #1D9BF0;
    color: #fff;
}

/* Cell Snippet Styles */
.multitable-section .tables .table > div .cell .cell-snippet {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 10;
}

.multitable-section .tables .table > div .cell .cell-snippet-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 2px;
}

.multitable-section .tables .table > div .cell .cell-snippet-toggle:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
}

.multitable-section .tables .table > div .cell .cell-snippet-toggle img {
    width: 14px;
    height: 14px;
    display: block;
}

.multitable-section .tables .table > div .cell .cell-snippet-content {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 280px;
    max-width: calc(90vw - 20px);
    background-color: #083A74;
    color: white;
    font-size: 12px;
    line-height: 1.5;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 100;
}

.multitable-section .tables .table > div .cell .cell-snippet-content:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    right: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #083A74;
}

.multitable-section .tables .table > div .cell .cell-snippet:hover .cell-snippet-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.multitable-section .tables .table > div .cell .cell-snippet-content p {
    margin: 0 0 8px 0;
    color: white;
    font-size: 12px;
}

.multitable-section .tables .table > div .cell .cell-snippet-content p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .multitable-section .tables .table > div .cell .cell-snippet-content {
        width: 240px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .multitable-section .tables .table > div .cell .cell-snippet-content:before {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .multitable-section .tables .table > div .cell .cell-snippet:hover .cell-snippet-content {
        transform: translateX(-50%) translateY(0);
    }
}
.multitable-section .tables .table > div  .cell p {
    font-size: 14px;
    color: #222;
    line-height: normal;
    margin-bottom: 0px;
}
/*Bordered table*/
.multitable-section .tables .table.is-table-bordered > div  .cell,
.multitable-section .tables .table.is-table-bordered > div  .head {
    border-top: 1px solid rgba(91, 91, 91, 0.30);
}

.multitable-section .tables .table > div  {
}
.multitable-section .tables .table > div  .head {}
.multitable-section .tables .table > div.feature-column  .cell {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    min-height: 80px;
    height: auto;
    box-sizing: border-box;
    flex-shrink: 0;
}
.multitable-section .tables .table > div.feature-column  .cell p {
    margin-bottom: 0px;
    flex: 1;
    min-height: 1em;
    display: block;
    width: 100%;
}

/* Ensure empty cells maintain height */
.multitable-section .tables .table > div.feature-column  .cell p:empty::before {
    content: '\00a0';
    display: inline-block;
}

/* Ensure feature column cells always maintain minimum height */
.multitable-section .tables .table > div.feature-column  .cell {
    min-height: 80px;
}

/* Match pricing row heights in feature column */
.multitable-section .tables .table > div.feature-column  .cell.pricing-row {
    min-height: 180px;
    height: auto;
}
.multitable-section .tables .table > div.feature-column {
    width: 300px;
    min-width: 300px;
    flex-shrink: 0;
    min-height: auto;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.multitable-section .tables .table > div.feature-column .fixed-column {
    min-height: auto;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.multitable-section .tables .table > div  .head .most-popular {
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    border: 0px solid rgba(91, 91, 91, 0.30);
    background: var(--TeamAI-blue, #1D9BF0);
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    top: -30px;
    top: -34px;
    border-radius: 8px 8px 0px 0px;
    padding: 10px;
}
.multitable-section .tables .table  .head .table-heading {
    color: #000;

    text-align: center;
    /* table heading */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 20.8px */

}
.multitable-section .tables .table .column.is-most-popular {
    background:  rgba(32, 125, 233, 0.05);
}
.multitable-section .tables .table .column.is-highlighted {
    background:  rgba(32, 125, 233, 0.05);
}
.multitable-section .tables .table-instance .table .columns-container .columns-scrollable .columns,
.multitable-section .tables .table-instance .table > div.feature-column {
    padding-top: 35px;
}
.multitable-section .tables .table  .columns-container {
    overflow: visible;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}
.multitable-section .tables .table  .columns-container .columns-scrollable {
    overflow: visible;
    max-width: 100%;
    width: auto;
}
.multitable-section .tables .table  .columns-container .columns-scrollable .columns {
    width: auto;
    overflow: visible;
}
.multitable-section .tables .table .columns {
    display: flex;
    flex: 0 1 auto;
    align-items: stretch;
    width: auto;
}
.multitable-section .tables .table .columns .column {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 150px;
}

.multitable-section .tables .table > div .head .head-table-cell__img {
    max-height: 40px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}
.multitable-section .tables .table > div .head .head-table-cell__img img {
    max-height: 100%!important;
    width: auto!important;
}
.multitable-section .table>:not(caption)>*>* {
    padding: 0px;
}

.multitable-section .slick-dots {
    display: flex;
    justify-content: center;
    bottom: 40px;
}

.multitable-section  .slick-dots li button {
    background: #D9D9D9;
}
.multitable-section .slick-dots li.slick-active button {
    background: #222;
}
.multitable-section .column h3 {
    color: var(----gray-06, #222);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }

.multitable-section .column h4 {
    color: var(----gray-06, #222);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;

}
.multitable-section .column  h5 {
    color: var(----gray-04, #6E7B81);
    /* heading 5 */
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 16px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.multitable-section.three-columns .tables .table > div.feature-column {
    width: auto;
    max-width: 440px;
}
.multitable-section.three-columns .tables .table .columns-container .columns-scrollable {
    width: auto;
}
.multitable-section.three-columns .tables .table .columns-container .columns-scrollable .columns {
    width: auto;
}
.multitable-section.three-columns .tables .table .columns .column {
    min-width: 50%;
}

@media screen and (max-width: 1200px) {
    .multitable-section .tables .table-instance .table > div.feature-column .fixed-column {
        box-shadow: 4px 0px 4px 0px rgba(34, 34, 34, 0.15);
    }
}

@media screen and (max-width: 500px) {
    .multitable-section .tables .table-instance .table.is-table-slider-in-mobile > div.feature-column {
        display: none;
    }

    .multitable-section .tables .table.is-table-slider-in-mobile .columns-container .columns-scrollable .columns {
        width: 100%;
        min-height: 350px;
    }

    .multitable-section .tables .table.is-table-slider-in-mobile .columns-container .columns-scrollable .columns .column {
        border-radius: 16px;
        background: #F4F8FE;
        max-width: 280px!important;
        box-shadow: 2px 2px 4px 0px rgba(34, 34, 34, 0.15);

    }
    .multitable-section .tables .table.is-table-slider-in-mobile .columns-container .columns-scrollable .columns.slick-initialized .slick-slide {
        margin-left: 16px;
        margin-right: 16px;

    }
    .multitable-section .tables .table.is-table-slider-in-mobile .columns-container .columns-scrollable .columns .cell {
        height: auto;
        padding-top: 0px;
    }
    .multitable-section .tables .table.is-table-slider-in-mobile .columns-container .columns-scrollable .columns {
        overflow-y: visible;
    }
    .multitable-section .tables .table.is-table-slider-in-mobile .columns-container .columns-scrollable {
        padding-bottom: 40px;
    }

}
