/**
 * Level6 Comparison Table Widget Styles
 */

/* Table Container */
.l6-comparison-table {
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
}

/* Header Row */
.l6-table-header {
    display: flex;
    margin-bottom: 8px;
}

.l6-table-header .l6-table-cell {
    flex: 1;
    padding: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.l6-table-header .l6-table-cell:first-child {
    flex: 1.5;
}

/* Table Body */
.l6-table-body {
    display: flex;
    flex-direction: column;
}

/* Body Rows */
.l6-table-row {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.l6-table-row:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

.l6-table-row:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.07);
}

/* Table Cells */
.l6-table-row .l6-table-cell {
    flex: 1;
    padding: 18px 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.l6-table-row .l6-table-cell:first-child {
    flex: 1.5;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .l6-comparison-table {
        padding: 15px;
        overflow-x: auto;
    }
    
    .l6-table-header,
    .l6-table-row {
        min-width: 700px;
    }
    
    .l6-table-header .l6-table-cell,
    .l6-table-row .l6-table-cell {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .l6-comparison-table {
        padding: 12px;
    }
    
    .l6-table-header .l6-table-cell,
    .l6-table-row .l6-table-cell {
        padding: 10px 8px;
        font-size: 12px;
    }
}
