.maradj_ott{
	position: sticky;
	top: 0;
}

.kozep{
	margin: auto;
	text-align: center;
	display: block;
}

.chat_size{
	margin: auto;
	width: 85%;
	margin-bottom: 15px;
	margin-top: 125px;

	display: flex;
	height: 600px;
	gap: 10px;
}
.chat_people{
	width: 20%;
	min-width:200px;
	height: 600px;
	display: inline-block;
	border-top: 2px solid #26C9C3;
	border-left: 3px solid #26C9C3;
	border-bottom: 2px solid #26C9C3;
	border-bottom-left-radius: 25px;
	overflow-y: scroll;
	border-top-left-radius: 25px;
	box-shadow: 2px 4px 8px #ccccccc5;

}

.chat_people::-webkit-scrollbar {
  width: 7px;
}

.chat_people::-webkit-scrollbar-track {
  background: #7c919a;
  border-radius: 1px;
}

.chat_people::-webkit-scrollbar-thumb {
  background: #26c9c3;
  border-radius: 1px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .chat_people {
    scrollbar-color: #7c919a
                    #26c9c3;
  }
}


.chat_chat{
	flex:1;
	display: block;
	margin-right: 0px;
	width: 80%;
	min-width:0;
	height: 600px;
	display: inline-block;
	border-right: 4px solid #26C9C3;
	border-top: 2px solid #26C9C3;
	border-bottom: 2px solid #26C9C3;
	box-shadow: 2px 4px 8px #898888c5;
}


.list_people{
	list-style-type: none;
	padding: 0;
}

.people{
	text-align: center;
	text-decoration: none;
	border-right:1px solid rgb(182, 182, 182);
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	background-color: rgb(225, 230, 230);
	margin-top: 5px;
	margin-bottom: 3px;
	color: #000000;
}

.chat_texts{
	list-style-type: none;
}

.msg{
	padding-bottom: 20px;
	overflow-y: scroll;
	height: 520px;
}

.msg::-webkit-scrollbar {
  width: 7px;
}

.msg::-webkit-scrollbar-track {
  background: #7c919a;
  border-radius: 1px;
}

.msg::-webkit-scrollbar-thumb {
  background: #26c9c3;
  border-radius: 1px;
  
}

@supports not selector(::-webkit-scrollbar) {
  .msg {
    scrollbar-color: #7c919a
                    #26c9c3;
  }
}

.text_you{
    display: block;
    padding: 5px;
    overflow: hidden;
	margin-top: 5px;
}

.text_you p{
	color: #000000;
	float: right;
    display: inline-block;
    padding: 7px;
    background: #82c3dd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
	max-width: 250px;
}

.text_not_you{
	display: block;
    padding: 5px;
	margin-top: 5px;
}

.text_not_you p{
	color: #000000;
	background: #dedede;
    padding: 7px;
    display: inline-block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
	max-width: 250px;
}

.text_wrt{
    padding: 10px;
    width: 100%;
	
}

.text_wrt input[type=text]{
	font-size: 18px;
    width: 90%;
    border: 2px solid #dedede;
    padding: 3px;
}

.text_wrt input[type=submit]{
    font-weight: bold;
    border: none;
    width: calc(100% - 20px - 90%);
    cursor: pointer;
}

@media (max-width: 768px) {
    .chat_size {
        width: 100%;
        height: auto;
    }
    .chat_people, .chat_chat {
        width: 100%;
        height: auto;
        float: none;
    }
}

/* edzo lista kiegeszites */

.keres{
	margin: auto;
	border-bottom: 2px solid darkgray;
    box-shadow: 3px black;
	width: 350px;
	border-radius: 50px;
	text-align: center;
	display: block;
}

.gomb{
	float: right;
	margin-right: 50px;
}


.lap{
	margin: auto;
	text-align: center;
	margin-top: 10px;
	margin-left: 500px;
}

.lap_szam{
	margin-top: 10px;
	margin: auto;
	text-align: center;
}

@media screen and (max-width: 900px){

	.chat_size{
		flex-direction: column;
		height: auto;
	}

	.chat_people{
		width: 100%;
		height: 200px;
		min-width: unset;

		border-right: 3px solid #26C9C3;
		border-bottom-left-radius: 0;
		border-top-right-radius: 25px;
	}

	.chat_chat{
		width: 100%;
		height: 600px;
		border-left: 4px solid #26C9C3
	}

	.text_wrt input[type=text]{
		width: 80%;
	}

	.text_wrt input[type=submit]{
		width: 18%;
	}
}