/* MOBILE CSS - ACTIVE FOR HOMEPAGE IMPROVEMENTS */
/* Enhanced mobile styling for better mobile experience */

/* DIRECT OVERRIDE FOR PRICING GRID - ONLY ON PRICING PAGE */
body.pricing-page .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
}

/* DIRECT OVERRIDE FOR CONTACT GRID - OUTSIDE MEDIA QUERY */
.contact-grid {
    display: flex !important;
    flex-direction: column !important;
}

/* DIRECT OVERRIDE FOR HAMBURGER MENU - OUTSIDE MEDIA QUERY */
.mobile-menu-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 30px !important;
    height: 30px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1001 !important;
}

.mobile-menu-btn span {
    width: 25px !important;
    height: 3px !important;
    background: #333 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
}

/* HIDE DESKTOP NAV ON MOBILE - OUTSIDE MEDIA QUERY */
.nav-links {
    display: none !important;
}

/* MOBILE MENU OVERLAY - OUTSIDE MEDIA QUERY */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.95) !important;
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999 !important;
    padding-top: 80px !important;
}

.mobile-menu.active {
    display: flex !important;
}

.mobile-menu a {
    color: white !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin: 20px 0 !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(255,255,255,0.1) !important;
    transform: translateY(-2px) !important;
}

.mobile-menu .btn-primary {
    background: #3b82f6 !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    margin-top: 30px !important;
    padding: 18px 40px !important;
    font-size: 18px !important;
    border-radius: 12px !important;
}

