/* Remote Browser App CSS */
@media(max-width:768px){
  .remote-url-bar { flex-wrap: wrap; padding: 8px; }
  .remote-badge { display: none; }
  #remote-nav-btn { width: 100%; padding: 10px; }
  .remote-header { flex-direction: column; align-items: stretch; }
  .remote-status { text-align: center; }
}
.remote-browser-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  background: #0e100f;
  color: #f4f0e7;
}
.remote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #181b19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.remote-url-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 720px;
  background: #111312;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px 6px 4px 10px;
}
.remote-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c78b55;
  background: rgba(199, 139, 85, 0.15);
  padding: 3px 7px;
  border-radius: 4px;
  user-select: none;
}
#remote-url-input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #f4f0e7;
  font-size: 13px;
  outline: none;
}
#remote-nav-btn {
  background: #c78b55;
  color: #111312;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}
#remote-nav-btn:hover {
  background: #d5a578;
}
.remote-status {
  font-size: 11px;
  color: #8fb087;
  user-select: none;
}
.remote-viewport-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}
#remote-screen {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}
