/* ==========================================================================
   NODEPO FRONTEND STYLES - COOL & CLEAN (NO READ MORE)
   ========================================================================== */

/* 1. Container & Grid System */
.nodepo-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.nodepo-container * {
    box-sizing: border-box;
}

.nodepo-row { 
    display: flex; 
    flex-wrap: wrap; 
    margin: 0 -15px; 
}

.nodepo-col-3 { width: 25%; padding: 0 15px; box-sizing: border-box; }
.nodepo-col-4 { width: 33.33%; padding: 0 15px; box-sizing: border-box; }
.nodepo-col-8 { width: 66.66%; padding: 0 15px; box-sizing: border-box; }
.nodepo-col-9 { width: 75%; padding: 0 15px; box-sizing: border-box; }
.nodepo-col-12 { width: 100%; padding: 0 15px; box-sizing: border-box; }

/* 2. Filter Sidebar */
.nodepo-filter-box { 
    background: #febb02; 
    padding: 20px; 
    border-radius: 4px; 
    color: #333; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nodepo-filter-group { 
    margin-bottom: 20px; 
    background: #fff; 
    padding: 15px; 
    border-radius: 2px; 
}

.nodepo-filter-group h4 { 
    margin-top: 0; 
    font-size: 14px; 
    font-weight: bold; 
    margin-bottom: 10px;
}

.nodepo-filter-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-size: 13px; 
    cursor: pointer; 
}

/* 3. Listing Cards - COOL UI */
.lodging-card { 
    display: flex; 
    flex-wrap: nowrap; 
    align-items: flex-start; 
    border: 1px solid #e7e7e7; 
    padding: 15px; 
    margin-bottom: 25px; 
    border-radius: 8px; 
    background: #fff; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.lodging-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #dce0e5;
}

/* Image Column */
.lodging-card .card-image {
    width: 220px; 
    height: 220px; 
    flex-shrink: 0; 
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
    margin-right: 20px;
}

.lodging-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.lodging-card:hover .card-image img {
    transform: scale(1.05); 
}

/* Content Column */
.lodging-card .card-details {
    flex: 1 1 auto; 
    min-width: 0; 
    box-sizing: border-box;
    display: flex; 
    flex-direction: column;
    height: 220px; 
}

.lodging-card h3 { 
    margin-top: 0; 
    margin-bottom: 5px; 
    color: #0071c2; 
    line-height: 1.3; 
    font-size: 20px; 
} 

.lodging-card h3 a { 
    text-decoration: none; 
    color: inherit; 
}

.lodging-card h3 a:hover { 
    color: #005999;
}

