/* --- Sidebar Style Comparison Table (Premium UI) --- */
.mli-sidebar-comparison-container {
    margin: 30px 0 50px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.04));
}

.mli-sidebar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px 0;
    /* Creates the gap between columns */
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

/* Individual Cell Styling for "Box" look */
.mli-sidebar-table th,
.mli-sidebar-table td {
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    vertical-align: middle;
}

/* Connect cells vertically in the same column */
.mli-sidebar-table td {
    border-top: none;
}

.mli-sidebar-table tr:last-child td {
    border-radius: 0 0 12px 12px;
}

.mli-sidebar-table thead th {
    border-radius: 12px 12px 0 0;
}

.mli-sidebar-table tr:nth-child(even) td {
    background-color: #fcfcfc;
}

.mli-sidebar-table tr:hover td {
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Header Cells */
.sidebar-header-corner {
    background: #f8f9fa;
    border-right: 2px solid #28303d !important;
}

.sidebar-plan-name {
    background: #28303d !important;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center !important;
    padding: 35px 20px !important;
    font-family: "Outfit", "Inter", sans-serif;
    border: none !important;
}

/* Sidebar Labels */
.sidebar-label {
    width: 12% !important;
    background: #f8f9fa !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #28303d;
    letter-spacing: 1px;
    border-left: 1px solid #f0f0f0 !important;
    padding-left: 15px !important;
}

.mli-sidebar-table thead .sidebar-header-corner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 12% !important;
}

.sidebar-data-rich {
    width: 22% !important;
    line-height: 1.7;
    color: #444;
    vertical-align: top !important;
}

.sidebar-data {
    width: 22% !important;
    text-align: center !important;
    font-weight: 500;
}

/* Checkmark List Styling */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.checkmark-list li:last-child {
    margin-bottom: 0;
}

.checkmark-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #28303d;
    font-size: 1.2rem;
    font-weight: bold;
}

.rich-text-content.small .checkmark-list li {
    padding-left: 0;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

/* Buttons & Links */
.sidebar-read-more {
    font-size: 0.8rem;
    font-weight: 800;
    color: #28303d;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-read-more:hover {
    border-bottom-color: #28303d;
    padding-left: 5px;
}

.sidebar-read-more i {
    margin-left: 8px;
    font-size: 1.2rem;
}

.sidebar-btn {
    background: #28303d;
    color: #fff !important;
    border: none;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sidebar-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-display {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
}

.price-display br {
    display: block;
    content: "";
    margin-top: 4px;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .sidebar-label {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .mli-sidebar-table {
        min-width: 900px;
    }

    .mli-sidebar-comparison-container {
        overflow-x: auto;
        margin: 20px 0;
    }
}

/* Page Section Spacing Overrides */
.inner-page {
    padding: 40px 0 !important;
}

.section-title {
    margin-bottom: 30px !important;
}

.section-title h2 {
    margin-bottom: 10px !important;
    font-size: 1.8rem;
    font-weight: 700;
}

.section-title p {
    font-size: 0.95rem;
    color: #777;
}

.breadcrumbs {
    padding: 10px 0 !important;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-block;
    font-size: 0.8rem;
    color: #999;
}

.breadcrumbs li+li::before {
    content: "/";
    padding: 0 10px;
    color: #ccc;
}

.breadcrumbs a {
    color: #28303d;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #000;
}