.live-stream-container {
  width: 100%;
  height: calc(100vh - 355px);
  /* background: #1e1e1e; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.live-stream-header {
  /* background: #282828; */
  color: white;
  padding: 0 15px;
  /* text-align: center; */
  font-size: 18px;
  font-weight: bold;
}
.live-stream-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.live-icon {
  /* width: 30px; */
  height: 15px;
  margin-bottom: 10px;
}

.timestamp {
  font-size: 12px;
  color: #aaa;
  align-self: flex-end;
}

.text {
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  margin-bottom: 6px; /* Space before the image */
}
.text {
  flex: 1;
}

.update {
  display: flex;
  flex-direction: column; /* Stack text and image vertically */
  align-items: flex-start;
  padding: 10px;
  margin-bottom: 12px;
  background: rgba(23, 23, 23, 1);
  border-radius: 8px;
  color: white;
  max-width: 100%;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.update-image {
  width: 100%;
  max-height: 200px;
  border-radius: 5px;
  object-fit: cover;
  margin-top: 6px; /* Ensure spacing below the text */
}
