		button {
			touch-action: manipulation;
			user-select: none;
		}

		select {
			-webkit-user-select: auto !important;
			user-select: auto !important;
		}

        /* SVG Map touch styling */
        .heat-map-svg {
            touch-action: none; 
            user-select: none;
            -webkit-user-drag: none;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

/* Subtle build identifier for deployment verification. */
.app-version-badge {
    position: fixed;
    top: calc(6px + env(safe-area-inset-top));
    right: 8px;
    z-index: 1000;
    max-width: calc(100vw - 16px);
    color: rgb(148 163 184);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.025em;
    opacity: 0.62;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.sync-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border: 1px solid rgb(51 65 85);
    border-radius: 12px;
    padding: 10px;
    color: rgb(203 213 225);
    font-size: 11px;
}

.sync-count strong {
    color: rgb(34 211 238);
    font-size: 20px;
}

.sync-message {
    min-height: 20px;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
}

.sync-message-neutral { color: rgb(148 163 184); background: rgb(15 23 42); }
.sync-message-success { color: rgb(110 231 183); background: rgb(6 78 59 / 0.28); }
.sync-message-error { color: rgb(253 164 175); background: rgb(136 19 55 / 0.28); }
.sync-empty { color: rgb(100 116 139); font-size: 12px; font-style: italic; }

.sync-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    border: 1px solid rgb(51 65 85);
    border-radius: 12px;
    padding: 10px;
    background: rgb(15 23 42);
    color: rgb(203 213 225);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.sync-item strong { color: rgb(103 232 249); text-transform: capitalize; }
.sync-item p { color: rgb(148 163 184); }
.sync-item button, .sync-item-actions button {
    border: 1px solid rgb(71 85 105);
    border-radius: 8px;
    padding: 7px 9px;
    background: rgb(30 41 59);
    color: white;
    font-weight: 700;
}
.sync-item-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sync-warning { border-color: rgb(180 83 9); }

.touch-pan-y {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}
