.invoice-overview .rc-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.feature-table-wrapper {
    margin-top: 0.5rem;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(15, 118, 106, 0.18);
    background: rgba(255, 255, 255, 0.7);
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.feature-table th,
.feature-table td {
    padding: 0.75rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid rgba(15, 118, 106, 0.12);
    vertical-align: top;
}

.feature-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(15, 23, 42, 0.6);
    background: rgba(15, 118, 106, 0.08);
}

.abo-details-row td {
    background: rgba(240, 253, 250, 0.85);
    border-bottom: none;
}

.abo-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.abo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.abo-tab {
    position: relative;
    border: none;
    background: transparent;
    padding: 0.4rem 0.85rem;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.7);
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: background 0.12s ease, color 0.12s ease;
}

.abo-tab:hover {
    background: rgba(15, 118, 106, 0.06);
}

.abo-tab.is-active {
    background: #ffffff;
    color: #0f766a;
    box-shadow: 0 -1px 0 #ffffff, 0 0 0 1px rgba(15, 118, 106, 0.24);
}

.abo-tab-content {
    padding-top: 0.25rem;
}

.compact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .feature-table {
        min-width: 640px;
    }

    .feature-table th,
    .feature-table td {
        padding: 0.6rem 0.7rem;
    }
}

@media (min-width: 900px) {
    .feature-table th,
    .feature-table td {
        padding: 0.85rem 1rem;
    }
}
