.oaklores-drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  pointer-events: none;
}

.oaklores-drawer.open {
  display: flex;
  pointer-events: auto;
}

.oaklores-drawer-overlay {
  display: none; /* Overlay removed */
}

.oaklores-drawer-panel {
  margin-left: auto;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease-out;
  position: relative;
  z-index: 2;
  /* optional subtle shadow on panel only */
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}
/*
.oaklores-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
	background-color:#ddd;
}
*/
.oaklores-close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
	color:red;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/*
.oaklores-chat-box {
  padding: 1rem;
  max-height: 800px;
  overflow-y: auto;
}
*/
.my-msg {
  text-align: left;
  background: #e0ffe0;
  margin: 10px 10px 10px 20px;
  padding: 10px;
  border-radius: 20px 20px 0px 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
}
.their-msg {
  text-align: left;
  background: #f0f0f0;
  margin: 10px 20px 10px 10px;
  padding: 10px;
  border-radius: 20px 20px 20px 0px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
}
/*
.oaklores-msg-form {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}
*/
/*
.oaklores-msg-form {
 
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
	height: 60px;
  background: #fff;
  z-index: 10;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}
*/

.oaklores-msg-form .oaklores-msg-input {
  width: 100%;
  padding: 10px 14px;
  background-color: #e6f7e9;
  border: none;
  border-radius: 16px 16px 0 16px;
  font-size: 16px;
  line-height: 1.4;
  /*box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);*/
  outline: none;
  min-height: 66px; /* roughly 3 lines */
  resize: none; /* disables manual resize */
  overflow-y: auto;
}

.oaklores-msg-form button {
  padding: 8px 12px;
}
.oaklores-thread-card{
	background-color:white;
	padding:10px;
	margin: 5px 0px 5px 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
	border-radius:5px;
	cursor:pointer;
}
/*Exp*/

.oaklores-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
	background-color:#ddd;
}
#oaklores-conversations-container{
	display:flex;
	flex-direction:column;
	overflow-y:auto;
}
.oaklores-chat-box {
	min-height:300px;
	height:auto;
  padding: 1rem;
  /*max-height: 800px;*/
  overflow-y: auto;
	margin-bottom:5px;
	background-color:#fafafa;
}
.oaklores-msg-form {
	background-color:white;
	height:25%;
	max-height:25%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
  padding: 4px;
  z-index: 10;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}