/* STARS Styling (New) */
.nodepo-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}
.nodepo-stars {
    color: #febb02; /* Gold color */
    letter-spacing: 2px;
}
.nodepo-score-text {
    font-weight: 600;
    color: #444;
    background: #f2f2f2;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* Description Text */
.nodepo-card-description {
    margin: 5px 0 15px 0; 
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    
    /* Clamp to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Price Column - REVISED ALIGNMENT */
.lodging-card .card-price {
    flex: 0 0 160px; 
    text-align: right;
    padding-left: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* Group items at the bottom */
    justify-content: flex-end; 
    align-items: flex-end;
    height: 220px; 
    gap: 10px; /* Space between Price and Button */
}

/* Price Block Styling */
.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.price-value {
    font-size: 26px; 
    font-weight: 800; 
    color: #333; 
    line-height: 1;
}

.lodging-card .btn-primary { 
    background-color: #0071c2; 
    color: #fff; 
    padding: 12px 20px; 
    text-decoration: none; 
    border-radius: 4px; 
    display: inline-block; 
    font-weight: bold; 
    white-space: nowrap; 
    text-align: center;
    font-size: 14px;
    transition: background 0.2s;
    width: 100%; /* Make button full width of column */
    box-sizing: border-box;
}

.lodging-card .btn-primary:hover { 
    background-color: #00487a; 
}

/* Amenities Tags in Card */
.nodepo-card-amenities { 
    margin-top: auto; 
}

.nodepo-am-tag {
    display: inline-block;
    font-size: 12px;
    color: #444;
    background: #f7f9fa;
    padding: 4px 8px;
    border-radius: 4px; 
    margin-right: 6px;
    margin-bottom: 6px;
    border: 1px solid #e1e4e8;
}

/* 4. Single Page Booking Box */
.nodepo-booking-card { 
    background: #fff; 
    border: 1px solid #dce0e5; 
    padding: 25px; 
    border-radius: 8px; 
    position: sticky; 
    top: 20px; 
    text-align: center; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.nodepo-rating-badge { 
    background: #003580; 
    color: #fff; 
    padding: 6px 10px; 
    border-radius: 4px 4px 4px 0; 
    font-weight: bold; 
    display: inline-block; 
    margin-bottom: 10px; 
    font-size: 13px;
}

.nodepo-price { 
    font-size: 28px; 
    font-weight: 800; 
    color: #333; 
    display: block; 
    margin: 10px 0;
}

.nodepo-btn-book { 
    background-color: #0071c2; 
    color: white; 
    display: block; 
    padding: 14px; 
    margin-top: 15px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 16px; 
    border-radius: 4px; 
    transition: background 0.2s;
}

.nodepo-btn-book:hover { 
    background-color: #005999; 
}

.nodepo-single-title { margin-bottom: 5px; }
.nodepo-single-subtitle { 
    font-size: 14px; 
    color: #6b6b6b; 
    font-weight: 400; 
    margin-top: 0; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

/* 5. Internal Links Lists */
.nodepo-amenities-list ul, .nodepo-nearby-list ul { list-style: none; padding: 0; }
.nodepo-amenities-list li, .nodepo-nearby-list li { 
    margin-bottom: 8px; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 5px; 
}
.nodepo-amenities-list a, .nodepo-nearby-list a { 
    color: #0071c2; 
    text-decoration: none; 
}

/* 6. Similar Hotels Grid */
.nodepo-similar-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 20px; 
    margin-top: 20px; 
}

.nodepo-similar-card { 
    background: #fff; 
    border: 1px solid #e7e7e7; 
    border-radius: 8px; 
    overflow: hidden; 
    transition: all 0.2s ease; 
}

.nodepo-similar-card:hover { 
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
}

.nodepo-similar-img-wrap img { 
    width: 100%; 
    height: 160px; 
    object-fit: cover; 
    display: block; 
}

.nodepo-similar-content { padding: 15px; }
.nodepo-similar-content h4 { 
    margin: 0 0 10px 0; 
    font-size: 16px; 
    line-height: 1.4; 
}
.nodepo-similar-content h4 a { 
    color: #0071c2; 
    text-decoration: none; 
}

.nodepo-similar-meta { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: bold; 
}

.nodepo-similar-meta .rating { 
    background: #003580; 
    color: #fff; 
    padding: 3px 6px; 
    border-radius: 4px 4px 4px 0; 
    font-size: 12px; 
}

.nodepo-similar-meta .price { 
    color: #333; 
    font-size: 16px; 
}

/* 7. Price Tiers Styling */
.nodepo-price-tiers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.nodepo-price-tier-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nodepo-price-tier-link:hover {
    background-color: #0071c2; 
    color: #fff;
    border-color: #0071c2;
    text-decoration: none;
}

/* 8. Comparison Table */
.nodepo-comparison-wrapper {
    margin-bottom: 30px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nodepo-comparison-wrapper h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.nodepo-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.nodepo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.nodepo-comparison-table th, 
.nodepo-comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.nodepo-comparison-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.nodepo-comparison-table td a {
    color: #0071c2;
    text-decoration: none;
    font-weight: 600;
}

.nodepo-table-rating {
    background: #003580;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
}

.nodepo-text-center { text-align: center !important; }
.nodepo-check { color: #008009; font-weight: bold; font-size: 18px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }

/* Comparison Table Scrollbars */
.nodepo-scroll-top {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    height: 24px;
    display: none;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
}
.nodepo-scroll-top-inner {
    height: 1px;
}
.nodepo-table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

/* 9. FAQ Section */
.nodepo-faq-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #e7e7e7;
}

.nodepo-faq-item summary {
    list-style: none;
    position: relative;
    padding-right: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    padding: 10px 0;
}

.nodepo-faq-item summary::-webkit-details-marker { display: none; }

.nodepo-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: bold;
    color: #0071c2;
    font-size: 20px;
    top: 8px;
}

.nodepo-faq-item[open] summary::after { content: '-'; }

.nodepo-faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding-bottom: 10px;
}

/* 10. Deep Dive Block (SEO Content) - NEW STYLE */
.nodepo-seo-content-block.deep-dive {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9fbff; /* Very light blue tint */
    border: 1px solid #e1e8f5;
    border-radius: 8px;
}

.nodepo-seo-content-block.deep-dive h2 {
    font-size: 22px;
    color: #003580;
    margin-top: 0;
    margin-bottom: 15px;
}

.nodepo-seo-content-block.deep-dive p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Mobile Filter Toggle Button (Hidden on Desktop) */
.nodepo-mobile-filter-toggle {
    display: none;
}

/* Lodging Grid (City Page) */
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* 11. Responsive Breakpoints */
@media (max-width: 768px) {
    .nodepo-container { padding: 10px; overflow-x: hidden; }

    /* Collapse Columns */
    .nodepo-col-3, .nodepo-col-4, .nodepo-col-8, .nodepo-col-9, .nodepo-col-12 { width: 100%; padding: 0; }
    .nodepo-row { flex-direction: column; margin: 0; }
    
    /* Reorder: Sidebar (Filters) First - Expedia Style UX */
    .nodepo-col-3, .nodepo-col-4 { order: -1; margin-bottom: 20px; }
    .nodepo-col-8, .nodepo-col-9 { order: 1; }

    /* Mobile Filter Toggle Logic */
    .nodepo-mobile-filter-toggle {
        display: block;
        width: 100%;
        padding: 12px;
        background-color: #fff;
        color: #0071c2;
        border: 1px solid #0071c2;
        border-radius: 4px;
        font-weight: 700;
        text-align: center;
        cursor: pointer;
        margin-bottom: 15px;
        transition: background-color 0.2s;
    }

    .nodepo-mobile-filter-toggle:hover {
        background-color: #f0f7ff;
    }
    
    .nodepo-mobile-filter-toggle:after {
        content: ' \25BC'; /* Down arrow */
        font-size: 0.8em;
        margin-left: 5px;
    }
    
    .nodepo-mobile-filter-toggle.active:after {
        content: ' \25B2'; /* Up arrow */
    }

    /* Hide filter box content by default on mobile */
    .nodepo-filter-box {
        display: none;
    }
    
    /* Show when active */
    .nodepo-filter-box.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Listing Card Vertical Layout */
    .lodging-card { flex-direction: column; align-items: stretch; }
    
    .lodging-card .card-image { 
        width: 100% !important; 
        height: 200px; 
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .lodging-card .card-details { 
        padding-left: 0 !important; 
        width: 100%;
        margin-bottom: 15px;
        height: auto;
    }
    
    .lodging-card .card-price { 
        width: 100%;
        flex: auto;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 15px;
        height: auto;
        
        /* Mobile Layout: Price Left, Button Right */
        flex-direction: row; 
        align-items: center; 
        justify-content: space-between;
    }
    
    .price-block { align-items: flex-start; }
    .lodging-card .btn-primary { width: auto; min-width: 120px; }
}

/* ==========================================================================
   HOMEPAGE / EXPEDIA STYLE HERO
   ========================================================================== */

/* HERO FIX: Uses modern CSS grid/width techniques instead of negative margins
   to ensure it breaks out of containers cleanly on most themes.
*/
.nodepo-hero-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--nodepo-primary, #003580); 
    /* Fallback blue if var not set */
    overflow: hidden;
}

.nodepo-hero-section {
    background-image: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0));
    color: #ffffff;
    padding: 80px 20px 140px; /* Extra bottom padding for the search box overlap */
    text-align: center;
}

