<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Layer Panel Styles */
.layer-panel {
    position: absolute;
    left: -300px;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #152a47;
    color: #e2e8f0;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.layer-panel.expanded {
    left: 0;
}

.layer-panel-resizer:hover,
.layer-panel-resizer:active {
    background-color: rgba(107, 159, 255, 0.3);
}

body.resizing {
    cursor: ew-resize !important;
    user-select: none;
}

body.resizing * {
    cursor: ew-resize !important;
}

.layer-panel-resizer {
    position: absolute;
    width: 8px;
    height: 100%;
    right: -4px;
    top: 0;
    cursor: ew-resize;
    z-index: 1001;
}

.layer-panel-toggle {
    position: absolute;
    left: 300px;
    top: 50%;
    transform: translateY(-50%);
    background: #152a47;
    color: #e2e8f0;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.layer-panel-header {
    padding: 15px;
    border-bottom: 1px solid #203759;
    display: flex;
    justify-content: center;
}

.layer-panel-title {
    font-size: 1.2em;
    color: #ffffff;
    font-weight: 500;
}

.layer-panel-controls {
    padding: 10px;
    border-bottom: 1px solid #203759;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.layer-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 15px;
    scrollbar-width: none;
}

.layer-panel-content::-webkit-scrollbar {
    display: none;
}

/* Search styles */
.search-container {
    width: 100%;
    box-sizing: border-box;
}

.search-container-panel {
    width: 100%;
    margin-top: 5px;
}

.search-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1900;
    display: none;
}

.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e293b;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    overflow: hidden;
}

.search-modal.modal-show,
.search-modal-backdrop.modal-show {
    display: block;
}

.search-title {
    padding: 15px;
    border-bottom: 1px solid #2d3748;
}

.search-title h3 {
    margin: 0;
    color: #60a5fa;
    font-size: 18px;
}

.search-input-container {
    padding: 15px;
    border-bottom: 1px solid #2d3748;
}

.search-input {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    padding: 10px 15px;
    border: 1px solid #3b4d6b;
    border-radius: 6px;
    background: #2d3748;
    color: #e2e8f0;
    font-size: 16px;
}

.search-input-panel {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    padding: 3px;
    text-align: center;
    border: 1px solid #3b4d6b;
    border-radius: 6px;
    background: #2d3748;
    color: #e2e8f0;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: #60a5fa;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
}

.search-results .loading {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
}

.search-results .error {
    color: #ef4444;
    padding: 10px;
    text-align: center;
}

.results-count {
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 14px;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-item {
    background: #2d3748;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.address-item:hover {
    background: #374151;
}

.address-main {
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 5px;
}

.address-details {
    font-size: 14px;
    color: #94a3b8;
}

/* No layers message */
.no-layers-message {
    color: rgba(150, 180, 255, 0.5);
    font-style: italic;
    text-align: center;
    font-size: 14px;
    padding: 15px;
}

/* Feature Count */
.feature-count {
    font-size: 12px;
    color: #7e97bf;
    margin-left: 5px;
}

/* Tree View for Layers */
.layer-tree {
    margin-left: 6px;
    overflow-y: auto;
    max-height: 300px;
}

/* Properties Panel */
.properties-panel {
    background-color: #0f2548;
    border-top: 1px solid #234a79;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.properties-panel.active {
    max-height: 300px;
}

.properties-header {
    padding: 10px 15px;
    background-color: #0c1f3d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.properties-title {
    font-weight: 500;
    font-size: 14px;
    color: white;
}

.close-properties {
    background: transparent;
    border: none;
    color: #7e97bf;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 3px;
}

.close-properties:hover {
    background-color: #19375e;
    color: white;
}

.properties-content {
    padding: 10px 15px;
    max-height: 260px;
    overflow-y: auto;
}

.properties-section {
    margin-bottom: 10px;
}

.section-header {
    display: flex;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 14px;
}

.section-header i {
    margin-right: 8px;
    font-size: 12px;
    color: #7e97bf;
}

.section-content {
    padding: 5px 0 5px 16px;
}

.property-row {
    display: flex;
    margin-bottom: 5px;
    font-size: 13px;
}

.property-label {
    width: 120px;
    color: #7e97bf;
}

.property-value {
    flex: 1;
    word-break: break-word;
    color: #e2e8f0;
}

/* Action Buttons */
.layer-button-container {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    width: 100%;
    padding: 0;
    justify-content: center;
}

.add-layer-button, .geo-button, .show-attributes-btn, .add-folder, .delete-layer-button, .layer-manager-button, .config-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 6px;
    background: #1e58d7;
    justify-items: center;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.add-layer-button:hover, .geo-button:hover, .show-attributes-btn:hover, .add-folder:hover, .delete-layer-button:hover, .layer-manager-button:hover, .config-button:hover {
    background: #184bb8;
}

.add-layer-button.not-logged-in, .geo-button.not-logged-in, .show-attributes-btn.not-logged-in, .add-folder.not-logged-in, .delete-layer-button.not-logged-in, .layer-manager-button.not-logged-in, .config-button.not-logged-in {
    background: #4b5563;
}

/* Add Folder Modal */
.add-folder-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.add-folder-modal-content {
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #1e293b;
    border-bottom: 1px solid #2d3748;
}

.modal-header h3 {
    margin: 0;
    color: #60a5fa;
    font-size: 1.2em;
}

.close-modal-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #93c5fd;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 10px;
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 4px;
    color: #e2e8f0;
    font-size: 14px;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
}

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