@media (max-width: 768px) {

    /* FORCE HIDE THREE DOTS BUTTON ON ALL MOBILE DEVICES */
    button.actions-trigger,
    .actions-trigger,
    .actions-dropdown button.actions-trigger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    /* MOBILE TOUCH FIX - PROVEN SOLUTION */
    html {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;
    }

    a, button, input, select, textarea, .btn, .clickable {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        touch-action: manipulation;
        cursor: pointer;
    }

    input, textarea, select {
        -webkit-user-select: text;
        -webkit-touch-callout: default;
    }
    /* MOBILE HOMEPAGE FIXES */

    /* NEW CONTAINER MOBILE IMPROVEMENTS */
    .features-grid-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .feature-content-card {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
        border-radius: 12px !important;
    }

    .feature-content-card h4 {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }

    .feature-content-card p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .section-header-container {
        padding: 0 15px !important;
        margin-bottom: 30px !important;
    }

    .section-header-container .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .section-header-container .section-subtitle {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .standout-container {
        padding: 0 15px !important;
        margin: 40px 0 30px !important;
    }

    .standout-container .standout-title {
        font-size: 1.4rem !important;
    }

    .comparison-container {
        padding: 0 10px !important;
        margin: 40px 0 !important;
    }

    .comparison-table-wrapper {
        border-radius: 10px !important;
        overflow-x: auto !important;
    }

    .bottom-line-container {
        padding: 0 15px !important;
        margin-top: 40px !important;
    }

    .bottom-line-content {
        padding: 30px 20px !important;
        border-radius: 15px !important;
    }

    .bottom-line-content .bottom-line-title {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }

    .bottom-line-text-container .bottom-line-text {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .bottom-line-cta-container .bottom-line-cta {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .cta-buttons-container {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .cta-buttons-container .btn-primary,
    .cta-buttons-container .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
    }

    /* CENTER ALL TEXT ON MOBILE WITH PROPER SPACING */
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle,
    .standout-main-title,
    .standout-subtitle,
    .standout-title,
    .comparison-title,
    .bottom-line-title,
    .bottom-line-text,
    h1, h2, h3, h4, h5, h6,
    .display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
    .lead,
    p {
        text-align: center !important;
    }

    /* TITLE SPACING - PROPER LINE HEIGHTS AND MARGINS */
    h1, .display-4 {
        margin-bottom: 30px !important;
        line-height: 1.3 !important;
    }

    h2, .section-title {
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
    }

    h3 {
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }

    h4, h5, h6 {
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }

    p, .lead, .section-subtitle {
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }

    /* IMPROVED MOBILE CONTAINER SPACING */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    /* SECTION SPACING */
    .section {
        padding: 40px 0 !important;
    }

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

    .section-subtitle {
        margin-bottom: 40px !important;
        padding: 0 20px !important;
    }

    /* HERO SECTION - CENTERED WITH PROPER SPACING */
    .hero {
        text-align: center !important;
        padding: 100px 0 60px !important;
    }

    .hero h1.display-4 {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        color: #2c3e50 !important;
        margin-bottom: 30px !important;
        letter-spacing: -0.02em !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .hero .lead {
        font-size: 18px !important;
        line-height: 1.6 !important;
        color: #6c757d !important;
        margin-bottom: 40px !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .hero .row {
        text-align: center !important;
    }

    .hero .col-lg-10 {
        text-align: center !important;
    }

    /* PRICING SECTION - ENHANCED MOBILE */
    .pricing,
    .pricing-detailed {
        padding: 40px 0 60px 0 !important;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
        text-align: center !important;
        overflow-x: hidden !important;
    }

    /* Force mobile layout for pricing */
    .pricing-detailed .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .pricing .section-title,
    .pricing-detailed h1,
    .pricing-detailed h2 {
        font-size: 2.2rem !important;
        font-weight: 800 !important;
        margin-bottom: 16px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #1e293b !important;
        line-height: 1.2 !important;
    }

    .pricing .section-subtitle,
    .pricing-detailed p {
        font-size: 17px !important;
        margin-bottom: 40px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #64748b !important;
        line-height: 1.6 !important;
        font-weight: 400 !important;
    }

    /* PRICING GRID - ONLY APPLY TO PRICING PAGE ON MOBILE */
    body.pricing-page .pricing-grid,
    .pricing-detailed .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 16px !important;
        grid-template-columns: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        align-items: stretch !important;
    }

    /* PRICING CARDS - ONLY APPLY TO PRICING PAGE ON MOBILE */
    body.pricing-page .pricing-card,
    .pricing-detailed .pricing-card {
        background: white !important;
        border-radius: 16px !important;
        padding: 32px 24px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        border: 1px solid #e2e8f0 !important;
        text-align: center !important;
        position: relative !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: block !important;
        overflow: hidden !important;
        flex: none !important;
        float: none !important;
        clear: both !important;
    }

    /* FORCE VERTICAL LAYOUT - OVERRIDE ALL GRID STYLES */
    .pricing-grid,
    .pricing-detailed .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        grid-auto-flow: unset !important;
        grid-gap: unset !important;
        gap: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* FORCE SINGLE COLUMN FOR ALL PRICING CARDS */
    .pricing-card,
    .pricing-detailed .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        grid-column: unset !important;
        grid-row: unset !important;
        float: none !important;
        display: block !important;
    }

    .pricing-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
        border-color: #cbd5e1 !important;
    }

    .pricing-card.popular {
        border: 2px solid #3b82f6 !important;
        transform: scale(1.02) !important;
        box-shadow: 0 8px 32px rgba(59,130,246,0.15) !important;
        padding-top: 50px !important; /* Extra top padding for the badge */
        margin-top: 15px !important; /* Add margin to account for badge */
    }

    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-4px) !important;
        box-shadow: 0 12px 40px rgba(59,130,246,0.2) !important;
    }

    .popular-badge {
        position: absolute !important;
        top: -8px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
        color: white !important;
        padding: 8px 24px !important;
        border-radius: 20px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 12px rgba(59,130,246,0.3) !important;
        z-index: 10 !important;
    }

    .pricing-header h3 {
        font-size: 26px !important;
        font-weight: 800 !important;
        margin-bottom: 12px !important;
        color: #1e293b !important;
        letter-spacing: -0.5px !important;
    }

    .price {
        margin: 24px 0 !important;
        display: flex !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 2px !important;
    }

    .price .currency {
        font-size: 24px !important;
        color: #64748b !important;
        font-weight: 600 !important;
        align-self: flex-start !important;
        margin-top: 8px !important;
    }

    .price .amount {
        font-size: 56px !important;
        font-weight: 900 !important;
        color: #1e293b !important;
        line-height: 1 !important;
        letter-spacing: -2px !important;
    }

    .price .period {
        font-size: 18px !important;
        color: #64748b !important;
        font-weight: 500 !important;
        align-self: flex-end !important;
        margin-bottom: 8px !important;
    }

    .pricing-header p {
        color: #64748b !important;
        font-size: 17px !important;
        margin-bottom: 28px !important;
        line-height: 1.5 !important;
        font-weight: 400 !important;
    }

    .pricing-features {
        list-style: none !important;
        padding: 0 !important;
        margin: 28px 0 32px 0 !important;
        text-align: left !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        padding: 20px !important;
    }

    .pricing-features li {
        padding: 10px 0 !important;
        font-size: 15px !important;
        color: #374151 !important;
        border-bottom: 1px solid #e5e7eb !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        font-weight: 500 !important;
    }

    .pricing-features li:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .pricing-features .check,
    .pricing-features .warning {
        font-size: 16px !important;
        font-weight: 600 !important;
        flex-shrink: 0 !important;
    }

    .pricing-features .check {
        color: #10b981 !important;
    }

    .pricing-features .warning {
        color: #f59e0b !important;
    }

    .pricing-card .btn-primary,
    .pricing-card .btn-secondary,
    .pricing-card input[type="submit"] {
        width: 100% !important;
        padding: 20px 32px !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        margin-top: 28px !important;
        text-decoration: none !important;
        display: block !important;
        text-align: center !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        min-height: 60px !important;
        line-height: 1.2 !important;
        box-sizing: border-box !important;
        letter-spacing: 0.5px !important;
        cursor: pointer !important;
    }

    .pricing-card .btn-primary,
    .pricing-card input[type="submit"] {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
        color: white !important;
        border: 2px solid #3b82f6 !important;
        box-shadow: 0 4px 20px rgba(59,130,246,0.3) !important;
    }

    .pricing-card .btn-primary:hover,
    .pricing-card input[type="submit"]:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
        border-color: #2563eb !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 28px rgba(59,130,246,0.4) !important;
    }

    .pricing-card .btn-secondary {
        background: white !important;
        color: #3b82f6 !important;
        border: 2px solid #3b82f6 !important;
        box-shadow: 0 4px 20px rgba(59,130,246,0.15) !important;
    }

    .pricing-card .btn-secondary:hover {
        background: #3b82f6 !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 28px rgba(59,130,246,0.4) !important;
    }

    .pricing-note {
        text-align: center !important;
        margin-top: 20px !important;
        padding: 16px 20px !important;
        background: #f1f5f9 !important;
        border-radius: 10px !important;
        border: 1px solid #e2e8f0 !important;
        font-size: 14px !important;
        color: #64748b !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
    }

    .pricing-note p {
        font-size: 14px !important;
        color: #64748b !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }

    /* FEATURES SECTION - MOBILE CENTERED */
    .features {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .features .section-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #2c3e50 !important;
    }

    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }

    .feature-card {
        background: white !important;
        padding: 30px 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }

    .feature-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    }

    .feature-card h3 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin: 30px 0 20px !important;
        color: #2c3e50 !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    /* FEATURE ICONS - MORE SPACE AFTER */
    .feature-icon,
    .step-icon,
    .benefit-icon {
        margin-bottom: 25px !important;
    }

    .feature-card .feature-icon {
        margin-bottom: 30px !important;
    }

    .feature-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #6c757d !important;
        margin: 0 !important;
        text-align: center !important;
    }

    /* HOW IT WORKS SECTION - MOBILE CENTERED */
    .how-it-works {
        padding: 60px 0 !important;
        background: #f8f9fa !important;
        text-align: center !important;
    }

    .how-it-works .section-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #2c3e50 !important;
    }

    .how-it-works .section-subtitle {
        font-size: 16px !important;
        margin-bottom: 40px !important;
        text-align: center !important;
        padding: 0 20px !important;
        color: #6c757d !important;
        line-height: 1.6 !important;
    }

    .steps-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }

    .step-card {
        background: white !important;
        padding: 30px 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        text-align: center !important;
        position: relative !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        background: #007bff !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        margin: 0 auto 35px !important;
    }

    .step-card h3 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin-bottom: 20px !important;
        color: #2c3e50 !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    .step-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #6c757d !important;
        margin: 0 !important;
        text-align: center !important;
    }

    /* FOOTER - CLEAN MINIMAL MOBILE */
    .footer {
        text-align: center !important;
        padding: 40px 0 30px !important;
        background: #1e293b !important;
        color: white !important;
    }

    .footer-content {
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: center !important;
    }

    /* HIDE LOGO AND BRAND TEXT ON MOBILE */
    .footer-brand {
        display: none !important;
    }

    .footer-brand img,
    .footer-brand p {
        display: none !important;
    }

    /* CLEAN FOOTER LINKS - SINGLE ROW */
    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 32px !important;
        margin: 0 !important;
        text-align: center !important;
        flex-wrap: wrap !important;
    }

    /* HIDE COLUMN HEADERS */
    .footer-section h4,
    .footer-column h4 {
        display: none !important;
    }

    /* HIDE BROKEN/DUPLICATE LINKS */
    .footer-column a[href="#about"],
    .footer-column a[href="#privacy"],
    .footer-column a[href="#terms"],
    .footer-column a[href="dashboard.php"] {
        display: none !important;
    }

    /* HIDE DUPLICATE SUPPORT LINK */
    .footer-column:nth-child(2) a[href="contact.php"] {
        display: none !important;
    }

    /* HIDE HELP CENTER LINK */
    .footer-column:nth-child(2) a[href="login.php"] {
        display: none !important;
    }

    /* HIDE ENTIRE COMPANY COLUMN */
    .footer-column:nth-child(3) {
        display: none !important;
    }

    /* STYLE REMAINING LINKS */
    .footer-section a,
    .footer-column a {
        display: inline-block !important;
        padding: 12px 0 !important;
        color: #cbd5e1 !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        transition: all 0.3s ease !important;
    }

    .footer-section a:hover,
    .footer-column a:hover {
        color: #3b82f6 !important;
        transform: translateY(-1px) !important;
    }

    /* CLEAN FOOTER BOTTOM */
    .footer-bottom {
        border-top: 1px solid #334155 !important;
        padding-top: 24px !important;
        margin-top: 32px !important;
        text-align: center !important;
    }

    .footer-bottom p {
        font-size: 14px !important;
        color: #94a3b8 !important;
        margin: 0 !important;
        line-height: 1.4 !important;
        font-weight: 400 !important;
    }

    /* GENERAL MOBILE IMPROVEMENTS - ALL CENTERED */
    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    /* MOBILE SIDEBAR NAVIGATION FIXES */
    .sidebar .nav-item {
        pointer-events: auto !important;
        touch-action: manipulation !important;
        display: block !important;
        text-decoration: none !important;
        color: #64748b !important;
        padding: 12px 24px !important;
        border-left: 3px solid transparent !important;
        transition: all 0.2s ease !important;
        text-align: left !important;
        cursor: pointer !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }

    .sidebar .nav-item:hover,
    .sidebar .nav-item:active,
    .sidebar .nav-item:focus {
        background: #f8fafc !important;
        color: #374151 !important;
        text-decoration: none !important;
    }

    .sidebar .nav-item.active {
        background: #eff6ff !important;
        color: #007AFF !important;
        border-left-color: #007AFF !important;
    }

    /* OVERRIDE GLOBAL CENTER ALIGNMENT FOR SIDEBAR */
    .sidebar, .sidebar * {
        text-align: left !important;
    }

    /* ENSURE SIDEBAR LINKS ARE CLICKABLE */
    .sidebar .nav-item[href] {
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
    }

    /* FORCE CENTER ALL CONTENT ON MOBILE - NUCLEAR OPTION */
    *, *::before, *::after {
        text-align: center !important;
    }

    body, html {
        text-align: center !important;
    }

    .container, .row, .col-lg-10, .col-md-4 {
        text-align: center !important;
    }

    h1, h2, h3, h4, h5, h6, p, div, span, a {
        text-align: center !important;
    }

    /* OVERRIDE FOR SPECIFIC ELEMENTS THAT SHOULD BE LEFT-ALIGNED */
    .pricing-features,
    .pricing-features li {
        text-align: left !important;
    }

    /* ENSURE ALL SECTIONS ARE CENTERED */
    section {
        text-align: center !important;
    }

    /* BOOTSTRAP OVERRIDES FOR MOBILE */
    .row {
        text-align: center !important;
    }

    .col-lg-10,
    .col-md-4,
    .col-sm-6 {
        text-align: center !important;
    }

    /* BUTTONS - MOBILE FRIENDLY */
    .btn-primary:not(.mobile-menu-toggle),
    .btn-secondary:not(.mobile-menu-toggle),
    button:not(.mobile-menu-toggle):not(.mobile-close-btn),
    .btn:not(.mobile-menu-toggle),
    a[href]:not(.mobile-menu-toggle),
    .clickable:not(.mobile-menu-toggle) {
        min-height: 48px !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: inline-block !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
    }

    /* MOBILE TOUCH FIXES - NUCLEAR OPTION */
    * {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
    }

    /* FORCE CLICKABILITY ON MOBILE */
    html {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
    }

    body {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
    }

    /* CONTAINERS AND CARDS - MOBILE CLICKABLE */
    .pricing-card,
    .feature-card,
    .step-card,
    .benefit-item,
    .container,
    .card,
    .upgrade-btn,
    .waply-btn,
    .waply-button,
    .banner-upgrade-btn,
    .subscription-banner,
    .btn-primary:not(.mobile-menu-toggle),
    .btn-secondary:not(.mobile-menu-toggle),
    .btn-sm:not(.mobile-menu-toggle),
    .banner-actions a,
    a:not(.mobile-menu-toggle),
    button:not(.mobile-menu-toggle):not(.mobile-close-btn),
    .btn:not(.mobile-menu-toggle),
    [href]:not(.mobile-menu-toggle),
    [onclick]:not(.mobile-menu-toggle) {
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.2) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }

    /* FORCE BUTTON STYLES */
    .btn, button, a[href] {
        display: inline-block !important;
        text-decoration: none !important;
        border: none !important;
        outline: none !important;
    }

    /* CLEAN BUTTON STYLING - NO CONFLICTS */
    .btn-primary,
    .pricing-card .btn-primary,
    .cta-buttons-container .btn-primary,
    a.btn-primary {
        background-color: #007bff !important;
        color: white !important;
        border: 2px solid #007bff !important;
        text-decoration: none !important;
    }

    .btn-primary:hover,
    .pricing-card .btn-primary:hover,
    .cta-buttons-container .btn-primary:hover,
    a.btn-primary:hover {
        background-color: #0056b3 !important;
        border-color: #0056b3 !important;
        color: white !important;
    }

    .btn-secondary,
    .pricing-card .btn-secondary,
    .cta-buttons-container .btn-secondary,
    a.btn-secondary {
        background-color: white !important;
        color: #007bff !important;
        border: 2px solid #007bff !important;
        text-decoration: none !important;
    }

    .btn-secondary:hover,
    .pricing-card .btn-secondary:hover,
    .cta-buttons-container .btn-secondary:hover,
    a.btn-secondary:hover {
        background-color: #007bff !important;
        color: white !important;
        border-color: #007bff !important;
    }

    /* SPECIFIC UPGRADE BUTTON FIXES */
    .banner-upgrade-btn,
    .btn.btn-primary.btn-sm.banner-upgrade-btn {
        min-height: 48px !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        background: #007bff !important;
        color: white !important;
        text-decoration: none !important;
        display: inline-block !important;
        text-align: center !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
        pointer-events: auto !important;
    }

    .banner-upgrade-btn:hover,
    .btn.btn-primary.btn-sm.banner-upgrade-btn:hover {
        background: #0056b3 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(0,123,255,0.4) !important;
        color: white !important;
    }

    /* TRIAL BANNER MOBILE FIXES */
    .subscription-banner {
        padding: 20px !important;
        margin: 20px 0 !important;
        border-radius: 12px !important;
        cursor: default !important;
    }

    .banner-actions {
        margin-top: 20px !important;
        text-align: center !important;
    }
    /* RESET AND BASE */
    * {
        box-sizing: border-box;
    }

    body {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    /* NAVIGATION - COMPLETE REDESIGN */
    .navbar {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0;
    }

    /* MOBILE NAVIGATION BUTTONS */
    .navbar .d-flex {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .navbar .btn {
        width: 100% !important;
        padding: 15px 25px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        text-align: center !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navbar .btn-outline-primary {
        background: white !important;
        color: #007bff !important;
        border: 2px solid #007bff !important;
    }

    .navbar .btn-outline-primary:hover {
        background: #007bff !important;
        color: white !important;
    }

    .navbar .btn-primary {
        background: #007bff !important;
        color: white !important;
        border: 2px solid #007bff !important;
    }

    .navbar .btn-primary:hover {
        background: #0056b3 !important;
        border-color: #0056b3 !important;
    }

    /* BOOTSTRAP NAVBAR COLLAPSE MOBILE - WIDER BUTTONS */
    .navbar-collapse {
        padding: 30px 20px !important;
        width: 100% !important;
    }

    .navbar-collapse .d-flex {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        align-items: stretch !important;
    }

    .navbar-collapse .btn {
        width: 100% !important;
        padding: 18px 30px !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        min-height: 56px !important;
        display: block !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    .navbar-collapse .btn-outline-primary {
        background: white !important;
        color: #007bff !important;
        border: 3px solid #007bff !important;
    }

    .navbar-collapse .btn-primary {
        background: #007bff !important;
        color: white !important;
        border: 3px solid #007bff !important;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 100%;
    }

    .nav-brand .nav-logo {
        height: 35px;
        width: auto;
    }

    .nav-links {
        display: none !important;
    }

    /* HAMBURGER MENU BUTTON */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        width: 30px !important;
        height: 30px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 1001 !important;
    }

    .mobile-menu-btn span {
        width: 25px !important;
        height: 3px !important;
        background: #333 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        transform-origin: center !important;
    }

    /* Mobile menu overlay */
    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0,0,0,0.95) !important;
        display: none !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 999 !important;
        padding-top: 80px !important;
    }

    .mobile-menu.active {
        display: flex !important;
    }

    .mobile-menu a {
        color: white !important;
        font-size: 24px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        margin: 20px 0 !important;
        padding: 15px 30px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        background: rgba(255,255,255,0.1) !important;
        transform: translateY(-2px) !important;
    }

    .mobile-menu .btn-primary {
        background: #3b82f6 !important;
        color: white !important;
        border: 2px solid #3b82f6 !important;
        margin-top: 30px !important;
        padding: 18px 40px !important;
        font-size: 18px !important;
        border-radius: 12px !important;
    }

    .mobile-menu .btn-login {
        background: transparent !important;
        color: white !important;
        border: 2px solid white !important;
        padding: 18px 40px !important;
        font-size: 18px !important;
        border-radius: 12px !important;
        flex-direction: column;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        z-index: 1001;
        width: 32px;
        height: 32px;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-btn span {
        width: 14px;
        height: 1.5px;
        background: #333;
        margin: 1.5px 0;
        transition: 0.3s;
        border-radius: 1px;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 999;
        padding: 80px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block !important;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        display: block;
        padding: 20px 0;
        font-size: 20px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: color 0.3s;
    }

    .mobile-menu a:hover {
        color: #007bff;
    }

    .mobile-menu a.btn-primary {
        background: #007bff;
        color: white;
        padding: 15px 25px;
        border-radius: 8px;
        text-align: center;
        margin-top: 20px;
        border-bottom: none;
    }

    /* HERO SECTION - COMPLETE REDESIGN */
    .hero {
        padding: 100px 0 60px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        text-align: center;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #2c3e50;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
        color: #6c757d;
        padding: 0 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 20px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .hero-actions .btn-primary {
        background: #007bff;
        color: white;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .hero-actions .btn-primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    }

    .hero-actions .btn-secondary {
        background: white;
        color: #007bff;
        border: 2px solid #007bff;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 50px;
        align-items: center;
        padding: 0 20px;
    }

    .hero-feature {
        background: white;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        color: #495057;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border: 1px solid #e9ecef;
    }

    /* WORDPRESS NOTICE - MOBILE */
    .wordpress-notice {
        padding: 30px 0;
    }

    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        margin: 0 20px;
    }

    .notice-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .notice-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .notice-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .btn-wordpress {
        padding: 15px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* WHY WAPLY-CONNECT SECTION - UPDATED FOR NEW CONTAINERS */
    .why-waply-connect {
        padding: 40px 0 !important;
        background: white !important;
    }

    /* Updated for new container structure */
    .section-header-container {
        margin-bottom: 30px !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .section-header-container .section-title {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        color: #2c3e50 !important;
        padding: 0 10px !important;
    }

    .section-header-container .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        color: #6c757d !important;
        padding: 0 10px !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .standout-container {
        margin: 30px 0 25px !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .standout-container .standout-title {
        font-size: 1.4rem !important;
        font-weight: 600 !important;
        margin-bottom: 20px !important;
        color: #2c3e50 !important;
        text-align: center !important;
    }

    /* FEATURES LIST - MODERN CARD DESIGN */
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-item {
        background: white;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        text-align: left;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .feature-item h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #2c3e50;
        line-height: 1.3;
    }

    .feature-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* STEPS SECTION - MODERN DESIGN */
    .steps-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .step-item {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        position: relative;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 700;
        margin: 0 auto 20px;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .step-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
        line-height: 1.3;
    }

    .step-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* BENEFITS SECTION - CARD LAYOUT */
    .benefits-section {
        padding: 60px 0;
        background: white;
    }

    /* PLATFORM BENEFITS SECTION - MOBILE OPTIMIZED */
    .platform-benefits {
        margin: 50px 0 !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .platform-benefits h3 {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        color: #2c3e50 !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .benefits-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .benefit-item {
        background: white !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
        text-align: left !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        border: 1px solid #f1f3f4 !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
    }

    .benefit-item:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    }

    .benefit-item svg {
        flex-shrink: 0 !important;
        color: #007bff !important;
        margin-top: 2px !important;
    }

    .benefit-item div {
        flex: 1 !important;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 30px;
        background: #e3f2fd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #007bff;
    }

    .benefit-item h4 {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
        color: #2c3e50 !important;
        line-height: 1.3 !important;
    }

    .benefit-item p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        color: #6c757d !important;
        margin: 0 !important;
    }

    /* FEATURES GRID - MODERN CARDS */
    .features-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-card {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .feature-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #6c757d;
        margin: 0;
    }

    /* COMPARISON TABLE - MOBILE-FIRST REDESIGN */
    .comparison-section {
        padding: 60px 0;
        background: white;
    }

    .comparison-title {
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        color: #2c3e50;
        padding: 0 20px;
    }

    .comparison-table {
        padding: 0 20px;
    }

    .comparison-header,
    .comparison-row {
        display: block;
        margin-bottom: 25px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid #f1f3f4;
        overflow: hidden;
    }

    .comparison-cell {
        display: block;
        padding: 20px;
        border-bottom: 1px solid #f1f3f4;
        text-align: left;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .feature-col {
        background: #f8f9fa;
        font-weight: 700;
        font-size: 16px;
        color: #2c3e50;
        border-bottom: 2px solid #007bff;
    }

    .waply-col {
        background: #e8f5e8;
        color: #155724;
        font-weight: 600;
        position: relative;
    }

    .waply-col::before {
        content: "✓ Waply-Connect: ";
        font-weight: 700;
        color: #28a745;
    }

    .competitor-col {
        background: #fef2f2;
        color: #721c24;
        font-weight: 500;
        position: relative;
    }

    .competitor-col::before {
        content: "✗ Others: ";
        font-weight: 700;
        color: #dc3545;
    }

    /* BOTTOM LINE CTA - REDESIGNED */
    .bottom-line-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: white;
        text-align: center;
    }

    .bottom-line-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .bottom-line-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 20px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        transition: all 0.3s ease;
    }

    /* REMOVED CONFLICTING CTA BUTTON STYLES - USING MAIN BUTTON STYLES INSTEAD */

    /* FORMS - MODERN DESIGN */
    .form-group {
        margin-bottom: 25px;
    }

    .form-control {
        width: 100%;
        padding: 18px 20px;
        font-size: 16px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        background: white;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        outline: none;
    }

    .btn {
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        box-sizing: border-box;
    }

    .btn-primary {
        background: #007bff;
        color: white;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    }

    .btn-primary:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    }

    /* DUPLICATE FOOTER STYLING REMOVED - USING COMPACT VERSION ABOVE */

    /* MODALS - MOBILE OPTIMIZED */
    .modal {
        z-index: 2000;
    }

    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: 95vh;
        overflow-y: auto;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .modal-header {
        padding: 20px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-bottom: 1px solid #e9ecef;
        border-radius: 15px 15px 0 0;
    }

    .modal-header h2 {
        font-size: 18px;
        margin: 0;
        color: #2c3e50;
    }

    .modal-close {
        font-size: 24px;
        color: #6c757d;
        cursor: pointer;
        padding: 5px;
    }

    .modal-body {
        padding: 20px;
    }

    /* UTILITY CLASSES */
    .text-center-mobile {
        text-align: center !important;
    }

    .hidden-mobile {
        display: none !important;
    }

    .full-width-mobile {
        width: 100% !important;
    }

    .no-padding-mobile {
        padding: 0 !important;
    }

    /* SECTION SPACING */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #2c3e50;
        text-align: center;
        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
        color: #6c757d;
        text-align: center;
        padding: 0 20px;
    }

    /* RESPONSIVE IMAGES */
    img {
        max-width: 100%;
        height: auto;
    }

    /* SMOOTH SCROLLING */
    html {
        scroll-behavior: smooth;
    }

    /* PREVENT HORIZONTAL SCROLL */
    body {
        overflow-x: hidden;
    }
}

