@charset "ISO-8859-1";
body {
  margin: 0;
  padding: 25px;
  background: linear-gradient(
    135deg,
	#03D10C 0%,
	#228B22 100%
  );
  color: #222;
  font-family: 'Segoe UI', Arial, sans-serif;
}

h1 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 15px;
  color: white;
  text-shadow:
    -2px -2px 0 #228b22,
     2px -2px 0 #228b22,
    -2px  2px 0 #228b22,
     2px  2px 0 #228b22;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(512px, 1fr));
  gap: 30px;
  max-width: 1800px;
  margin: 0 auto;
}

.camera-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.camera-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.camera-header {
  padding: 4px 20px;
  background: #f1f3f5;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.camera-name {
  width: 90%
}

.live-badge {
  background: #28a745;
  color: white;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  width: 30px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;   /* 16:9 */
  background: #000;
  overflow: hidden;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
}
