@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

header {
	width: 100%;
	height: 4rem;
	background-image: linear-gradient(90deg, #008000, #ffffff);
}

header > a {
	display: inline-block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: white;
	font-size: 3rem;
}

footer {
	height: 3rem;
	text-align: center;
}

ul {
	list-style: none;
}

input {
	font-size: 1rem;
}

textarea {
	padding-left: 2px;
	font-size: 1rem;
	tab-size: 4;
}

.wrapper {
	width: calc(100vw - 3rem);
	min-height: 100vh;
	margin-left: auto;
	margin-right: auto;
}

.layout {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main-menu {
	display: flex;
	justify-content: flex-end;
}

.context-menu {
	display: flex;
}

.page-menu {
	display: flex;
}

.menu-img {
	width: 3rem;
	height: 3rem;
}

.content {
	flex: 1;
}

.page {
	width: 100%;
}

.flex-row {
	display:flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.none-row {
	display:none;
	flex-direction: row;
}

.none-col {
	display: none;
	flex-direction: column;
}

.select {
	overflow-y: scroll;
	border: 1px solid #000000;
}

.radio {
	height: 1.5rem;
	white-space: nowrap;
}

.radio > input[type="radio"] {
	display: none;
}

.radio:has(input[type="radio"]:checked) {
	background: #1967D2;
	color: white;
}

.checkbox {
	height: 1.5rem;
	white-space: nowrap;
}

.checkbox > input[type="checkbox"] {
	display: none;
}

.checkbox:has(input[type="checkbox"]:checked) {
	background: #1967D2;
	color: white;
}
