/* Inline <style> extracted from index.php by the god-file refactor. */
.skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #dc143c;
            color: white;
            padding: 8px 16px;
            z-index: 10000;
            transition: top 0.2s;
            text-decoration: none;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 900px;
            margin: auto;
            padding: 40px 20px;
            background: #f4f5f7;
            min-height: 100vh;
        }

        h1 {
            text-align: center;
            color: #dc143c;
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        h1::before,
        h1::after {
            content: '🇨🇭';
            font-size: 0.8em;
        }

        .tagline {
            text-align: center;
            color: #555;
            font-size: 1.1em;
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* Company filter and stats */
        .filter-section {
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .filter-section h3 {
            margin-bottom: 15px;
            color: #333;
        }

        .filter-controls {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-controls select {
            padding: 10px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1em;
            min-width: 200px;
            cursor: pointer;
        }

        .filter-controls select:focus {
            outline: none;
            border-color: #dc143c;
        }

        .filter-controls .clear-filter {
            padding: 10px 15px;
            background: #666;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.9em;
        }

        .company-stats {
            background: linear-gradient(135deg, #dc143c 0%, #a00000 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 15px;
            text-align: center;
        }

        .company-stats h3 {
            grid-column: 1 / -1;
            margin-bottom: 5px;
            font-size: 1.3em;
        }

        .rating-decay-hint {
            display: inline-block;
            margin-left: 4px;
            font-size: 0.75em;
            opacity: 0.75;
            cursor: help;
            vertical-align: middle;
        }

        .reviewer-avatar {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            font-size: 0.75em;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
            vertical-align: middle;
            margin-right: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .review-author-line {
            display: flex;
            align-items: center;
            gap: 0;
            margin: 4px 0;
        }

        /* Photo gallery on review cards */
        .review-photos-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 10px 0 6px;
        }
        .review-photo-thumb {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            border: 2px solid #e0e0e0;
            transition: transform 0.2s, border-color 0.2s;
        }
        .review-photo-thumb:hover {
            transform: scale(1.05);
            border-color: #dc143c;
        }
        /* Lightbox */
        .photo-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.88);
            z-index: 9000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .photo-lightbox.open { display: flex; }
        .photo-lightbox img {
            max-width: 92vw;
            max-height: 88vh;
            border-radius: 8px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.6);
            cursor: default;
        }
        .photo-lightbox-close {
            position: absolute;
            top: 16px;
            right: 20px;
            color: white;
            font-size: 2em;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
        }
        .photo-lightbox-close:hover { opacity: 1; }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 15px 10px;
            border-radius: 8px;
            min-width: 0;
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .stat-item .value {
            font-size: 1.8em;
            font-weight: bold;
        }

        .stat-item .label {
            font-size: 0.78em;
            opacity: 0.9;
            margin-top: 4px;
        }

        h2 {
            color: #333;
            margin: 30px 0 20px 0;
            font-size: 1.8em;
        }

        .card {
            background: #ffffff;
            backdrop-filter: blur(10px);
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #dc143c;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* Guest review gate */
        .sv-gated {
            filter: blur(5px);
            pointer-events: none;
            user-select: none;
            opacity: 0.75;
            transform: none !important;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        }
        .sv-gate-cta {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(220,20,60,0.13), 0 2px 8px rgba(0,0,0,0.07);
            border: 2px solid #f8d7da;
            padding: 32px 24px 28px;
            text-align: center;
            margin: 8px 0 16px;
            position: relative;
            z-index: 2;
        }
        .sv-gate-cta h3 {
            margin: 0 0 8px;
            color: #dc143c;
            font-size: 1.25em;
        }
        .sv-gate-cta p {
            color: #555;
            font-size: 0.92em;
            margin: 0 0 20px;
            line-height: 1.5;
        }
        .sv-gate-cta .sv-gate-btn {
            display: inline-block;
            background: #dc143c;
            color: #fff;
            padding: 12px 28px;
            border-radius: 24px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1em;
            margin-bottom: 10px;
            transition: background 0.2s;
        }
        .sv-gate-cta .sv-gate-btn:hover { background: #b01030; }
        .sv-gate-cta .sv-gate-login {
            display: block;
            margin-top: 10px;
            font-size: 0.85em;
            color: #888;
        }
        .sv-gate-cta .sv-gate-login a { color: #dc143c; text-decoration: none; font-weight: 600; }

        .card strong {
            color: #dc143c;
            font-size: 1.2em;
        }

        .card .rating {
            display: inline-block;
            background: #dc143c;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9em;
            margin-left: 10px;
        }

        .card p {
            margin: 15px 0;
            line-height: 1.6;
            color: #444;
        }

        .card small {
            color: #888;
            font-size: 0.85em;
        }

        form {
            background: #ffffff;
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        form h3 {
            color: #dc143c;
            margin-bottom: 20px;
            font-size: 1.5em;
        }

        input,
        textarea,
        select {
            width: 100%;
            margin: 10px 0;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1em;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #dc143c;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .admin-field {
            background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
            border: 2px solid #ffc107;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .admin-field label {
            display: block;
            color: #856404;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9em;
        }

        .admin-field input {
            margin: 0;
            border-color: #ffc107;
        }

        .admin-field input:focus {
            border-color: #ff9800;
        }

        /* Autocomplete styles */
        .autocomplete-wrapper {
            position: relative;
            width: 100%;
        }

        .suggestions-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #dc143c;
            border-top: none;
            border-radius: 0 0 8px 8px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .suggestion-item {
            padding: 12px 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }

        .suggestion-item:hover {
            background: #fff5f5;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item .suggestion-main {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .suggestion-item .company-name {
            font-weight: 600;
            color: #333;
        }

        .suggestion-item .company-location {
            font-size: 0.8em;
            color: #888;
        }

        .source-badge {
            font-size: 0.75em;
            padding: 3px 8px;
            border-radius: 12px;
            white-space: nowrap;
        }

        .source-badge.zefix {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .source-badge.reviews {
            background: #f0f0f0;
            color: #666;
        }

        button {
            background: linear-gradient(135deg, #dc143c 0%, #a00000 100%);
            color: white;
            border: none;
            padding: 14px 30px;
            cursor: pointer;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: bold;
            width: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(220, 20, 60, 0.4);
        }

        button:active {
            transform: translateY(0);
        }

        hr {
            border: none;
            border-top: 2px solid rgba(220, 20, 60, 0.2);
            margin: 40px 0;
        }

        .star-rating {
            color: #ffd700;
            font-size: 1.1em;
        }

        /* Interactive star input */
        .star-input {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 8px 0 14px;
        }
        .star-input input[type="radio"] { display: none; }
        .star-input label {
            font-size: 2.2em;
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s, transform 0.1s;
            line-height: 1;
            user-select: none;
        }
        .star-input label:hover,
        .star-input label:hover ~ label,
        .star-input input[type="radio"]:checked ~ label {
            color: #ffd700;
        }
        .star-input label:hover { transform: scale(1.15); }
        .star-input-hint {
            font-size: 0.82em;
            color: #888;
            margin-top: -8px;
            margin-bottom: 8px;
            min-height: 1.2em;
            transition: opacity 0.2s;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .user-info {
            background: #ffffff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.88em;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 10px;
        }

        .user-info .nav-divider {
            width: 1px;
            height: 16px;
            background: #ddd;
            flex-shrink: 0;
        }

        .user-info a {
            color: #dc143c;
            text-decoration: none;
            font-weight: 500;
            white-space: nowrap;
        }

        .user-info a:hover {
            text-decoration: underline;
        }

        .user-info .nav-username {
            color: #333;
            font-weight: 600;
            white-space: nowrap;
        }

        .welcome-message {
            background: #efe;
            border: 1px solid #cfc;
            color: #3c3;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }

        .login-prompt {
            background: #ffffff;
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 40px;
            border: 2px solid #dc143c;
        }

        .login-prompt h3 {
            color: #dc143c;
            margin-bottom: 10px;
        }

        .login-prompt p {
            color: #666;
            margin-bottom: 15px;
        }

        .login-prompt a {
            display: inline-block;
            background: linear-gradient(135deg, #dc143c 0%, #a00000 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            margin: 0 5px;
            transition: transform 0.2s;
        }

        .login-prompt a:hover {
            transform: translateY(-2px);
        }

        .lang-switcher {
            display: inline-flex;
            gap: 4px;
            vertical-align: middle;
        }

        .lang-switcher a {
            text-decoration: none;
            font-size: 1.2em;
            opacity: 0.5;
            transition: opacity 0.2s, transform 0.2s;
            padding: 2px;
        }

        .lang-switcher a.active,
        .lang-switcher a:hover {
            opacity: 1;
            transform: scale(1.15);
        }

        .review-author {
            color: #666;
            font-size: 0.9em;
            margin-left: 10px;
        }

        /* Review actions (edit/delete/flag) */
        .review-actions {
            display: flex;
            gap: 8px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .review-actions button,
        .review-actions .action-btn {
            background: none;
            border: 1px solid #ddd;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 0.82em;
            cursor: pointer;
            color: #666;
            transition: all 0.2s;
            width: auto;
            box-shadow: none;
            font-weight: normal;
        }

        .review-actions button:hover,
        .review-actions .action-btn:hover {
            background: #f5f5f5;
            border-color: #bbb;
            transform: none;
            box-shadow: none;
        }

        .review-actions .btn-delete:hover {
            color: #dc143c;
            border-color: #dc143c;
            background: #fff5f5;
        }

        .review-actions .btn-flag {
            color: #888;
        }

        .review-actions .btn-flag:hover {
            color: #e67e22;
            border-color: #e67e22;
            background: #fef9f3;
        }

        .review-actions .btn-flag.flagged {
            color: #e67e22;
            border-color: #e67e22;
            cursor: default;
        }

        /* Edit Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: white;
            border-radius: 12px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal h3 {
            color: #dc143c;
            margin-bottom: 20px;
        }

        .modal .modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .modal .modal-actions button {
            flex: 1;
            padding: 10px;
            font-size: 0.95em;
        }

        .modal .btn-cancel {
            background: #eee;
            color: #333;
        }

        .modal .btn-cancel:hover {
            background: #ddd;
        }

        .review-edited {
            color: #999;
            font-size: 0.8em;
            font-style: italic;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 6px 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95em;
            transition: all 0.2s;
        }

        .pagination a {
            background: #ffffff;
            color: #dc143c;
            border: 1px solid #e0e0e0;
        }

        .pagination a:hover {
            background: #dc143c;
            color: white;
            border-color: #dc143c;
        }

        .pagination .current {
            background: #dc143c;
            color: white;
            font-weight: bold;
        }

        .pagination .dots {
            color: #888;
            background: transparent;
        }

        .pagination .page-info {
            color: #888;
            font-size: 0.85em;
            margin: 0 10px;
        }

        .no-reviews-message {
            text-align: center;
            padding: 40px 20px;
            color: #888;
            font-size: 1.1em;
            background: #ffffff;
            border-radius: 12px;
        }

        /* Share buttons */
        .share-buttons {
            display: inline-flex;
            gap: 6px;
            margin-top: 10px;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none !important;
            padding: 0 !important;
            cursor: pointer;
            color: white !important;
            text-decoration: none;
            transition: transform 0.2s, opacity 0.2s;
            box-shadow: none !important;
            font-size: 0.75em;
        }

        .share-btn:hover {
            transform: scale(1.15) !important;
            background: inherit !important;
            opacity: 0.85;
        }

        .share-btn.share-x {
            background: #1a1a2e !important;
        }

        .share-btn.share-linkedin {
            background: #0077b5 !important;
        }

        .share-btn.share-whatsapp {
            background: #25d366 !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body {
                padding: 20px 12px;
            }

            .header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .user-info {
                text-align: center;
                width: 100%;
            }

            h1 {
                font-size: 1.8em;
                gap: 8px;
            }

            h1::before,
            h1::after {
                font-size: 0.7em;
            }

            .tagline {
                font-size: 0.95em;
            }

            h2 {
                font-size: 1.4em;
            }

            .filter-controls {
                flex-direction: column;
            }

            .filter-controls select {
                min-width: unset;
                width: 100%;
            }

            .company-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 15px;
            }

            .company-stats h3 {
                font-size: 1.1em;
            }

            .stat-item .value {
                font-size: 1.4em;
            }

            form {
                padding: 20px 15px;
            }

            .card {
                padding: 15px;
            }

            .card strong {
                font-size: 1.05em;
            }

            .card .rating {
                display: block;
                margin-left: 0;
                margin-top: 8px;
                text-align: center;
                width: fit-content;
            }

            .review-author {
                display: block;
                margin-left: 0;
                margin-top: 5px;
            }

            .login-prompt a {
                display: block;
                margin: 5px 0;
            }

            .admin-field {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px 8px;
            }

            h1 {
                font-size: 1.5em;
                gap: 6px;
            }

            h1::before,
            h1::after {
                display: none;
            }

            .user-info {
                padding: 8px 12px;
                font-size: 0.85em;
            }

            .user-info a {
                margin-left: 8px;
            }

            .company-stats {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                padding: 12px;
            }

            .stat-item {
                padding: 10px 8px;
            }

            .stat-item .value {
                font-size: 1.2em;
            }

            .stat-item .label {
                font-size: 0.75em;
            }

            button {
                padding: 12px 20px;
                font-size: 1em;
            }

            input,
            textarea,
            select {
                padding: 10px 12px;
                font-size: 0.95em;
            }

            .suggestions-dropdown {
                max-height: 150px;
            }

            .lang-switcher a {
                font-size: 1.4em;
                padding: 4px;
            }
        }

        /* Platform Stats Bar */
        .platform-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.08), rgba(220, 20, 60, 0.03));
            border-radius: 12px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .platform-stats .stat {
            text-align: center;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .platform-stats .stat .number {
            font-size: 1.5em;
            font-weight: 800;
            color: #dc143c;
        }

        .platform-stats .stat .label {
            font-size: 0.85em;
            color: #666;
            font-weight: 500;
        }

        /* How It Works Section */
        .how-it-works {
            background: #ffffff;
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 28px 24px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .how-it-works h3 {
            text-align: center;
            color: #333;
            font-size: 1.3em;
            margin-bottom: 20px;
        }

        .how-it-works-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .how-step {
            text-align: center;
            padding: 15px;
        }

        .how-step .step-icon {
            font-size: 2em;
            margin-bottom: 10px;
            display: block;
        }

        .how-step .step-title {
            font-weight: 700;
            color: #333;
            font-size: 1em;
            margin-bottom: 6px;
        }

        .how-step .step-desc {
            font-size: 0.85em;
            color: #666;
            line-height: 1.4;
        }

        /* Company Badges Strip */
        .company-badges {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 12px 0;
            margin-bottom: 15px;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }

        .company-badges::-webkit-scrollbar {
            height: 4px;
        }

        .company-badges::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 2px;
        }

        .company-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: #ffffff;
            border: 1px solid #eee;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 0.85em;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        }

        .company-badge:hover {
            border-color: #dc143c;
            background: #fff5f5;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(220, 20, 60, 0.12);
        }

        .company-badge .badge-rating {
            color: #ffa000;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .how-it-works-steps {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .platform-stats {
                gap: 15px;
            }

            .platform-stats .stat .number {
                font-size: 1.2em;
            }
        }

.toast {
    padding: 12px 18px;
    border-radius: 8px;
    color: white;
    font-size: 0.9em;
    font-weight: 500;
    min-width: 240px;
    max-width: 360px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    pointer-events: auto;
    animation: toastIn 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.toast.success { background: #2e7d32; }
.toast.error   { background: #c62828; }
.toast.info    { background: #1565c0; }
@keyframes toastIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes toastOut { to { opacity:0; transform:translateY(16px); } }

@media (max-width: 640px) {
    #mobileBottomNav { display: block !important; }
    body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
}
