﻿
/* Custom CSS for phone transcript style */
.conversation {
	background-color: #f3f3f3;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.user1 {
	text-align: left;
	color: #333;
}

.user2 {
	text-align: right;
	color: #000;
	background-color: #007bff;
}

.Positive {
	background-color: #d4edda;
}

.Very.Positive {
	border: solid 1px green;
}

.Negative {
	background-color: #f8d7da;
	color: black;
}

.Very.Negative {
	border: solid 3px red;
}


.summarized-content {
	max-height: 400px; /* Show only summary */
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	cursor: pointer;
	position: relative;
}

	.summarized-content.expanded {
		max-height: unset; /* Adjust as needed */
	}

.summary-indicator {
	position: absolute;
	bottom: 0;
	right: 0;
	background: linear-gradient(to top, white, transparent);
	width: 100%;
	text-align: right;
	padding: 10px;
	box-sizing: border-box;
	font-weight: bold;
}

.summary-container {
	margin: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	cursor: pointer;
	position: relative;
	padding: 20px;
}

	.summary-container .content {
		padding: 20px;
		max-height: 100px; /* Show only summary */
		overflow: hidden;
		transition: max-height 0.3s ease-out;
	}

.audio-container {
	width: 100%;
	margin: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
	overflow: hidden;
}

	.audio-container video {
		width: 100%;
		height: 50px; /* Adjust height to fit audio controls */
		border-radius: 8px;
	}


.breadcrumb.recent > li + li:before 
{
	content: "/\00a0";
	padding: 0 0px 0px 5px;
}


/* New Styles */
#chatarea .chatuser {
	font-size: 18px;
	margin: 0 0px;
}
#chatarea .chathistory {
	bottom: 122px;
	top: 40px;
	height: auto;
	z-index: 999999999;
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 600px;
	display: flex;
	flex-direction: column-reverse;
}
#chatarea .chatinput textarea {
	border: 1px solid #d2d3d6;
	text-decoration: none;
	background-color: #fff;
	width: 100%;
	height: 62px;
	padding: 10px;
	resize: none;
}
.btn-primary-alt {
	color: #333;
	background-color: rgba(255,255,255,0);
	border-color: #4f8edc;
	border-width: 1px;
	border-style: solid;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn-primary-alt:hover, .btn-primary-alt:focus {
	box-shadow: none !important;
	color: #000;
	border-color: #2973cf;
}
.fa-refresh:before {
	content: "\f021";
}

/*body.authentication-bg {
	background-color: var(--ct-auth-bg-alt);
	background-size: cover;
	background-position: center;
}
*/

.navbar-custom {
	background-color: #1D3557;
}