.btn-secondary, .btn-primary {
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary {
    background: #4a5568;
    color: #e2e8f0;
    border: none;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #5a6374;
}

.btn-primary:hover {
    background: #2563eb;
}

/* SLD upload modal */
.sld-upload-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.form-buttons {
    padding: 20px;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.button-send {
    width: 50%;
    height: 40px;
}

.button-edit {
    width: 50%;
    height: 40px;
}

.sld-upload-content {
    background-color: #1a2334;
    color: #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    height: 420px;
}

.sld-upload-header {
    padding: 15px 20px;
    background-color: #1e293b;
    border-bottom: 1px solid #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.send-button-container {
    width: 100%;
    display: flex;
    height: auto;
}

.sld-upload-header h3 {
    margin: 0;
    font-size: 18px;
    color: #60a5fa;
}

.sld-upload-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sld-upload-close:hover {
    color: #e2e8f0;
}

.edit-button {
    width: 40%;
    position: relative;
    right: 0;
}

.input-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-file-input {
    padding: 8px 12px;
    background-color: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 4px;
    color: #e2e8f0;
    font-size: 14px;
    width: 60% !important;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #94a3b8;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-secondary {
    background-color: #4b5563;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary:hover {
    background-color: #6b7280;
}

.sld-button-send {
    width: 200px;
    height: 60px;
    margin: 10px auto 0 auto;
}

h3.text-center {
    text-align: center;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.pin-file {
    animation: floatAnimation 2s ease-in-out infinite;
}

.drag-and-drop {
    display: none;
}

.drag-and-drop-container {
    display: flex;
    border-radius: 24px;
    max-width: 380px;
    height: 260px;
    align-items: center;
    vertical-align: middle;
    background-color: #1e293b;
    margin: 10px auto 0 auto;
}

#dropzone {
    max-width: 300px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    border-radius: 4px;
}

#dropzone.highlight {
    background-color: #e0f7fa;
}

#fileInput {
    display: none;
}

#fileList {
    display: none;
    list-style: none;
    padding: 10px;
    background-color: #1e293b;
    overflow-x: auto;
    border-radius: 24px;
    width: 360px;
    margin: 10px auto;
}

.file-item {
    background: #007bff;
    color: white;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    display: inline-block;
}

.download-layer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: fit-content;
    background-color: #3b6ef6;
}

.download-layer-btn i {
    font-size: 14px;
}

/* ===== LAYER TREE STYLES ===== */

/* ===== LAYER TREE STYLES ===== */

/* GÅ‚Ã³wny kontener grupy warstw */
.layer-group {
    margin-bottom: 4px;
    border-radius: 6px;
    overflow: hidden;
}

/* ===== LAYER GROUP HEADERS (gÅ‚Ã³wne warstwy) ===== */

