body {
  background: #f8f9fa;
}

.map-container {
  height: 78vh;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.camera-list {
  max-height: 78vh;
  overflow-y: auto;
}

.camera-item {
  cursor: pointer;
  transition: all 0.2s;
}

.camera-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

iframe, video {
  width: 100%;
  max-height: 70vh;
  border: none;
}