/*
 * Date picker
 */
 
input.calendar {
    background: url('images/calendar.png') 95% center no-repeat #fff;
}


/*
 * Buttons
 */
 
button.btn-blue {
	color: white;
	background-color: #3498DB;
}
button.btn-blue:hover {
	color: white;
	background-color: #2980B9;
}

button.btn-green {
	color: white;
	background-color: #72C948;
}
button.btn-green:hover {
	color: white;
	background-color: #5DAF35;
}

button.btn-white {
	color: black;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
}
button.btn-white:hover {
	color: black;
	background-color: white;
}


/*
 * Table
 */
 
table.table-dark-blue {
	border-top: none;
	border-bottom: none;
}

table.table-dark-blue tbody > tr > th {
	background-color: #2C3E50;
	color: white;
	text-align: center;
	border: 1px solid #283848;
}

table.table-dark-blue tbody > tr > td {
	text-align: center;
	vertical-align: middle;
	border-top: none;
	border-bottom: 1px solid #8F959E;
	border-left: 1px solid #8F959E;
	border-right: none;
}
table.table-dark-blue tbody > tr > td:first-child {
	border-left: none;
}


/*
 * Form
 */

.form-error-message {
	color: red;
	font-style: italic;
}


form.mini-form {
	display: inline;
}