#chatbox {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    paddingbottom: 20px;
    border: 1px solid black;
    height: 300px;
    overflow: scroll;
}

.lightOverlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    backgorund-color: rgba(255, 255, 255, 0.8);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-container {
    position: relative;
    top: 50%;
    left: 50%;
    padding-left: 20%;
    padding-right: 20%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    margin-top: 30px;
}

.overlay-content {
    background-color: rgb(255, 255, 255);
}