.comparison-table {
    width: 100%;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
    border-collapse: collapse;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    background-color: #fff;
}

.comparison-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #626262;
}

.comparison-table th.paid-header {
    background-color: #e0f4e0;
    color: #007bff;
    width: 15% !important;
}

.comparison-table th.free-header {
    background-color: #e0e0ff;
    color: #007bff;
    width: 15% !important;
}

.comparison-table td {
    color: #626262;
}

.comparison-table td.enabled {
    background-color: #e0f4e0;
}

.comparison-table td.disabled {
    background-color: #fbeaea;
}

.comparison-table .tag.paid {
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.comparison-table .tag.free {
    background-color: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.comparison-table .icon-wrapper {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-table .enabled .icon-wrapper {
    background-color: #28a745;
    color: #ffffff;
    margin: 0 auto;
    font-size: 14px;
    padding: 8px;
    border-radius: 50%;
}

.comparison-table .disabled .icon-wrapper {
    background-color: #fbeaea;
    color: #dc3545;
    margin: 0 auto;
    border: 1px solid red;
    font-size: 14px;
    padding: 8px;
    border-radius: 50%;
}

.comparison-table .icon {
    font-size: 16px;
}


