@charset "UTF-8";
/* CSS Document */
.container {
    margin: 0px auto;
    width: 435px;
}
 . {
     margin: 0 auto;
     width: 950px;
 }
video {
    width: 100%;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    padding: 0;
}
body {
    margin: 0;            /* Reset default margin */
}


/* CSS for Level Meters */
#peak-meters {
    position: absolute;
    bottom: 40px;
    right: 5px;
    height: 80%;
    display: flex;
    justify-content: space-around;
    width: 20px; /* Adjust as needed */
    background-color: #969796;
    opacity: 80%;
    padding: 3px; /* Add padding for spacing */
	border-radius: 6px;
}

.peak-meter {
    width: 7.5px;
    height: 99.5%; /* Adjust based on the height of the video */
    background-color: #ddd;
    position: relative;
	border-radius: 4px;
}

.peak-bar {
    width: 100%;
    /* Gradient background */
    background: linear-gradient(to bottom, #cac303, #0d5603 50%);
    position: absolute;
    bottom: 0;
}

.peak-hold-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid red; /* Adjust color and thickness as needed */
    opacity: 0.75; /* Adjust opacity as needed */
}

.button {
  background-color: black; 
  border: none;
  color: white;
  padding: 0px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1px;
  margin: 0px 0px;
  cursor: pointer;
}

/* Styles for the video container */
.video-container {
    position: relative;
    width: 100%;
}

/* Styles for the image link wrappers */
.video-container .image-link-wrapper {
    position: absolute;
    z-index: 2; /* Ensure the images and links are above the video */
}

/* Styles for the first image */
.video-container .image-link-wrapper:first-child(1) {
    top: 5px; /* Adjust as needed */
    left: 5px; /* Adjust as needed */
	opacity: 0.6;
}

/* Styles for the second image */
.video-container .image-link-wrapper:nth-child(2) {
    top: 5px; /* Adjust as needed */
    left: 5px; /* Adjust as needed */
	opacity: 0.6;
}

	/* Styles for the second image */
.video-container .image-link-wrapper:nth-child(3) {
    top: 45px; /* Adjust as needed */
    left: 5px; /* Adjust as needed */
	opacity: 0.6;
}	
	/* Styles for the second image */
.video-container .image-link-wrapper:nth-child(4) {
    top: 85px; /* Adjust as needed */
    left: 5px; /* Adjust as needed */
	opacity: 0.6;
}	
	/* Styles for the second image */
.video-container .image-link-wrapper:nth-child(5) {
    top: 125px; /* Adjust as needed */
    left: 5px; /* Adjust as needed */
	opacity: 0.6;
}
	/* Styles for the second image */
.video-container .image-link-wrapper:nth-child(6) {
    top: 165px; /* Adjust as needed */
    left: 5px; /* Adjust as needed */
	opacity: 0.6;
}	
.p {
    font-size: clamp(16px, 3.0vw,25px);
}	
.p2 {
    font-size: clamp(10px, 1.5vw,17px);
}

.red-border-alert {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid red;
  box-sizing: border-box;
  z-index: 999;
  pointer-events: none;
}

.alert-text {
  position: absolute;
  bottom: 8px;
  left: 12px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  font-family: sans-serif;
  background: rgba(255, 0, 0, 0.7);
  padding: 10px;
  border-radius: 6px;
  pointer-events: none;
  display: inline-block;     /* 👈 Keeps size to content width */
  max-width: 90%;            /* Prevents overflow on long lines */
  box-sizing: border-box;
}