.layer-group-header {
    display: flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 8px 70px 8px 12px !important; /* ZwiÄ™kszony padding-right dla akcji */
    background: #142747;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    position: relative;
    min-height: 36px;
}

.layer-group-header:hover {
    background: #1c3463;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.layer-group-header.expanded {
    background-color: #2962b5;
}

.layer-group-header.selected {
    background: #2962b5;
}

/* Elementy w nagÅ‚Ã³wku grupy */
.layer-group-header .layer-group-toggle {
    flex-shrink: 0;
    color: #4172d8;
    transition: transform 0.3s;
    font-size: 14px;
    cursor: pointer;
}

.layer-group-header .layer-checkbox {
    flex-shrink: 0;
}

.layer-group-header .layer-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.layer-group-title {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

/* ===== LAYER ITEMS (elementy warstw) ===== */

.layer-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 6px 70px 6px 12px !important; /* ZwiÄ™kszony padding-right dla akcji */
    margin: 4px 0;
    border-radius: 4px;
    background: #142747;
    transition: background-color 0.2s;
    min-height: 32px;
    position: relative;
    max-width: 100%;
}

.layer-item:hover {
    background: #1c3463;
}

.layer-item.selected {
    background-color: #2962b5;
}

/* Elementy w layer item */
.layer-item .layer-checkbox {
    flex-shrink: 0;
}

