.oc-ai-panel {
	flex-direction: column;
	position:fixed;
	right:16px;
	bottom:70px;
	width:360px;
	height:520px;
	background:#fff;
	border:1px solid #ddd;
	border-radius:12px;
	padding-bottom: 60px;
	box-shadow:0 12px 28px rgba(0,0,0,.12);
	overflow:hidden;
	z-index: 99999;
}
.oc-ai-title {
	padding:10px 40px 10px 10px;
	border-bottom:1px solid #eee;
	font-weight:600;
}
.oc-ai-log {
	flex: 1 0 0;
	display: flex;
    flex-direction: column;
	overflow:auto;
	padding:10px;
	font-size:14px;
	line-height:1.4;
}
.oc-ai-input-area {
	border-top:1px solid #eee;
	display:flex;
	gap:6px;
	padding:8px;
	margin-top: auto;
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.oc-ai-input-area button {
	background:rgb(191, 162, 86);
	padding:8px 12px;
	border:none;
	color:#fff;
	border-radius:8px;
}
.oc-ai-toggle {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	padding:10px 14px;
	background:rgb(191, 162, 86);
	color: #fff;
	cursor:pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px 0;
}
.oc-ai-toggle img {
	transition: fill 0.2s;
    display: block;
    object-fit: contain;
    width: 32px;
    height: 32px;
    fill: currentcolor;
	align-self: center;
}
.oc-ai-toggle:before, .oc-ai-toggle:after {
	content:'';
	position: absolute;
	inset:0;
	display: block;
	background: transparent;
	border: 1px solid rgb(191, 162, 86);
	border-radius: 50%;
	opacity:1;
	scale:1;
	animation: shadowAnimate 2s linear 1s infinite;
}
.oc-ai-toggle:after {
	animation-delay: 0.5s;
}

@keyframes shadowAnimate {
  0% {
	  opacity:1;
	  scale:1;
  }
  75% {
	  opacity:0.5;
	  scale:1.2;
  }
  100% {
	  opacity:0;
	  scale:1.2;
  }
}

.oc-ai-panel-close {
	position: absolute;
	top: 11px;
	right:10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	scale: 1;
	transition: scale 0.1s ease-in-out;
}
.oc-ai-panel-close:before, .oc-ai-panel-close:after {
	content: '';
	position: absolute;
	width:14px;
	height: 2px;
	background-color: #000;
	rotate: 45deg;
}
.oc-ai-panel-close:after {
	rotate: -45deg;
}
.oc-ai-panel-close:hover {
	scale:1.05;
}