/*!
 * Laravel Support Ticket Management System
 * Version: 1.0
 * PHP: 8.2.12
 * Laravel: ^12.0
 * Author: Mohammed Ethar
 * Email: socialethar50@gmail.com
 * License: Regular / Extended (Codecanyon)
 */

/*Load Google Fonts start*/
@font-face {
  font-family: 'Roboto';
  src: url('assets/google-fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*Load Google Fonts end*/


* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}


/*Admin panel header part start*/
.header-admin-panel {
	background-color: #FFFFFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #F0F0F0;
}
.header-admin-panel ul {
	margin: 0;
    padding: 0;
    padding-left: 40px;
}

.header-admin-panel ul li {
	list-style: none;
	display: inline-block;
}
.header-admin-panel ul li a {
	text-decoration: none;
	color: black;
}
.header-adminpanel-left ul li:nth-child(1) img {
	width: 155px;
	height: 40px;
	object-fit: cover;
	padding-left: 0px;
}
.header-adminpanel-left ul li:nth-child(2) {
	display: none;
}
.header-adminpanel-left ul li:nth-child(2) img {
	width: 30px;
	height: 33px;
	object-fit: cover;
}
.header-adminpanel-left ul li:nth-child(3) {
	font-size: 23px;
	margin-left: 40px;
}

.header-adminpanel-right a {
	text-decoration: none;
	color: black;
}
.header-adminpanel-right img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	object-fit: cover;
}
/*Admin panel header part end*/







/*Admin panel body start*/
.admin-panel-body {
	display: flex;
	height: calc(100vh - 64px);
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none; /*Forefox*/
	-ms-overflow-style: none;  /* IE/Edge */
}
.admin-panel-body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.adminpanel-body-left {
	width: 240px;
	background-color: #2c3e50;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.adminpanel-body-left::-webkit-scrollbar {
  display: none;
}
.adminpanel-body-right {
	flex: 1;
	background-color: #F8F9FA;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px;
}




.adminpanel-body-left ul {
	margin: 0px;
	padding: 0px;
	padding: 0px 35px 0px 35px;
}
.adminpanel-body-leftspan {
	padding: 0px 35px 0px 35px;
	color: white;
	font-size: 12px;
}
.adminpanel-body-left ul li {
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding: 8px;
	border-radius: 10px;
	transition: 0.3s;
}
.adminpanel-body-left ul li:hover {
	background-color: #19C1DC;
}
.adminpanel-body-left ul li a {
	text-decoration: none;
	color: white;
	font-size: 15px;
}
.adminpanel-body-left ul li span {
	color: white;
	transition: transform 0.3s ease;
	transform: rotate(90deg);
}

/*For submenu icon rotate*/
.adminpanel-body-left ul li span.activeadpanel {
	color: white;
	transform: rotate(0deg);
	margin-top: -3px;
}


.admin-panel-submenu {
	padding-left: 10px !important;
	display: none;
}
/*Admin panel body end*/






/*Admin panel main part end here ******************************************/












/*User chat design start*/
.userchatsystem {
	margin: 0px auto 50px auto;
	max-width: 500px;
	height: calc(100vh - 400px);
	border: 1px solid gray;
	padding: 10px;
}
.chatmessage-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding: 0px 6px;
}
.chatmessage-btn textarea {
	flex: 1;
	height: 100px;
  border-radius: 7px;
  border: 1px solid #ced4da; /* Bootstrap এর স্টাইলের সাথে মিল */
  padding: 5px 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.chatmessage-btn textarea:focus {
  border-color: #86b7fe;
}
.chatmessage-btn a {
	text-decoration: none;
	color: white;
	background-color: blue;
	padding: 8px;
	font-family: Roboto;
	font-size: 15px;
	border-radius: 5px;
	height: 40px;
}


.userchat-title {
	width: 100%;
	margin: 32px auto 0px auto;
	max-width: 500px;
	border: 1px solid gray;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px;
}
.userchat-title span {
	font-size: 30px;
	font-family: Poppins;
}

.chat-messages {
	width: 100%;
	padding: 0px 2px 0px 2px;
	height: calc(100vh - 519px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none; /*Forefox*/
	-ms-overflow-style: none;  /* IE/Edge */
}
.chat-messages::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.chat-message {
	background-color: #FFFFFF;
	padding: 5px;
	border-radius: 5px;
	margin: 5px;
}
/*User chat design end*/