﻿.balances {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.periods {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 5px;
	font-size: 14px;
	overflow: hidden;
}

.periods_title {
	font-weight: bold;
	color: black;
}

.balance {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: auto;
}

.balance_name {
	font-weight: bold;
}

.period {
	margin: 0 10px 10px 0;
	padding: 0 10px 0 0;
	border-right: 1px dashed gray;
}

.period_number {
	padding: 5px 0 0 0;
	font-weight: bold;
	color: black;
}

.period_lite {
	padding: 0 0 2px 0;
}

.period_date {
	padding: 5px 0 0 0;
	font-weight: bold;
	color: black;
}

.period_entries {
	flex: 1;
	display: flex;
	flex-direction: row;
	margin-right: 15px;
}

.period_entries_titles {
	margin-right: 10px;
}

.period_entries_title {
	color: black;
}

.period_entries_values {
}

.period_entries_value {
	color: black;
}

.period_total {
	padding-top: 5px;
	display: flex;
	flex-direction: row;
	font-weight: bold;
}

.period_total_title {
	color: black;
	margin-right: 5px;
}

.period_total_minus {
	color: red;
}

.period_total_plus {
	color: black;
}

.period_summary {
}

.plus_sign {
	font-weight: bold;
	color: green;
}

.minus_sign {
	font-weight: bold;
	color: red;
}

.vacation_entries {
	flex: 1;
	display: grid;
	grid-template-columns: 160px 1fr;
}

.vacation_entries_title {
	display: flex;
}

.vacation_entries_value {
	text-align: right;
}

.vacation_bold {
	font-weight: bold;
}

.vacation_indent {
	margin-left: 10px;
}

.note_detail {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin: 0 10px 2px 35px;
}

.note_detail_refunded {
	font-weight: bold;
}

.note_detail_date {
}

.note_detail_motive {
	color: gray;
	font-style: italic;
}

.day_worked {
}

.day_not_worked {
	text-decoration: line-through; 
}

.period_detail_entries {
	flex: 1;
	display: flex;
}

.period_detail_entries_title {
	flex: 1;
	font-weight: bold;
}

.period_detail_entries_value {
	margin-left: 10px;
	text-align: right;
	font-style: italic;
}
