.dtw-table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    box-sizing: border-box;
    background: #fff;
}

.dtw-table-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.dtw-table-row:last-child {
    border-bottom: none;
}

.dtw-table-cell {
    padding: 18px 20px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.dtw-left {
    width: 40%;
    border-right: 1px solid #ddd;
    text-align: left;
    font-weight: 500;
    flex-shrink: 0;
}

.dtw-right {
    width: 60%;
    text-align: left;
    font-weight: 600;
}

.dtw-table-row:nth-child(even) {
    background: #f7f3ed;
}

/* Prevent Elementor/Flexbox conflicts */

.dtw-table,
.dtw-table * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Tablet */

@media (max-width: 1024px) {

    .dtw-table-cell {
        padding: 16px;
    }

}

/* Mobile */

@media (max-width: 767px) {

    .dtw-table-row {
        display: flex;
        flex-direction: row;
    }

    .dtw-table-cell {
        padding: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

}