﻿#mobile-indicator
{
	display: none;
}

@media (max-width: 500px)
{
	#mobile-indicator
	{
		display: block;
	}
}

body
{
	font-family: Helvetica;
	font-size: smaller;
	padding: 0;
	margin: 0;
}

table
{
	border-collapse: collapse;
}

.nav-bar
{
	background-color: #007fff;
	width: 100%;
	height: 44px;
	border: 0;
	text-align: center;
}

.nav-title
{
	color: white;
	font-size: medium;
	line-height: 44px;
	position: absolute;
	left: 20%;
	right: 20%;
	margin: auto;
}

.footer
{
	position: fixed;
	bottom: 0;
}

.action-button
{
	font-size: 18px;
	font-weight: bold;
	line-height: 34px;
	padding: 5px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	color: dodgerblue;
}

.master-header
{
	position: absolute;
	width: 30%;
	border-right: 1px solid white;
	z-index: 1;
}

.master
{
	position: absolute;
	top: 44px;
	bottom: 0;
	width: 30%;
	overflow-y: auto;
	border-right: 1px solid #007fff;
}

.master table
{
	width: 100%;
}

.detail 
{
	position: absolute;
	top: 44px;
	bottom: 0;
	width: 70%;
	right: 0;
	overflow-y: auto;
}

.detail-header
{
	position: absolute;
	right: 0;
	width: 70%;
}

.nav-back
{
	display: none;
}

@media (max-width: 500px)
{
	.master, .master-header
	{
		width: 100%;
	}
	.detail, .detail-header
	{
		display: none;
		width: 100%;
	}

	.nav-back
	{
		display: block;
	}
}

.right-nav-button
{
	color: white;
	float: right;
}

.left-nav-button
{
	color: white;
	float: left;
}

.selected-row
{
	background-color: gainsboro !important;
}