.layer-item .layer-icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.layer-info {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.layer-title {
    font-size: 13px;
    color: #e2e8f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

/* ===== FOLDER HEADERS W WARSTWACH ===== */

.layer-folder {
    margin: 4px 0;
    border-radius: 4px;
    max-width: 100%;
}

.layer-folder .folder-header {
    display: flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 6px 70px 6px 12px !important; /* ZwiÄ™kszony padding-right dla akcji */
    border-radius: 4px;
    background: #142747;
    transition: background-color 0.2s;
    cursor: pointer;
    min-height: 32px;
    position: relative;
}

.layer-folder .folder-header:hover {
    background: #1c3463;
}

.layer-folder .folder-header.expanded {
    background-color: #2962b5;
}

.layer-folder .folder-header.selected {
    background-color: #2962b5;
}

/* Elementy w folder header */
.layer-folder .folder-header .layer-group-toggle {
    flex-shrink: 0;
    color: #4172d8;
    transition: transform 0.3s;
    font-size: 14px;
    cursor: pointer;
}

.layer-folder .folder-header .layer-checkbox {
    flex-shrink: 0;
}

.layer-folder .folder-header .layer-icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.layer-folder .folder-header .layer-title {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #e2e8f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

/* ===== LAYER ACTIONS - WYRÃ“WNANIE PRZYCISKÃ“W ===== */

/* Kontener akcji - staÅ‚a szerokoÅ›Ä‡ dla wszystkich typÃ³w */
.layer-actions {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    gap: 4px !important;
    background: inherit !important;
    padding: 2px !important;
    border-radius: 2px !important;
    width: 56px !important; /* StaÅ‚a szerokoÅ›Ä‡: 2 przyciski (24px kaÅ¼dy) + gap (4px) + padding (4px) */
    justify-content: flex-end !important;
    opacity: 0.5;
    transition: opacity 0.2s;
}

/* Pokazuj akcje przy hover */
.layer-item:hover .layer-actions,
.layer-group-header:hover .layer-actions,
.layer-folder .folder-header:hover .layer-actions {
    opacity: 1;
}

/* Wszystkie kontenery akcji majÄ… tÄ™ samÄ… szerokoÅ›Ä‡ */
.layer-item .layer-actions,
.layer-folder .folder-header .layer-actions,
.layer-group-header .layer-actions {
    width: 56px !important;
    justify-content: flex-end !important;
}

/* Przyciski akcji - staÅ‚a szerokoÅ›Ä‡ */
.layer-action-btn {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    padding: 3px !important;
}

/* Ukryte przyciski nadal zajmujÄ… miejsce */
.layer-action-btn[style*="visibility: hidden"] {
    visibility: hidden !important;
    /* Przycisk jest ukryty ale nadal zajmuje miejsce w layoutcie */
}

.layer-action-btn:hover {
    background: #1c3463 !important;
    color: #fff !important;
}

/* ===== LAYER CONTROLS (checkboxy) ===== */

.layer-checkbox, .folder-checkbox {
    min-width: 16px;
    min-height: 16px;
    cursor: pointer;
    appearance: none;
    border: 2px solid #4172d8;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    flex-shrink: 0;
}

.layer-checkbox:checked, .folder-checkbox:checked {
    background-color: #4172d8;
}

.layer-checkbox:checked::after, .folder-checkbox:checked::after {
    content: "âœ“";
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== SUBLAYER LIST ===== */

.layer-list {
    border-radius: 0 0 6px 6px;
    border-left: 1px solid #234a79;
    margin-left: 8px;
    padding: 2px 0 2px 5px;
}

.folder-content {
    border-left: 1px solid #234a79;
    margin-left: 8px;
    padding: 2px 0 2px 5px;
}

/* ===== EXPAND ICONS &amp; ANIMATIONS ===== */

.layer-group-toggle {
    color: #4172d8;
    transition: transform 0.3s;
    font-size: 14px;
}

/* RozwiniÄ™te stany */
.folder-header.expanded .layer-group-toggle,
.layer-group-header.expanded .layer-group-toggle {
    transform: rotate(90deg);
}

/* Wizualne wskaÅºniki dla aktywnych elementÃ³w */
.layer-group-header.expanded + .layer-list,
.folder-header.expanded + .folder-content {
    border-left: 1px solid #3b82f6;
}

/* ===== HIERARCHICZNE WCIÄ˜CIA ===== */

/* GÅ‚Ã³wne elementy - poziom 0 */
.layer-group-header {
    padding-left: 12px !important;
}

/* Elementy wewnÄ…trz gÅ‚Ã³wnych warstw - poziom 1 */
.layer-group .layer-list .layer-item {
    padding-left: 22px !important;
}

/* Foldery wewnÄ…trz gÅ‚Ã³wnych warstw - mniejsze wciÄ™cie dla strzaÅ‚ki */
.layer-group .layer-list .folder-header {
    padding-left: 10px !important;
}

/* Elementy wewnÄ…trz folderÃ³w warstw - poziom 2 */
.layer-folder .folder-content .layer-item {
    padding-left: 18px !important;
}

/* Foldery wewnÄ…trz folderÃ³w warstw - mniejsze wciÄ™cie dla strzaÅ‚ki */
.layer-folder .folder-content .folder-header {
    padding-left: 6px !important;
}

/* Elementy w folderach gÅ‚Ã³wnych (poza warstwami) - poziom 1 */
.layer-group[data-folder-id] .layer-list .layer-group-header {
    padding-left: 8px !important;
}

/* ZagnieÅ¼dÅ¼one elementy - poziom 3 */
.layer-folder .folder-content .layer-folder .folder-content .layer-item {
    padding-left: 12px !important;
}

/* ZagnieÅ¼dÅ¼one foldery - mniejsze wciÄ™cie dla strzaÅ‚ki */
.layer-folder .folder-content .layer-folder .folder-content .folder-header {
    padding-left: 21px !important;
}

/* Force override dla specjalnych przypadkÃ³w */
.layer-list .layer-list .layer-item {
    padding-left: 20px !important;
}

.folder-content .folder-content .layer-item {
    padding-left: 22px !important;
}

.folder-content .folder-content .folder-header {
    padding-left: 22px !important;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .layer-item,
    .layer-folder .folder-header,
    .layer-group-header {
        padding-right: 80px !important; /* WiÄ™cej miejsca na maÅ‚ych ekranach */
    }

    .layer-actions {
        right: 4px !important;
        width: 64px !important; /* TrochÄ™ wiÄ™cej miejsca na mobile */
    }

    .layer-action-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
    }
}

/* ===== STANY SPECJALNE ===== */

/* Gdy element jest przeciÄ…gany */
.layer-item.dragging,
.layer-folder .folder-header.dragging,
.layer-group-header.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
}

/* WskaÅºniki kolorÃ³w warstw */
.layer-color-indicator {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 8px;
    display: inline-block;
    flex-shrink: 0;
}</pre></body></html>