﻿/* タイトル スタイル */
table .title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
table .middle-title {
    font-size: 14px;
}

/* テーブル スタイル */
.table-header {
    background: linear-gradient(#1265ab, #7ebadc);
    color: white;
    /* ReSharper disable once RequiresFallbackColor */
    text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
    font-weight: bold;
    font-size: 11px;
    height: 50px;
}
.table-footer {
    background: linear-gradient(#1265ab, #7ebadc);
    color: white;
    /* ReSharper disable once RequiresFallbackColor */
    text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
    font-weight: bold;
    font-size: 11px;
    height: 50px;
}
.grid-view-table {
    border: 2px solid #ccc;
    text-align: center;
    font-size: 11px;
}
.flu-table {
    background-color: #FFF2E7;
}
.covid-table {
	background-color: #E8EFD9;
}
/* テーブルセル スタイル */
.infection-type-cell {
	font-size: 12px;
	width: 70px;
	min-width: 70px;
}
.week-cell {
    width: 70px;
    min-width: 70px;
}
.age-cell {
    width: 50px;
    min-width: 20px;
}
.sum-total-cell {
    width: 60px;
    min-width: 20px;
}
.table-cell {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* リストテーブル スタイル */
.list-table-header {
    background: linear-gradient(#1265ab, #7ebadc);
    color: white;
    /* ReSharper disable once RequiresFallbackColor */
    text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
    font-weight: bold;
    text-align: center;
    height: 50px;
    border-bottom: 1px solid #ccc;
}
.list-table-item {
    border-bottom: 1px solid #ccc;
}
.list-table-footer {
    border-bottom: 1px solid #ccc;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    /* ReSharper disable once RequiresFallbackColor */
    background-color: rgba(248, 255, 255, 1);
}

 /* モーダル スタイル */ 
.modal {
    background-color:black;
    filter:alpha(opacity=75);
    opacity:0.75;
 }
.modal-header {
    background: linear-gradient(#1265ab, #7ebadc);
}
.flu-graph,
.covid-graph{
    background-color: #e8f7ff;
}
.years {
    width: 80px;
    margin-left: 10px;
}
#flu-month {
	margin-right: 25px;
}
#flu-month td {
	background: linear-gradient(#1265ab, #7ebadc);
	color: #FFFFFF;
	/* ReSharper disable once RequiresFallbackColor */
	text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
	font-weight: bold;
	font-size: 13px;
	width: 40px;
	height: 30px;
	text-align: center;
}
#covid-month {
	margin-right: 20px;
}
#covid-month td {
	background: linear-gradient(#1265ab, #7ebadc);
	color: #FFFFFF;
	/* ReSharper disable once RequiresFallbackColor */
	text-shadow: 2px 2px 1px rgba(0,0,0,0.7);
	font-weight: bold;
	font-size: 13px;
	width: 31px;
	height: 30px;
	text-align: center;
	padding: 0;
}

/* その他 */
table {
	font-family: "Meiryo";
}
.right {
    float: right;
}
.text-bold {
    font-weight: bold;
}
.text-center {
    text-align: center;
}