.nodepo-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.nodepo-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff !important; /* Force white over any theme headers */
}

.nodepo-hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ffffff !important;
}

/* SEARCH BOX MOCKUP */
.nodepo-search-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 30px;
    max-width: 1000px;
    margin: -100px auto 80px; /* Pulls box UP over the hero */
    position: relative;
    z-index: 10;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.nodepo-search-heading {
    margin-top: 0; 
    margin-bottom: 5px; 
    font-size: 1.5rem; 
    color: #222; 
    font-weight: 800;
}

.nodepo-search-subtext {
    margin: 0 0 15px; 
    color: #666;
}

.nodepo-search-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.nodepo-search-input {
    flex: 1;
    min-width: 250px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 1.1rem;
    background-color: #fff; 
    color: #555;
    cursor: pointer;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.search-icon {
    font-size: 1.2rem; 
    margin-right: 8px;
}

.nodepo-search-btn {
    background-color: var(--nodepo-primary, #0071c2);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px; 
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.nodepo-search-btn:hover {
    filter: brightness(110%);
    transform: translateY(-1px);
}

.nodepo-search-trust {
    margin: 15px 0 0; 
    font-size: 0.9rem; 
    color: #555; 
    font-weight: 500;
}

/* DESTINATION CARDS */
.nodepo-home-section {
    margin-bottom: 80px;
}

.nodepo-section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1f1f1f;
    margin-bottom: 30px;
    text-align: center;
}

.nodepo-dest-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    border: 1px solid #eee;
}

.nodepo-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.nodepo-dest-img-placeholder {
    height: 160px;
    background-color: #e9eff5;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.8;
}

.nodepo-dest-content {
    padding: 20px;
}

.nodepo-dest-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1f1f1f;
}

