/* === Livestream Modal Styling === */
.livestream-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.livestream-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.livestream-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #111;
}

.livestream-info p {
  margin: 2px 0;
  font-size: 0.95rem;
  color: #333;
}

.btn-watch {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', Times, serif;
    transition: all 0.3s ease; /* apply smooth transition for transform + color */
    background-color: #0f1eca;
    color: white;
}



.btn-watch:hover {
    background-color: #020e98;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(15, 30, 202, 0.3); /* soft blue shadow */}

/* scrollbar style for consistency */
.livestream-list::-webkit-scrollbar {
  width: 6px;
}
.livestream-list::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 3px;
}
