
        html, body {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
        }
        #map {
            width: 100%;
            height: 100%;
            position: absolute;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .modal.show {
            opacity: 1;
        }
        .modal-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            width: auto;
            max-height: 80vh;
            position: relative;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            display: flex;
            gap: 20px;
            margin: 0 20px;
            overflow: hidden;
        }
        .modal.show .modal-content {
            transform: translateY(0);
        }
        .modal-text {
            flex: 1;
            min-width: 280px;
            overflow-y: auto;
            max-height: calc(80vh - 40px);
            padding-right: 15px;
        }
        .modal-text::-webkit-scrollbar {
            width: 8px;
        }
        .modal-text::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        .modal-text::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        .modal-text::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .modal-image {
            flex: 0 0 auto;
            max-width: 300px;
            display: flex;
            align-items: flex-start;
        }
        .modal-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 4px;
        }
        .close {
            position: absolute;
            right: -30px;
            top: -30px;
            width: 30px;
            height: 30px;
            background-color: #fff;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            z-index: 1001;
            transition: background-color 0.3s;
        }
        .close:hover {
            background-color: #f0f0f0;
        }
        @media (max-width: 768px) {
            .modal-content {
                flex-direction: column;
                margin: 40px 20px;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }
            .modal-text {
                max-height: none;
            }
            .modal-image {
                max-width: 100%;
                margin-top: 20px;
            }
            .close {
                right: 10px;
                top: 10px;
                background-color: transparent;
                box-shadow: none;
            }
            .modal-text {
                min-width: 0;
            }
        }
        .loader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            z-index: 1000;
        }
        .post-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .post-title {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 10px;
            color: #005450;
        }
        .post-excerpt {
            font-size: 1em;
            color: #444;
        }
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
