/* Custom Chat Module Styling */

.cptp-chat-container {
	border: 1px solid #ccd0d4;
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
	margin-top: 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	display: flex;
	flex-direction: column;
}

.cptp-chat-header {
	background: #2271b1;
	color: #fff;
	padding: 12px 15px;
}

.cptp-chat-header h4 {
	margin: 0;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.cptp-chat-body {
	height: 300px;
	overflow-y: auto;
	padding: 15px;
	background: #f0f0f1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cptp-chat-empty {
	text-align: center;
	color: #8c8f94;
	font-size: 13px;
	font-style: italic;
	margin: auto;
}

/* Individual Message Layout */
.cptp-chat-message {
	display: flex;
	width: 100%;
}

.cptp-chat-left {
	justify-content: flex-start;
}

.cptp-chat-right {
	justify-content: flex-end;
}

.cptp-chat-bubble {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 12px;
	position: relative;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cptp-chat-left .cptp-chat-bubble {
	background: #fff;
	border: 1px solid #dcdcde;
	border-bottom-left-radius: 2px;
}

.cptp-chat-right .cptp-chat-bubble {
	background: #dcfce3;
	border: 1px solid #c6e5ce;
	border-bottom-right-radius: 2px;
}

.cptp-chat-author {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #50575e;
	margin-bottom: 4px;
}

.cptp-chat-text {
	font-size: 13px;
	color: #1d2327;
	line-height: 1.4;
}

.cptp-chat-text p {
	margin: 0;
}

.cptp-chat-time {
	display: block;
	font-size: 10px;
	color: #8c8f94;
	text-align: right;
	margin-top: 5px;
}

/* Input Footer */
.cptp-chat-footer {
	padding: 12px 15px;
	background: #fff;
	border-top: 1px solid #ccd0d4;
	display: flex;
	gap: 10px;
	align-items: center;
}

.cptp-chat-input-field {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	font-family: inherit;
	font-size: 13px;
	height: 38px;
	resize: none;
}

.cptp-chat-input-field:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: none;
}

.cptp-chat-send-btn {
	height: 38px;
	padding: 0 20px;
	font-weight: 600;
	white-space: nowrap;
}
