﻿.activityLogMasterViewRow {
	display: flex;
	align-items: center;
	background: white;
	height: 70px;
	width: 80%;
	margin: 30px auto;
	border-bottom: 1px solid #eee;
	border-radius: 5px;
}

	.activityLogMasterViewRow .logEntryHolder {
		width: 80%;
		display: flex;
		align-items: center;
	}

		.activityLogMasterViewRow .logEntryHolder .logEntryTime {
			font-size: 10px;
			color: #969696;
			text-align: left;
			margin-right: 40px;
			margin-left: 20px;
			width: 150px;
		}

		.activityLogMasterViewRow .logEntryHolder .logEntryHeading {
			font-size: 16px;
			font-weight: bold;
			color: #04273C;
			margin-left: 20px;
			width: 350px;
		}

		.activityLogMasterViewRow .logEntryHolder .logEntryMessage {
			font-size: 12px;
			width: 350px;
		}

	.activityLogMasterViewRow .buttonDefault {
		margin: auto;
		width: 100px;
	}

.detailView {
	background: white;
	width: 90%;
	height: 100%;
	margin: auto;
}

	.detailView .detailsHeading {
		font-size: 28px;
		font-weight: bold;
		margin-bottom: 30px;
	}
	
	.detailView .detailsWrapper {
		box-shadow: inset 2px 2px 1px rgba(0,0,0,.05);
		min-height: 20px;
		padding: 19px;
		margin-bottom: 20px;
		background-color: #f5f5f5;
		border: 1px solid #e3e3e3;
		border-radius: 4px;
	}

	.detailView .detailsWrapper div {
		margin-bottom: 10px;
	}

		.detailView .detailsWrapper .detailsWrapperInner div {
			margin-left: 25px;
			margin-bottom: 0;
		}