﻿
/* 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;
}
*/
.tab-content .CodeMirror {
	margin-bottom: 16px;
}
body[data-leftbar-size=condensed] .left-side-menu #sidebar-menu > ul > li:hover > .collapse > ul a, body[data-leftbar-size=condensed] .left-side-menu #sidebar-menu > ul > li:hover > .collapsing > ul a {
	font-size: .95rem;
}
body[data-leftbar-size=condensed] .left-side-menu #sidebar-menu > ul > li:hover > a {
	font-size: .95rem;
}



/* from Ontology.Portal */

a.active {
	font-weight: bold
}

.list-group-item {
	padding: 2px;
	font-family: monospace;
	font-size: 12px;
}
/* Style for the file list header */
.file-list-header .input-group-addon {
	background-color: #fff;
	border-right: none;
}

.file-list-header .form-control {
	border-left: none;
}

/* Style for the Add File button */
.file-list-header .btn-success {
	background-color: #28a745;
	border-color: #28a745;
}

	.file-list-header .btn-success:hover {
		background-color: #218838;
		border-color: #1e7e34;
	}

/* Style for file list items */
#divProject li a:hover {
	text-decoration: underline;
	color: #0056b3;
}

#divProject .label-info {
	background-color: #17a2b8;
}

.file-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

	.file-list li {
		padding: 5px 0;
		border-bottom: 1px solid #ddd;
	}

		.file-list li a {
			text-decoration: none;
			color: #0062cc;
			cursor: pointer;
		}

			.file-list li a:hover {
				text-decoration: underline;
				color: #0056b3; /* Darker blue for hover effect */
			}

	.file-list .label-info {
		background-color: #17a2b8; /* Label-specific styling */
	}

/* Responsive adjustments */
@media (max-width: 768px) {
	.file-list-header .col-md-8, .file-list-header .col-md-4 {
		width: 100%;
	}

	.file-list-header .col-md-4 {
		margin-top: 10px;
	}
}

.bi-spin {
	display: inline-block;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}