.comparison-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    margin: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

th {
    background-color: #25D366;
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

th:first-child {
    border-top-left-radius: 12px;
}

th:last-child {
    background-color: #e9ecef;
    color: #000;
    border-top-right-radius: 12px;
}

th.highlight {
    background-color: var(--e-global-color-primary);
    position: relative;
}

td {
    padding: 16px 20px;
    font-size: 18px;
}

tr:hover td {
    background-color: #f9f9f9;
}

td.highlight {
    background-color: #E7F7EF;
    font-weight: 500;
    color: #075E54;
}

tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    th, td {
        padding: 12px 10px;
        font-size: 12px;
    }
}
