/* Live updates box */
#live-updates .updates-scroll {
  max-height: 9.5rem;   /* roughly 5 rows; adjust as needed */
  overflow-y: auto;
}

#live-updates .updates {
  list-style: none;
  margin: 0;
  padding: 0;
}

#live-updates .updates li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9em;
  padding: 0.2rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1); /* tweak if your background is light */
}

#live-updates .updates li:last-child {
  border-bottom: 0;
}

#live-updates .date {
  flex: 0 0 auto;
  white-space: nowrap;
  opacity: 0.7;
  font-family: "Courier New", monospace;
}

#live-updates .text {
  flex: 1 1 auto;
}

#live-updates.box {
  border: none;
  box-shadow: none;
  padding-top: 0.5rem;   /* optional: tighten the top */
}

.video-fullwidth {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-fullwidth iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.share-box {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.share-box span {
  margin-right: 0.5rem;
  font-weight: 600;
}

.share-btn {
  padding:0rem .75rem; 
  border:1px solid #ccc; 
  border-radius:.5rem; 
  background:#f8f8f8; 
  cursor:pointer;
}
