/*
共通のcss
*/

.red {
	color: red;
}

.fixed-top,
.fixed-bottom {
	position: fixed;
	width: 100%;
	z-index: 1;
}
.fixed-top {
	top: 50px;
}
.fixed-bottom {
	bottom: 0;
}

/* リンク下線 */
a {
	text-decoration: underline;
}
a.btn {
	text-decoration: none;
}
.dropdown a {
	text-decoration: none;
}
.nav a {
	text-decoration: none;
}

/* チェックしたときに表示されるフッタメニュー */
#check_footer {
	display: none;
	width: 50%;
	left: 50%;
	margin-left: -25%;
	padding: 10px;
	background-color: #eee;
	border: 1px solid #ccc;
}
#check_footer #check_footer_menu {
	width: 80%;
	margin: 0 auto;
}
#check_footer #check_footer_menu > button {
	width: 100%;
	margin: 0 auto;
}


/* ログインユーザ一覧テーブル */
#loginuser_list_table tbody td label.check_label {
	display: inline-block;
	cursor: pointer;
	font-weight: normal;
	margin: 0;
	padding: 5px 0;
}
#loginuser_list_table tbody td label.check_label input[type="checkbox"] {
	display: inline-block;
	cursor: pointer;
	margin: auto;
}
#loginuser_list_table > tbody > tr.hide_user {
	display: none;
}
#loginuser_list_table > tbody > tr.stripe_user {
	background-color: #f9f9f9;
}

/* 車両一覧 */
#vehicles_list_table {
	font-size: 85%;
}

/* 車両台数 */
.count_num {
	font-size: 130%;
	font-weight: bold;
	margin: 0 5px;
}
