/* public/css/channels.css */
/* FULL VIEWPORT REFACTOR - All px values converted to vw/vh where applicable */
@import url('./_main-screen.css');

.channel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  background-color: var(--color-background-main-screen);
}

.active-channel {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.channel-content {
  flex-grow: 1;
  padding: 1.5vh 1.5vw;
  overflow-y: auto;
  min-height: 0;
}

@keyframes electric-tower {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 1.2vw rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.nav-item.live-indicator {
  animation: electric-tower 2s infinite;
  border-radius: 50%;
}
