
        .report-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .report-modal[hidden] {
            display: none;
        }

        .report-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(6px);
        }

        .report-modal__dialog {
            position: relative;
            width: min(480px, 90%);
            background: rgba(15, 23, 42, 0.95);
            border-radius: 24px;
            padding: 1.75rem;
            color: #e2e8f0;
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.45);
            transform: translateY(15px);
            opacity: 0;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .report-modal.is-open .report-modal__dialog {
            opacity: 1;
            transform: translateY(0);
        }

        .report-modal__close {
            position: absolute;
            inset-inline-end: 1rem;
            inset-block-start: 1rem;
            border: none;
            background: transparent;
            color: inherit;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .report-modal__hint {
            margin-bottom: 1rem;
            color: rgba(226, 232, 240, 0.7);
        }

        body.theme-light .report-modal__dialog {
            background: rgba(255, 255, 255, 0.98);
            color: #0f172a;
        }

        body.theme-light .report-modal__hint {
            color: #475569;
        }
    
