.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 600px;
    background: transparent;
}

.comparison-table td,
.comparison-table th {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table .invisible {
    background: transparent !important;
    border: none !important;
}

tbody tr:first-child td:first-child {
    border-radius: 20px 0 0 0;
}

thead tr:first-child th:last-child {
    border-radius: 0 20px 0 0;
}

tbody tr:nth-last-child(2) td:first-child {
    border-radius: 0 0 0 20px;
    border-bottom: none;
}

tbody tr:nth-last-child(2) td:last-child {
    border-radius: 0 0 20px 0;
    border-bottom: none;
}

.highlight {
    background-color: var(--yellow-500) !important;
    color: white;
    font-weight: bold;
    width: 25%;
    border: none !important;
}

thead th.highlight {
    border-radius: 20px 20px 0 0 !important;
    padding-top: 30px;
    font-size: 1.2rem;
}

tbody tr:last-child td.highlight {
    border-radius: 0 0 20px 20px !important;
    height: 40px;
}

tbody tr:nth-last-child(2) td {
    border-bottom: none;
}

.feature-text {
    text-align: left !important;
    font-weight: bold;
    font-size: 14px;
    width: 45%;
    color: var(--text-dark);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.check {
    border: 2px solid white;
    color: white;
}

.cross {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: bold;
}