.nodepo-dest-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.nodepo-no-regions {
    padding: 40px; 
    text-align: center; 
    background: #f9f9f9; 
    border-radius: 8px; 
    border: 1px dashed #ccc;
}

/* VALUE PROPS */
.value-prop-card {
    text-align: center;
    padding: 20px;
}
.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}
.value-prop-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.value-prop-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* HOMEPAGE SEO CONTENT */
.nodepo-seo-content {
    max-width: 840px; 
    margin: 0 auto; 
    color: #444; 
    line-height: 1.8; 
    font-size: 1.15rem;
}

.seo-main-title {
    font-size: 2.5rem; 
    margin-bottom: 30px; 
    color: #111; 
    line-height: 1.2; 
    font-weight: 800;
}

.nodepo-seo-content h3 {
    font-size: 1.8rem; 
    margin-top: 50px; 
    margin-bottom: 20px; 
    color: #222; 
    font-weight: 700;
}

.nodepo-seo-content ul {
    margin-bottom: 30px; 
    padding-left: 20px;
}

.nodepo-seo-content li {
    margin-bottom: 15px;
}

.nodepo-faq-box {
    background:#f5f7fa; 
    padding:40px; 
    border-radius:12px; 
    border:1px solid #e1e4e8;
}

.nodepo-faq-box h4 {
    font-size: 1.25rem; 
    margin-top: 0; 
    margin-bottom: 10px; 
    color: var(--nodepo-primary, #003580); 
    font-weight: 700;
}

.nodepo-faq-box p {
    margin-bottom: 25px;
}

.nodepo-faq-box p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nodepo-hero-title { font-size: 2.2rem; }
    .nodepo-search-mockup { margin: -60px 0 40px; padding: 15px; width: 100%; }
    .nodepo-search-input { min-width: 100%; }
    .nodepo-search-btn { width: 100%; border-radius: 8px; }
    
    /* Mobile Hero Wrapper Reset */
    .nodepo-hero-wrapper { 
        margin-left: -10px; /* Matches .nodepo-container padding: 10px */
        margin-right: -10px; 
        width: calc(100% + 20px); 
        left: auto; 
        right: auto; 
    }
}

/* Mobile Card Style for Comparison Table (<480px) */
@media (max-width: 480px) {
    .nodepo-scroll-top { display: none !important; }
    .nodepo-table-responsive { overflow-x: visible; }
    
    /* Remove wrapper styling on mobile to give cards full width */
    .nodepo-comparison-wrapper {
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .nodepo-comparison-table thead { display: none; }
    
    .nodepo-comparison-table, 
    .nodepo-comparison-table tbody, 
    .nodepo-comparison-table tr, 
    .nodepo-comparison-table td {
        display: block;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .nodepo-comparison-table tr {
        margin-bottom: 20px;
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .nodepo-comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        min-height: 40px;
    }
    
    .nodepo-comparison-table td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 15px;
    }
    
    /* Label styling using data-label attribute */
    .nodepo-comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #555;
        text-align: left;
        margin-right: 15px;
        font-size: 13px;
        flex: 1;
    }
    
    /* Special styling for Hotel Name (1st column) */
    .nodepo-comparison-table td:first-child {
        display: block;
        text-align: center;
        font-size: 18px;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .nodepo-comparison-table td:first-child::before { display: none; }
    
    /* Hide Action label if present */
    .nodepo-comparison-table td:last-child::before { display: none; }
}