.show {
    display: block;
}

.hide {
    display: none;
}

.console {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 0px;
    background-color: transparent;
    resize: none;
}

textarea[disabled] {
    color: #000;
}

/* Chat containers */
.container {
    border: 2px solid #9c27b0;
    background-color: #9c27b0;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    align-self: left;
}

/* left chat container */
.left {
    margin-right: 60px;
}

/* right chat container */
.right {
    border-color: #fff;
    background-color: #fff;
    margin-left: 60px;
    align-self: right;
}

/* Clear floats */
.container::after {
    content: "";
    clear: both;
    display: table;
}

/* Style images */
.container img {
    float: left;
    max-width: 30px;
    width: 100%;
    margin-right: 20px;
    border-radius: 50%;
}

/* Style the right image */
.container img.right {
    float: right;
    margin-left: 20px;
    margin-right:0;
}

/* Style time text */
.time-right {
    float: left;
    color: gray;
    font-size: small;
}

/* Style time text */
.time-left {
    float: right;
    color: lightgray;
    font-size: small;
}

/* Style chat text */
.chat-right {
    float: right;
    color: #000;
}

/* Style chat text */
.chat-left {
    float: left;
    color: #fff;
}

.videoDiv {
    width: fit-content;
    height: fit-content;
    max-width: 80%;
    max-height: 80%;
}

.videoBorder {
    padding: 10px;
    filter: drop-shadow(2px 4px 6px black);
}

.videoOverlay {
    z-index: 1000;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1.5px);
    position: absolute;
    left: 0;
    top: 0;
    padding: 5%;
}

.clickable {
    cursor: pointer;
}

.linklike {
    cursor: pointer;
    text-decoration: underline;
}