/* Modern comparison table – Green theme */
.modern-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    font-family: 'Barlow', 'Roboto', sans-serif;
}

.modern-comparison-table thead tr {
    background: #0C7919;
}

.modern-comparison-table thead th {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.3rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    white-space: nowrap;
}

.modern-comparison-table tbody td {
    padding: 1.1rem 1.2rem;
    vertical-align: middle;
    border-bottom: 1px solid #d0ebd0;
    color: #1e2a1e;
    font-size: 1rem;
    background-color: white;
    transition: background-color 0.2s;
}

.modern-comparison-table tbody tr:hover td {
    background-color: #e8f5e8;
}

.modern-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.modern-comparison-table td:first-child {
    font-weight: 600;
    color: #1a2a1a;
}

/* Icon badges */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
    color: white;
}

.icon-badge.success {
    background: #2b8c5e;
}

.icon-badge.danger {
    background: #c92a2a;
}

.icon-badge i {
    font-size: 14px;
    line-height: 1;
}

/* Chip / tag */
.chip {
    display: inline-block;
    background: #e0f2e0;
    color: #1b5e20;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
    margin: 0.2rem 0.2rem;
    white-space: nowrap;
    border: none;
}

.hint {
    font-size: 0.8rem;
    color: #5e6b5e;
    margin-left: 0.3rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-comparison-table thead th {
        font-size: 0.85rem;
        padding: 1rem 0.6rem;
        white-space: normal;
    }
    .modern-comparison-table tbody td {
        font-size: 0.85rem;
        padding: 0.9rem 0.6rem;
    }
    .chip {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    .icon-badge {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }
    .icon-badge i {
        font-size: 12px;
    }
}
	