#chat-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

#chat-box table {
    border-top: 1px solid #000;
    width: 100%;
}

#chat-box table th,
#chat-box table td {
    padding: 0.8rem 0;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
}

#chat-box table th .active,
#chat-box table td .active,
#chat-box table td .ACTIVE {
    width: 10px;
    height: 10px;
    background: var(--orange-normal);
    display: block;
    margin: auto;
    border-radius: 50%;
}

#chat-box table th {
    border-bottom: 1px solid #e0e0e0;
}

#chat-box table td {
    border-bottom: 1px dashed #e0e0e0;
}
