 /* ===== MODAL STYLY ===== */
        .news-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }

        .news-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 0;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow: hidden;
        }

        .news-modal-header {
            background: #007bff;
            color: white;
            padding: 20px;
            border-radius: 10px 10px 0 0;
            position: relative;
        }

        .news-modal-title {
            margin: 0;
            font-size: 1.3em;
            padding-right: 30px;
        }

        .news-modal-date {
            font-size: 0.9em;
            opacity: 0.9;
            margin-top: 5px;
        }

        .news-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            width: 25px;
            height: 25px;
        }

        .news-modal-close:hover {
            opacity: 0.7;
        }

        .news-modal-content {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
            line-height: 1.6;
        }

        .news-modal-content img {
            max-width: 100%;
            height: auto;
            margin: 10px 0;
        }

        .news-modal-content h1, .news-modal-content h2, .news-modal-content h3 {
            color: #333;
            margin-top: 15px;
        }

        .news-modal-content ul, .news-modal-content ol {
            padding-left: 20px;
        }

        .news-modal-content blockquote {
            background: #f8f9fa;
            border-left: 4px solid #2b2b2b;
            margin: 15px 0;
            padding: 10px 15px;
            font-style: italic;
        }

        .news-modal-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            text-align: right;
        }

        .news-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-left: 10px;
            font-size: 14px;
        }

        .news-btn-primary {
            background: #007bff;
            color: white;
        }

        .news-btn-secondary {
            background: #6c757d;
            color: white;
        }

        .news-btn:hover {
            opacity: 0.9;
        }

        /* Responzivní design */
        @media (max-width: 768px) {
            .news-modal {
                width: 95%;
                margin: 20px;
            }

            .news-modal-header {
                padding: 15px;
            }

            .news-modal-content {
                padding: 15px;
            }
        }

        /* Notifikace badge */
        .news-news-badge {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #dc3545;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            display: none;
        }

        /* CKEditor formátovaný obsah v modalu */
        #modalContent.ckeditor-content p {
            margin-bottom: 1em;
        }

        #modalContent.ckeditor-content h1,
        #modalContent.ckeditor-content h2,
        #modalContent.ckeditor-content h3,
        #modalContent.ckeditor-content h4,
        #modalContent.ckeditor-content h5,
        #modalContent.ckeditor-content h6 {
            color: #333;
            margin-top: 1em;
            margin-bottom: 0.5em;
            font-weight: bold;
        }

        #modalContent.ckeditor-content ul,
        #modalContent.ckeditor-content ol {
            padding-left: 20px;
            margin-bottom: 1em;
        }

        #modalContent.ckeditor-content li {
            margin-bottom: 0.5em;
        }

        #modalContent.ckeditor-content blockquote {
            background: #f8f9fa;
            border-left: 4px solid #007bff;
            margin: 15px 0;
            padding: 10px 15px;
            font-style: italic;
        }

        #modalContent.ckeditor-content img {
            max-width: 100%;
            height: auto;
            margin: 10px 0;
        }

        #modalContent.ckeditor-content strong,
        #modalContent.ckeditor-content b {
            font-weight: bold;
        }

        #modalContent.ckeditor-content em,
        #modalContent.ckeditor-content i {
            font-style: italic;
        }

        #modalContent.ckeditor-content pre {
            background: #f4f4f4;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 10px;
            overflow-x: auto;
            margin-bottom: 1em;
        }

        #modalContent.ckeditor-content code {
            background: #f4f4f4;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: monospace;
        }

        #modalContent.ckeditor-content a {
            color: #007bff;
            text-decoration: underline;
        }

        #modalContent.ckeditor-content a:hover {
            color: #0056b3;
        }

        #modalContent.ckeditor-content table {
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 1em;
        }

        #modalContent.ckeditor-content table td,
        #modalContent.ckeditor-content table th {
            border: 1px solid #ddd;
            padding: 8px;
        }

        #modalContent.ckeditor-content table th {
            background-color: #f2f2f2;
            font-weight: bold;
        }