/* EXTRA SMALL DEVICES - ULTRA MOBILE OPTIMIZATION */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* TYPOGRAPHY ADJUSTMENTS */
    .hero-title {
        font-size: 1.8rem;
        padding: 0 5px;
    }

    .standout-main-title {
        font-size: 1.6rem;
        padding: 0 5px;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }

    .section-subtitle {
        padding: 0 15px;
    }

    /* NAVIGATION */
    .nav-container {
        padding: 12px 15px;
    }

    .mobile-menu {
        padding: 70px 15px 20px;
    }

    /* HERO ADJUSTMENTS */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-subtitle {
        padding: 0 10px;
    }

    .hero-actions {
        padding: 0 15px;
    }

    /* SECTIONS */
    .standout-section,
    .features-list,
    .steps-grid,
    .benefits-grid,
    .features-grid {
        padding: 0 15px;
    }

    .comparison-table {
        padding: 0 15px;
    }

    .comparison-title {
        padding: 0 15px;
    }

    /* FOOTER - EXTRA SMALL SCREENS */
    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .footer-content {
        padding: 0 10px !important;
        gap: 15px !important;
    }

    .footer {
        padding: 25px 0 15px !important;
    }

    /* FORMS */
    .form-control {
        padding: 16px 18px;
    }

    .btn {
        padding: 16px 25px;
    }

    /* CTA SECTION */
    .cta-buttons {
        padding: 0 15px;
    }

    .bottom-line-title,
    .bottom-line-text {
        padding: 0 15px;
    }

    /* CARDS */
    .feature-item,
    .step-item,
    .benefit-item,
    .feature-card {
        padding: 20px 15px;
    }

    /* MODAL */
    .modal-content {
        width: 98%;
        margin: 5px auto;
    }

    .modal-header,
    .modal-body {
        padding: 15px;
    }

    /* FINAL BUTTON OVERRIDE - ENSURE PROPER COLORS */
    .btn-primary,
    a.btn-primary,
    .btn-primary.large {
        background: #007bff !important;
        color: white !important;
        border: 2px solid #007bff !important;
        text-decoration: none !important;
    }

    .btn-secondary,
    a.btn-secondary,
    .btn-secondary.large {
        background: white !important;
        color: #007bff !important;
        border: 2px solid #007bff !important;
        text-decoration: none !important;
    }

    /* DASHBOARD MOBILE FIXES */

    /* Fix hamburger menu width */
    .mobile-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        padding: 10px !important;
        flex-shrink: 0 !important;
    }

    /* Setup Wizard Mobile Centering */
    .waply-modern-dashboard {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 16px !important;
    }

    .waply-admin-wrap {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .main-content {
        padding: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Hide mobile menu toggle on setup wizard to prevent centering issues */
    body.setup-wizard .mobile-menu-toggle,
    .waply-admin-wrap .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Ensure setup wizard content is properly centered */
    .waply-admin-wrap .main-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
    }

    /* Fix green "Next Steps" container text overlapping on mobile */
    .waply-admin-wrap div[style*="background: #e8f5e8"] {
        padding: 12px !important;
        margin: 12px 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .waply-admin-wrap div[style*="background: #e8f5e8"] h4 {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 0 0 8px 0 !important;
        word-wrap: break-word !important;
    }

    .waply-admin-wrap div[style*="background: #e8f5e8"] ol {
        margin: 0 !important;
        padding-left: 20px !important;
        line-height: 1.5 !important;
        font-size: 14px !important;
    }

    .waply-admin-wrap div[style*="background: #e8f5e8"] li {
        margin-bottom: 8px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Fix yellow tip box inside green container */
    .waply-admin-wrap div[style*="background: #fff3cd"] {
        padding: 8px !important;
        margin-top: 8px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* MODAL FIXES FOR MOBILE */

    /* Fix modal positioning on mobile - show at top with proper spacing */
    .modal {
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 10px !important;
        overflow-y: auto !important;
        display: flex !important;
    }

    .modal-content {
        margin-top: 10px !important;
        max-width: 98% !important;
        width: 98% !important;
        max-height: calc(100vh - 20px) !important;
        overflow-y: auto !important;
        position: relative !important;
        transform: none !important;
    }

    /* Ensure modal is always visible and positioned correctly */
    .modal.show,
    .modal[style*="display: flex"],
    .modal[style*="display: block"] {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 9999 !important;
    }

    /* Force modal to top of screen */
    .modal-content {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 10px auto 0 auto !important;
    }

    /* Modal header mobile adjustments */
    .modal-header {
        padding: 16px !important;
        flex-wrap: wrap !important;
    }

    .modal-header h3 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    /* Modal body mobile adjustments */
    .modal-body {
        padding: 16px !important;
    }

    /* Modal actions mobile adjustments */
    .modal-actions {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 16px !important;
        margin-top: 0 !important;
    }

    .modal-actions .btn {
        width: 100% !important;
        margin: 0 !important;
        padding: 12px !important;
        font-size: 16px !important;
    }

    /* MOBILE PRODUCTS TABLE - CLEAN DESIGN */

    /* Mobile table container with horizontal scroll */
    .table-container {
        background: white !important;
        border-radius: 12px !important;
        border: 1px solid #e2e8f0 !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        margin-bottom: 20px !important;
    }

    /* Clean mobile table styling */
    .products-table {
        width: 100% !important;
        min-width: 700px !important;
        border-collapse: collapse !important;
        background: white !important;
    }

    /* Mobile table headers */
    .products-table th {
        background: #f8fafc !important;
        padding: 12px 16px !important;
        text-align: left !important;
        font-weight: 600 !important;
        color: #374151 !important;
        font-size: 13px !important;
        border-bottom: 1px solid #e2e8f0 !important;
        white-space: nowrap !important;
    }

    /* Mobile table cells */
    .products-table td {
        padding: 12px 16px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        vertical-align: middle !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    /* First column (product info) should allow wrapping */
    .products-table td:first-child {
        white-space: normal !important;
        min-width: 200px !important;
    }

    /* Remove border from last row */
    .products-table tr:last-child td {
        border-bottom: none !important;
    }

    /* Row hover effect */
    .products-table tr:hover {
        background: #f8fafc !important;
    }

    /* Product info styling */
    .product-info {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        min-width: 200px !important;
        padding: 8px !important;
    }

    .product-image {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
    }

    .product-thumbnail {
        width: 50px !important;
        height: 50px !important;
        border-radius: 8px !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }

    .product-details {
        min-width: 0 !important;
    }

    .product-name a {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #1e293b !important;
        text-decoration: none !important;
        display: block !important;
        line-height: 1.4 !important;
    }

    .product-name a:hover {
        color: #3b82f6 !important;
    }

    .product-slug {
        font-size: 12px !important;
        color: #64748b !important;
        margin-top: 2px !important;
    }

    /* Price styling */
    .price {
        font-weight: 600 !important;
        color: #059669 !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    /* Status badge styling */
    .status-badge {
        display: inline-flex !important;
        align-items: center !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
        font-size: 11px !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.025em !important;
    }

    .status-badge.status-active {
        background: #dcfce7 !important;
        color: #166534 !important;
    }

    .status-badge.status-inactive {
        background: #fef2f2 !important;
        color: #991b1b !important;
    }

    /* File status styling */
    .file-status {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .file-badge {
        color: #059669 !important;
    }

    .file-badge svg {
        width: 16px !important;
        height: 16px !important;
    }

    .file-text {
        font-size: 12px !important;
        color: #059669 !important;
        font-weight: 500 !important;
    }

    .no-file-text {
        font-size: 12px !important;
        color: #64748b !important;
    }

    /* License count styling */
    .license-count {
        font-size: 14px !important;
        color: #374151 !important;
        font-weight: 500 !important;
    }

    /* Revenue styling */
    .revenue {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #059669 !important;
    }

    /* Date styling */
    .date {
        font-size: 12px !important;
        color: #64748b !important;
        white-space: nowrap !important;
    }

    /* MOBILE ACTIONS - SIMPLE ICON BUTTONS */

    /* Hide the dropdown trigger completely on mobile */
    .actions-dropdown .actions-trigger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }

    .actions-trigger {
        display: none !important;
        visibility: hidden !important;
    }

    /* Transform actions dropdown into horizontal icon buttons */
    .actions-dropdown {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 4px !important;
    }

    /* Make the actions menu visible and horizontal */
    .actions-menu {
        display: flex !important;
        gap: 10px !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        min-width: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        overflow: visible !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Fix forms inside actions menu */
    .actions-menu form {
        display: inline-flex !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Style action items as clean icon buttons */
    .actions-menu .action-item {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        background: white !important;
        color: #64748b !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        flex-shrink: 0 !important;
    }

    /* HIDE TEXT CONTENT - SHOW ONLY ICONS */
    .actions-menu .action-item {
        position: relative !important;
        overflow: hidden !important;
    }

    /* Hide all text nodes inside action items */
    .actions-menu .action-item {
        font-size: 0 !important;
    }

    .actions-menu .action-item::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: white !important;
        z-index: 1 !important;
    }

    /* Position SVG icons above the text-hiding overlay */
    .actions-menu .action-item svg {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 2 !important;
        font-size: initial !important;
    }

    /* Icon styling */
    .actions-menu .action-item svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    /* Edit button - Blue - copy danger class styling */
    .actions-menu .action-item:first-child {
        border-color: #dbeafe !important;
        background: #f8fafc !important;
    }

    .actions-menu .action-item:first-child svg {
        color: #3b82f6 !important;
    }

    .actions-menu .action-item:first-child:hover {
        background: #eff6ff !important;
        border-color: #3b82f6 !important;
    }

    .actions-menu .action-item:first-child:hover svg {
        color: #2563eb !important;
    }

    /* Hide duplicate and status toggle forms on mobile */
    .actions-menu > form:nth-child(2),
    .actions-menu > form:nth-child(3) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }

    /* Ensure edit link and delete form are visible */
    .actions-menu > a:first-child,
    .actions-menu > form:nth-child(4) {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
    }

    /* Delete button - Red */
    .actions-menu > form:nth-child(4) .action-item,
    .actions-menu .action-item.danger {
        border-color: #fecaca !important;
        display: inline-flex !important;
    }

    .actions-menu > form:nth-child(4) .action-item::before,
    .actions-menu .action-item.danger::before {
        background: #fef8f8 !important;
    }

    .actions-menu > form:nth-child(4) .action-item svg,
    .actions-menu .action-item.danger svg {
        color: #ef4444 !important;
    }

    .actions-menu > form:nth-child(4) .action-item:hover,
    .actions-menu .action-item.danger:hover {
        background: #fef2f2 !important;
        border-color: #ef4444 !important;
    }

    .actions-menu > form:nth-child(4) .action-item:hover::before,
    .actions-menu .action-item.danger:hover::before {
        background: #fef2f2 !important;
    }

    .actions-menu > form:nth-child(4) .action-item:hover svg,
    .actions-menu .action-item.danger:hover svg {
        color: #dc2626 !important;
    }

    /* Form styling within actions */
    .actions-menu form {
        display: inline-flex !important;
        margin: 0 !important;
        padding: 0 !important;
    }




}

/* CONTACT/SUPPORT PAGE MOBILE STYLING */
.contact-hero {
    padding: 100px 0 40px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    text-align: center !important;
}

.contact-hero .container {
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
}

.contact-hero h1 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
}

.contact-hero p {
    font-size: 17px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

.contact-content {
    padding: 40px 0 60px 0 !important;
    background: #f8fafc !important;
}

.contact-content .container {
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
}

/* FORCE VERTICAL LAYOUT FOR CONTACT GRID */
.contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
}

/* Contact Form */
.contact-form-section {
    background: white !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

.contact-form-section h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 24px !important;
    text-align: center !important;
}

.form-group {
    margin-bottom: 24px !important;
}

.form-group label {
    display: block !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 8px !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 16px !important;
    font-size: 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Specific styling for select dropdown */
.form-group select {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    font-size: 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1) !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

.contact-form .btn-primary {
    width: 100% !important;
    padding: 20px 32px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 4px 20px rgba(59,130,246,0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    margin-top: 8px !important;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    border-color: #2563eb !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(59,130,246,0.4) !important;
}

/* Contact Info Section */
.contact-info-section {
    background: white !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

.contact-info-section h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 24px !important;
    text-align: center !important;
}

.contact-methods {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.contact-method {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.contact-method:hover {
    background: #f1f5f9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.contact-icon {
    width: 48px !important;
    height: 48px !important;
    background: #3b82f6 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.contact-icon svg {
    width: 24px !important;
    height: 24px !important;
    color: white !important;
}

.contact-details h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 4px !important;
}

.contact-details p {
    font-size: 14px !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

.contact-details a {
    font-size: 16px !important;
    color: #3b82f6 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.contact-details a:hover {
    color: #2563eb !important;
    text-decoration: underline !important;
}

/* EXTRA SMALL MOBILE SCREENS */
@media (max-width: 480px) {
    /* Smaller table on very small screens */
    .products-table {
        min-width: 600px !important;
        font-size: 13px !important;
    }

    .products-table th {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }

    .products-table td {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    /* Smaller product thumbnails */
    .product-thumbnail {
        width: 32px !important;
        height: 32px !important;
    }

    /* Smaller action trigger */
    .actions-trigger {
        width: 32px !important;
        height: 32px !important;
    }

    .actions-trigger svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Smaller action menu */
    .actions-menu {
        min-width: 160px !important;
    }

    .actions-menu .action-item {
        padding: 12px 14px !important;
        font-size: 13px !important;
    }

    .actions-menu .action-item svg {
        width: 16px !important;
        height: 16px !important;
    }
}
