        :root {
            /* Ocean Blue Theme (default) */
            --primary-color: #20B2AA;
            --secondary-color: #008B8B;
            --accent-color: #40E0D0;
            --sidebar-bg: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 50%, #f0f8ff 100%);
            --card-bg: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
            --text-color: #2F4F4F;
            --border-color: rgba(32, 178, 170, 0.2);
            --shadow-color: rgba(32, 178, 170, 0.15);
        }

        [data-theme="forest"] {
            --primary-color: #228B22;
            --secondary-color: #006400;
            --accent-color: #32CD32;
            --sidebar-bg: linear-gradient(135deg, #f0fff0 0%, #e6ffe6 50%, #f5fff5 100%);
            --card-bg: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,255,240,0.95) 100%);
            --text-color: #1F4F1F;
            --border-color: rgba(34, 139, 34, 0.2);
            --shadow-color: rgba(34, 139, 34, 0.15);
        }

        [data-theme="sunset"] {
            --primary-color: #FF8C00;
            --secondary-color: #FF6347;
            --accent-color: #FFD700;
            --sidebar-bg: linear-gradient(135deg, #fff8f0 0%, #ffe6cc 50%, #fff4e6 100%);
            --card-bg: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,248,240,0.95) 100%);
            --text-color: #8B4513;
            --border-color: rgba(255, 140, 0, 0.2);
            --shadow-color: rgba(255, 140, 0, 0.15);
        }

        [data-theme="midnight"] {
            --primary-color: #6A5ACD;
            --secondary-color: #483D8B;
            --accent-color: #9370DB;
            --sidebar-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            --card-bg: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            --text-color: #E6E6FA;
            --border-color: rgba(106, 90, 205, 0.3);
            --shadow-color: rgba(106, 90, 205, 0.2);
        }

        [data-theme="arctic"] {
            --primary-color: #4682B4;
            --secondary-color: #5F9EA0;
            --accent-color: #87CEEB;
            --sidebar-bg: linear-gradient(135deg, #ffffff 0%, #f8f8ff 50%, #f0f8ff 100%);
            --card-bg: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,248,255,0.98) 100%);
            --text-color: #2F4F4F;
            --border-color: rgba(70, 130, 180, 0.2);
            --shadow-color: rgba(70, 130, 180, 0.1);
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f0f0f0;
            color: var(--text-color);
        }
        #container {
            display: flex;
            height: 100vh;
        }
        #sidebar {
            width: 320px;
            background: var(--sidebar-bg);
            padding: 20px;
            box-shadow: 2px 0 15px var(--shadow-color);
            overflow-y: auto;
            z-index: 1000;
            border-right: 1px solid var(--border-color);
        }
        #map {
            flex: 1;
            position: relative;
        }
        h1 {
            color: #2F4F4F;
            font-size: 24px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo {
            height: 40px;
            width: auto;
            margin-right: 12px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .help-icon {
            font-size: 18px;
            color: #20B2AA;
            cursor: help;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            white-space: pre-line;
        }
        .help-icon:hover {
            background: rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.5);
            transform: scale(1.1);
        }
        .subtitle {
            color: #7f8c8d;
            font-size: 12px;
            margin-bottom: 15px;
        }

        .project-info {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 20px;
            font-size: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 3px 12px var(--shadow-color);
        }

        .project-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .project-links a {
            color: #20B2AA;
            text-decoration: none;
            padding: 4px 8px;
            background: white;
            border-radius: 4px;
            font-size: 11px;
            border: 1px solid #dee2e6;
            transition: all 0.2s ease;
        }

        .project-links a:hover {
            background: #20B2AA;
            color: white;
            transform: translateY(-1px);
        }

        .grant-info {
            text-align: center;
            color: #6c757d;
            font-style: italic;
        }

        .bbt-nav-section {
            margin-bottom: 20px;
        }

        .bbt-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 10px;
            align-items: stretch;
        }

        .bbt-button-row {
            display: flex;
            gap: 8px;
            align-items: center;
            width: 100%;
        }

        .bbt-nav-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--button-text-color);
            border: none;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 4px var(--shadow-color);
            text-transform: capitalize;
            flex: 1;
            text-align: left;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .bbt-nav-btn:hover {
            transform: translateX(3px);
            box-shadow: 0 4px 8px var(--shadow-color);
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
        }

        .bbt-nav-btn:active {
            transform: translateX(0px);
            box-shadow: 0 2px 4px var(--shadow-color);
        }

        .bbt-nav-btn.active {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 2px 6px var(--shadow-color);
        }

        .bbt-data-btn {
            background: linear-gradient(135deg, #FF8C00 0%, #FF6347 100%);
            color: white;
            border: none;
            padding: 8px 14px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(255, 140, 0, 0.3);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .bbt-data-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(255, 140, 0, 0.5);
            background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
        }

        .bbt-data-btn:active {
            transform: scale(0.98);
        }

        /* BBT Data Popup Modal */
        .bbt-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 10000;
            animation: fadeIn 0.3s ease;
        }

        .bbt-popup-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bbt-popup {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
        }

        .bbt-popup-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 20px;
            border-radius: 16px 16px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bbt-popup-title {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
        }

        .bbt-popup-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 24px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bbt-popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .bbt-popup-content {
            padding: 20px;
        }

        .bbt-data-field {
            margin-bottom: 16px;
        }

        .bbt-data-field label {
            display: block;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 6px;
            font-size: 13px;
        }

        .bbt-data-field input,
        .bbt-data-field textarea,
        .bbt-data-field select {
            width: 100%;
            padding: 10px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .bbt-data-field input:focus,
        .bbt-data-field textarea:focus,
        .bbt-data-field select:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .bbt-data-field textarea {
            min-height: 80px;
            resize: vertical;
            font-family: inherit;
        }

        .bbt-popup-actions {
            display: flex;
            gap: 12px;
            padding: 20px;
            border-top: 1px solid #e0e0e0;
            justify-content: flex-end;
        }

        .bbt-popup-btn {
            padding: 10px 24px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bbt-popup-btn-save {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .bbt-popup-btn-save:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow-color);
        }

        .bbt-popup-btn-cancel {
            background: #f5f5f5;
            color: #666;
        }

        .bbt-popup-btn-cancel:hover {
            background: #e0e0e0;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h3 {
            color: var(--text-color);
            font-size: 16px;
            margin-top: 20px;
            margin-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 5px;
        }

        #info {
            background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
            color: white;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            font-size: 13px;
            line-height: 1.6;
        }
        .controls {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #dee2e6;
        }
        .control-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-size: 13px;
            color: #495057;
            font-weight: 600;
        }
        input[type="range"] {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: var(--input-bg);
            outline: none;
            -webkit-appearance: none;
        }
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
        }
        input[type="range"]::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--primary-color);
            cursor: pointer;
        }
        .value-display {
            text-align: center;
            font-size: 14px;
            color: var(--primary-color);
            font-weight: bold;
            margin-top: 5px;
        }
        .legend-container {
            margin-top: 20px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .legend-container h4 {
            margin: 0 0 10px 0;
            font-size: 14px;
            color: #495057;
        }
        #legend-image {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
        }
        .status {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: white;
            padding: 8px 15px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 1000;
            font-size: 12px;
            color: #20B2AA;
            font-weight: 600;
        }
        .loading {
            color: #FF8C00;
        }
        .error {
            color: #CD5C5C;
        }

        /* Custom popup styling */
        .leaflet-popup-content-wrapper {
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .leaflet-popup-content {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .leaflet-popup-content h1, .leaflet-popup-content h2, .leaflet-popup-content h3 {
            color: #2F4F4F;
            margin-top: 0;
        }
        .leaflet-popup-content table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
        }
        .leaflet-popup-content th, .leaflet-popup-content td {
            padding: 4px 8px;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }
        .leaflet-popup-content th {
            background: #f8f9fa;
            font-weight: 600;
            color: #495057;
        }

        /* Hover tooltip styles */
        .vector-tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            pointer-events: none;
            z-index: 1000;
            max-width: 250px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
            transform: translateX(-50%);
        }

        .vector-tooltip .tooltip-title {
            font-weight: bold;
            margin-bottom: 4px;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 4px;
        }

        .vector-tooltip .tooltip-area {
            color: #90EE90;
            font-weight: 600;
        }

