.lc-internal-comment {
  position: relative;
  margin: 3em 0;
  /*padding-left: 4em;*/
}

.lc-live-block {
  position: relative;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  z-index: 1;
}

.lc-live-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  font-size: 0.95em;
  color: black;
  margin-bottom: 0.3em;
}

.lc-icon {
  font-size: 1.2em;
  margin-top: 0.15em;
  flex-shrink: 0;
}

.lc-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 15%;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
}

.lc-icon-wrapper img {
  width: 24px;
  height: 24px;
  border: none;
  display: block;
  filter: brightness(100%) contrast(100%);
}

.lc-icon-wrapper.lc-icon-small {
  width: 40px;
  height: 20px;
  border:none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-left: 2px;
}

.lc-icon-wrapper.lc-icon-small img {
  width: 14px;
  height: 14px;
}

.lc-type-wrapper,
.lc-live-content {
  margin-left: 4.5em;
}

.lc-type-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3em;
}

.lc-icon.lc-type-default {
  position: absolute;
  left: 0;
  top: 0.4em;
}

.lc-type-label {
  font-weight: bold;
  line-height: 1.1em;
  font-size: 1.3em;
}

.lc-timestamp {
  font-size: 1.1em;
  font-weight: bold;
  font-family: monospace;
  color: #666;
  line-height: 1.2em;
  letter-spacing: -1px;
}

.lc-live-content {
  font-size: 1em;
  line-height: 1.5em;
  padding-left: 40px;
  margin-left: 20px;
  border-left: 2px solid #444;
}

.lc-internal-comment h4 {
  margin-bottom: 1em;
  border-bottom: 2px solid #fd5403;
  padding-bottom: 0.5em;
  color: black;
  font-weight: bold;
}

.lc-entry {
  margin-bottom: 1.5em;
}

.lc-meta {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 0.3em;
}

.lc-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  gap: 0.3em;
  padding: 1em;
  color: #555;
  font-weight: 500;
}

.lc-dots span {
  animation: lc-bounce 1.4s infinite ease-in-out both;
  display: inline-block;
  font-size: 1.4em;
}

.lc-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.lc-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes lc-bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
