/* WebView */
#webview-screen.screen {
  flex-direction: column;
  min-height: 0;
}
#webview-screen.screen.active {
  display: flex;
}
.webview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.btn-icon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}
.webview-title { font-size: 0.9rem; color: var(--text-muted); }
#site-frame {
  flex: 1;
  min-height: 0;
  width: 100%;
  border: none;
  background: white;
  min-height: 400px;
}
.app-mode #site-frame { border-radius: 0; min-height: 50vh; }