.map-bubble-bottom-actions { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.map-bubble-bottom-actions .map-bubble-action-button { min-width: 0; min-height: 44px; }
.place-tips-screen {
  box-sizing: border-box; position: fixed; inset: 0; margin: 0;
  width: 100%; height: 100dvh; max-width: none; max-height: none;
  padding: max(12px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  border: 0; background: var(--dk-bg-surface); color: var(--dk-text-primary);
}
.place-tips-screen[open] { display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.place-tips-header { display: flex; justify-content: space-between; align-items: center; flex: 0 0 auto; }
.place-tips-header h2 { margin: 0; font-size: 20px; }
.place-tips-close, .place-tips-retry, .place-tip-helpful {
  font: inherit; min-height: 44px; padding: 8px 12px; border: 1px solid var(--dk-border);
  border-radius: 10px; background: var(--dk-bg-surface); color: var(--dk-text-primary); cursor: pointer;
}
.place-tips-address, .place-tips-status { margin: 0; font-size: 14px; color: var(--dk-text-secondary); overflow-wrap: anywhere; }
.place-tips-list { min-height: 0; overflow-y: auto; overscroll-behavior: contain; flex: 1; }
.place-tip { padding: 16px 0; border-bottom: 1px solid var(--dk-border-soft); }
.place-tip-author { margin: 0 0 8px; color: var(--dk-text-secondary); font-size: 13px; }
.place-tip-note { margin: 0 0 12px; font-size: 16px; line-height: 1.6; white-space: pre-wrap; overflow-wrap: anywhere; }
.place-tip-helpful[aria-pressed='true'] { color: #1957d6; border-color: #1957d6; }
.place-tip-helpful:disabled { opacity: .6; cursor: default; }
.place-tips-retry[hidden] { display: none; }

.map-bubble-bottom-actions:not(:has(.map-bubble-delete-button)) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
