
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2c5530;
            --primary-light: #4a7856;
            --secondary: #d4a574;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }

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

        /* Post Header */
        .post-header {
            background: var(--light);
            border-bottom: 1px solid var(--border);
            padding: 15px 0;
            margin-bottom: 30px;
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb span {
            color: var(--gray);
        }

        /* Main Post Content */
        .post-main {
            padding: 0 0 40px 0;
        }

        .post-article {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 30px;
        }

        /* Article Header */
        .article-header {
            padding: 40px 40px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .post-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .post-short-description {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Featured Image */
        .featured-image {
            margin: 0;
            position: relative;
        }
        .featured-image img{
            width: 100%;
        }

        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px 40px;
            font-size: 0.9rem;
            font-style: italic;
            text-align: center;
        }

        /* Post Content */
        .post-content {
            padding: 40px;
        }

        .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .main-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .main-content p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .intro {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary);
            border-left: 4px solid var(--secondary);
            padding-left: 20px;
            margin-bottom: 30px;
            text-align: left;
        }

        .main-content h2 {
            color: var(--primary);
            margin: 40px 0 20px;
            font-size: 1.8rem;
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 10px;
        }

        /* Article Footer */
        .article-footer {
            padding: 25px 40px;
            background: var(--light);
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .post-meta-footer {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .post-date,
        .post-category {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container-post {
                padding: 0 15px;
                max-width: 80%;
            }

            .post-title {
                font-size: 2rem;
            }

            .post-short-description {
                font-size: 1.1rem;
            }

            .article-header,
            .post-content {
                padding: 30px 25px;
            }

            .main-image {
                height: 350px;
            }

            .image-caption {
                padding: 12px 25px;
                font-size: 0.85rem;
            }

            .main-content {
                font-size: 1rem;
            }

            .main-content h2 {
                font-size: 1.5rem;
            }

            .post-meta-footer {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .container-post {
                max-width: 90%;
            }
            .post-title {
                font-size: 1.7rem;
            }

            .article-header,
            .post-content {
                padding: 25px 20px;
            }

            .main-image {
                height: 250px;
            }

            .image-caption {
                padding: 10px 20px;
                font-size: 0.8rem;
            }

            .intro {
                font-size: 1.1rem;
                padding-left: 15px;
            }

            .breadcrumb {
                font-size: 0.8rem;
            }
        }

        /* Animacione të buta */
        .post-article {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .main-content p {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

                /* MAP CONTAINER fixed below header */
        #map-container {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px); /* 80px = header height */
        }

        #map { width: 100%; height: 100%; }

        /* SIDEBAR – desktop */
        #sidebar {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 280px;
            height: calc(100% - 40px);
            background: white;
            border-radius: 12px;
            padding: 20px;
            overflow-y: auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 1500;
            transition: transform 0.3s ease;
        }

        #sidebar h3 {
            margin-bottom: 20px; padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            color: #2c3e50; font-size: 1.4rem;
        }

        #sidebar a {
            display: flex; align-items: center;
            padding: 12px 15px; margin-bottom: 8px;
            background: #f8f9fa; border-radius: 8px;
            cursor: pointer; text-decoration: none; color: #34495e;
            transition: all .2s ease;
            border-left: 4px solid transparent;
        }

        #sidebar a:hover {
            background: #e3f2fd; border-left: 4px solid #3498db;
            transform: translateX(5px);
        }

        #sidebar a:before {
            content: "📍"; margin-right: 10px;
        }

        /* Hamburger button (mobile) */
        #sidebar-toggle {
            display: none;
            position: absolute; top: 20px; left: 20px;
            z-index: 2000;
            background: #3498db; color: white;
            border: none; border-radius: 50%;
            width: 50px; height: 50px;
            font-size: 1.5rem; cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        /* Overlay for closing sidebar */
        #overlay {
            display: none;
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.3);
            z-index: 1400;
        }

        /* Mobile behaviour */
        @media (max-width: 768px) {

            #sidebar-toggle {
                display: block;
            }

            #sidebar {
                left: 0;
                width: 260px;
                transform: translateX(-260px); /* fully hidden */
                height: 100%;
            }

            #sidebar.active {
                transform: translateX(0);
            }

            #overlay.active {
                display: block;
            }

        }

        /* Marker style */
        .custom-marker {
            background: #3498db;
            border: 3px solid white;
            border-radius: 50%;
            width: 20px; height: 20px;
        }