@charset "UTF-8";

/* ページ全体 */
body {
	background-color: #f8f9fa;
}

/* navbar */
.navbar {
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}

/* カード */
.card {
	border: 1px solid #ccc;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	margin-bottom: 1rem;
}

.card-header {
	background-color: var(--dark);
	color: white;
	font-weight: bold;
}

:root {
	--primary: #083D89 !important;
	--secondary: #22988C !important;
	--dark:#152235 !important;
	--light: #747687 !important;
}

a, .btn-outline-primary {
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.btn-primary {
	color: #fff !important;
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.btn-primary:hover {
	background-color: color-mix(in sRGB, var(--primary), transparent 20%) !important;
	border-color: color-mix(in sRGB, var(--primary), transparent 20%) !important;
}

.table .thead-dark th {
	background-color: var(--dark) !important;
	border-color: var(--light) !important;
}

.table-striped {
	background-color: #fff;
}

/* 画面下部ボタン */
.bottom-submit-wrapper {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 1000;
	padding: 10px;
}

.bottom-submit-button {
	min-width: 200px;
	padding: 20px;
	background-color: var(--primary);
	color: white;
	border-radius: 10px;
	border: none;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	font-weight: bold;
	font-size: 1.25rem;
	position: relative;
}

.bottom-submit-button.cancel-button {
	background-color: var(--light);
	color: var(--white);
}

.bottom-submit-button:hover {
	background-color: #042452;
}

.cancel-button:hover {
	background-color: var(--dark);
}