/* ===== Main Table Wrapper ===== */
.table_box {
    padding: 15px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

/* ===== Table General Layout ===== */
.feature-table {
    width: 100%;
    border-collapse: separate;

    /* border-spacing: 12px 10px; */
    /* column gap: 12px, row gap: 10px */
}

.gap {
    /* width: 100%; */
    border-collapse: separate;
    border-spacing: 0 !important;
}

/* ===== Table Cell Default Style ===== */
.feature-table th,
.feature-table td {
    font-size: 13px;
    font-family: var(--main-font);
    line-height: 18px;
    padding: 10px 14px;
    background: #fff;
    /* border-radius: 10px; */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: none !important;
    text-align: center;
    vertical-align: middle;
    color: #000;
    font-weight: 600;
}

/* ===== Header Small Text ===== */
.feature-table th small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 0px;
}

/* ===== First Column (Features) – No Gap Effect ===== */
.feature-table th:first-child,
.feature-table td:first-child {
    margin: -10px -12px;
    background: #0C2E37 !important;
    color: #fff !important;
    text-align: left;
    padding-left: 16px;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 1;
    position: relative;
}

/* ===== Plan Headers Backgrounds ===== */
.feature-table th:nth-child(2) {
    background: linear-gradient(135deg, #c0c0c0, #e0e0e0);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
}

.feature-table th:nth-child(3) {
    background: linear-gradient(135deg, #d4af37, #f6e27a);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
}

.feature-table th:nth-child(4) {
    background: linear-gradient(135deg, #680000, #5e0101);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

/* ===== Plan Body Columns Backgrounds ===== */
.feature-table td:nth-child(2) {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.feature-table td:nth-child(3) {
    background: linear-gradient(135deg, #f9e79f, #fff9db);
}

.feature-table td:nth-child(4) {
    background: linear-gradient(135deg, #f5bcbc, #ffdddd);
}

/* ===== Success Badge Style ===== */
.feature-table .success {
    color: #fff !important;
    background: linear-gradient(135deg, #198754, #28c76f) !important;
    border-radius: 22px;
    font-size: 10px;
    padding: 2px 6px;
    display: inline-block;
}

/* ===== Danger Badge Style ===== */
.feature-table .danger {
    color: #fff !important;
    background: linear-gradient(135deg, #c1024b, #ff416c) !important;
    border-radius: 22px;
    font-size: 10px;
    padding: 2px 6px;
    display: inline-block;
}

/* ===== CTA Button Style ===== */
.cart_btn {
    padding: 6px 16px;
    background: var(--black);
    color: #fff !important;
    font-size: 11px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
}

/* ===== Optional: Light Background on Final Button Row ===== */
.feature-table tr:last-child td {
    background: #f3f3f3;
}

table {
    border: 1px solid #000;
    border-radius: 10px;

}