#cameraInfoContainer {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 24px 28px 24px 28px;
    max-width: 480px;
    font-family: Arial, sans-serif;
}

.camera-info-box {
    color: #333;
    position: relative;
}

.camera-info-box h3 {
    margin: 0 0 10px 0;
    color: #1976d2;
    font-size: 18px;
}

.camera-info-box p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.camera-links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.camera-link {
    display: inline-block;
    padding: 8px 12px;
    background: #1976d2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.camera-link:hover {
    background: #1565c0;
    text-decoration: none;
    color: white;
}

.camera-info-close {
    position: absolute;
    top: 4px;
    right: 12px;
    background: #fff;
    border: 2px solid #e53935;
    color: #e53935;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-info-close:hover {
    color: #b71c1c;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.7);
}
.modal-content {
  display: block;
  margin: 60px auto;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}
.modal-close:hover {
  color: #e53935;
}

.inline-image-popup {
  position: relative;
  margin-top: 18px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  padding: 10px 10px 6px 10px;
  text-align: center;
  z-index: 1200;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.inline-image-close {
  position: absolute;
  top: 2px;
  right: 10px;
  color: #e53935;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid #e53935;
  transition: background 0.2s, color 0.2s;
}
.inline-image-close:hover {
  background: #e53935;
  color: #fff;
}

.inline-video-popup {
  position: relative;
  margin-top: 18px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  padding: 10px 10px 6px 10px;
  text-align: center;
  z-index: 1200;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.inline-video-close {
  position: absolute;
  top: 2px;
  right: 10px;
  color: #e53935;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid #e53935;
  transition: background 0.2s, color 0.2s;
}
.inline-video-close:hover {
  background: #e53935;
  color: #fff;
}