html,
/*
body {
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Calibri', 'Arial', sans-serif;

}
*/

td.participant:hover {
        cursor: pointer;
 }

.topnav {
	overflow: hidden;
	background-color: #333;
	margin-bottom: 20px;
}

.topnav a {
	float: left;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav a.active {
	/*  background-color: #04AA6D;*/
	background: #24a0ed;
	/*cyan blue*/
	color: white;
}

#transcript {
	text-align: left;

}
.annotationBlockPart {
	display: inline;
	margin: 2px;
}

button, #chooseTag, #chooseColor {
	margin: 2px;
}

.centered-wrapper {
	position: relative;
	text-align: center;
}


.centered-content {
	max-width: 800px;
	text-align: center;
	padding: 0px 30px;
}


.userAnnotation {
	background-color: yellow;
}


* {
	transition: all .2s ease;
}


#chooseTag {
	display: inline-block;
}

span.incident {
	font-weight: normal;
	color: gray;
}

span.vocal {
	font-weight: normal;
	color: gray;
}

span.pause {
	font-weight: normal;
	color: gray;
}


td {
	border-top: 1px dotted rgb(100, 100, 100);
}


td.line {
	padding-left: 10px;
	padding-right: 10px;
	min-width: 80px;
}

td.speaker {
	vertical-align: center;
	font-weight: bold;
	padding-left: 3px;
	padding-right: 3px;
	min-width: 100px;
}

td.contribution {
	vertical-align: center;
}

span.anno {
	font-size: 8pt;
}

td.anno {
	border-style: none;
	font-size: 8pt;
}

td.anno-type {
	border-style: none;
	font-weight: bold;
	color: blue;
	font-size: 8pt;
}

tr:nth-child(odd) {
	background: WhiteSmoke;
}


/* Dropdown Button */

.dropbtn {
	background-color: #3498DB;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}


/* Dropdown button on hover  focus */

.dropbtn:hover,
.dropbtn:focus {
	background-color: #2980B9;
}


/* The container div needed to position the dropdown content */

.dropdown {
	position: relative;
	display: inline-block;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}


/* Links inside the dropdown */

.dropdown-content div {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}


/* Change color of dropdown links on hover */

.dropdown-content div:hover {
	background-color: #ddd
}


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */

.show {
	display: block;
}