/* BBT Zoom Mode Toggle Styles */
.bbt-zoom-mode-section {
    padding: 10px;
    background: rgba(32, 178, 170, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(32, 178, 170, 0.15);
}

.zoom-mode-toggle {
    display: flex;
    gap: 6px;
}

.zoom-mode-btn {
    flex: 1;
    padding: 8px 10px;
    font-size: 11px;
    border: 2px solid rgba(32, 178, 170, 0.3);
    background: white;
    color: #555;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.zoom-mode-btn:hover {
    border-color: var(--primary-color);
    background: rgba(32, 178, 170, 0.05);
    transform: translateY(-1px);
}

.zoom-mode-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

.zoom-mode-btn.active:hover {
    transform: translateY(0);
}

/* Help Button Styles */
.help-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-left: 8px;
}

.help-button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.4);
}

.help-icon-btn {
    font-size: 18px;
    font-weight: bold;
}

/* Version Modal Styles */
.version-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.version-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.version-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.version-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.version-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.version-modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.version-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.version-modal-body {
    padding: 24px;
    color: var(--text-color);
}

.version-section {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.version-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.version-section h3 {
    color: var(--secondary-color);
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.version-table {
    width: 100%;
    border-collapse: collapse;
}

.version-table td {
    padding: 6px 0;
    font-size: 14px;
}

.version-table td:first-child {
    width: 140px;
    color: var(--text-color);
}

.version-table a {
    color: var(--primary-color);
    text-decoration: none;
}

.version-table a:hover {
    text-decoration: underline;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.status-healthy {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-degraded {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-error {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.status-development {
    background: #cfe2ff;
    color: #084298;
    border: 1px solid #9ec5fe;
}

.status-badge.status-production {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #a3cfbb;
}

/* Environment Badge */
.environment-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.environment-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.environment-badge .env-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.environment-badge .env-details {
    flex: 1;
}

.environment-badge .env-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.environment-badge .env-description {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.85;
}

/* Development Environment Badge */
.environment-badge.env-development {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #e7f1ff 0%, #cfe2ff 100%);
}

.environment-badge.env-development .env-title {
    color: #084298;
}

.environment-badge.env-development .env-description {
    color: #052c65;
}

/* Production Environment Badge */
.environment-badge.env-production {
    border-color: #198754;
    background: linear-gradient(135deg, #d1e7dd 0%, #a3cfbb 100%);
}

.environment-badge.env-production .env-title {
    color: #0f5132;
}

.environment-badge.env-production .env-description {
    color: #0a3622;
}

.version-features {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.version-features li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.version-features li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.version-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
}

.version-footer p {
    margin: 6px 0;
    font-size: 13px;
    color: #666;
}

.version-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.version-footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for version modal */
@media (max-width: 768px) {
    .version-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .version-modal-header {
        padding: 16px 20px;
    }

    .version-modal-header h2 {
        font-size: 18px;
    }

    .version-modal-body {
        padding: 20px;
    }

    .version-table td:first-child {
        width: 120px;
    }
}

/* Floating EUNIS Legend */
.floating-eunis-legend {
    position: fixed;
    bottom: 50px;
    left: 340px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1000;
    max-width: 350px;
    max-height: 600px;
    overflow-y: auto;
    display: none;
    transition: all 0.3s ease;
}

.floating-eunis-legend.visible {
    display: block;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-eunis-legend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #20B2AA;
    cursor: move;
    cursor: grab;
    user-select: none;
}

.floating-eunis-legend-header:active {
    cursor: grabbing;
}

.floating-eunis-legend-title {
    font-size: 14px;
    font-weight: 600;
    color: #2F4F4F;
    margin: 0;
}

.floating-eunis-legend-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.floating-eunis-legend-close:hover {
    background: rgba(205, 92, 92, 0.1);
    color: #CD5C5C;
}

.floating-eunis-legend-content {
    font-size: 12px;
}

.floating-eunis-legend-content img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 8px;
}

.eunis-legend-loading {
    text-align: center;
    color: #999;
    padding: 20px;
    font-size: 13px;
}

.eunis-legend-error {
    color: #CD5C5C;
    padding: 10px;
    background: rgba(205, 92, 92, 0.1);
    border-radius: 6px;
    font-size: 12px;
}
