
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
}
.video-box {
  flex: 2;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}
.video-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}
.chat-box {
  /*background: #1e1e1e;*/
  color: #fff;
  flex: 1;
  /*background: white;*/
  border-radius: 10px;
  padding: 10px;
  max-height: 35rem;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.chat-box h3 {
  margin-top: 0;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-top: 14px;
}
.chat-initial {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #00dc93;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
  color:#000;
}
.chat-content {
  background: #2a2a2a;
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  max-width: 80%;
}
.chat-time {
  color: #aaa;
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}


/* Scrollbar oscuro para WebKit (Chrome, Edge, Safari) */
.chat-box::-webkit-scrollbar {
  width: 8px;
}
.chat-box::-webkit-scrollbar-track {
  /*background: #1e1e1e;*/
}
.chat-box::-webkit-scrollbar-thumb {
  /*background-color: #555;*/
  border-radius: 10px;
}

/* Scrollbar para Firefox */
.chat-box {
  scrollbar-width: thin;
  scrollbar-color: #555 #1e1e1e;
}

@media screen and (max-width: 500px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
        display: grid;
    }
}