/* app.css */
body{
	overflow-y: scroll;
}

.flash-message {
	position: fixed;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1050; /* above navbar */
	min-width: 300px;
	max-width: 600px;
	text-align: center;
	transition: opacity 0.6s ease;
}

.flash-message.hide {
	opacity: 0;
	pointer-events: none;
}

.table-custom {
	border-collapse: separate;
	border-spacing: 0 0.4rem;
}

.table-custom thead th {
	background: #f8f9fa;
	font-weight: 600;
	border-bottom: 2px solid #dee2e6;
	text-transform: uppercase;
	font-size: 0.85rem;
}
.table-custom tbody td {
	padding: .3em 1em;
	background-color: #DDD;
	border-left: 2px solid #BBB;
	border-right: 2px solid #FFF;
}

.table-custom tbody tr {
	background: #fff;
	transition: background 0.15s ease-in-out, transform 0.1s ease-in-out;
}

.table-custom tbody tr:hover {
	background: #f1f3f5;
}
.table-custom tbody td a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0.2rem 0.50rem;
	color: inherit;
	text-decoration: none;
}

.table-custom tbody td a:hover {
	text-decoration: none;
	color: black;
}
.table-custom tbody td a.btn:hover {
	color: white;
}
textarea {
	overflow-y: hidden;
}

.nodetype-field .form-floating>.form-control, 
.nodetype-field .form-floating>.form-control-plaintext{
	padding: 1rem .5rem .5rem .5rem;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select{
	line-height: 1.1em;
}


.game-icon{
	padding: .15em;
	height: 1.3em;
	width: 1.3em;
	border-radius: 2px;
}
.black.game-icon path{
	fill: #444;
}
.list-group-item:hover{
	background-color: #CCCCCC11;
}
.game-icon.handler{
	top: 10px;
	padding: 0;
	margin-left: 1em;
}

.flex-basis-50{ flex-basis: 50px; }
.flex-basis-150{ flex-basis: 150px; }
.flex-basis-200{ flex-basis: 200px; }
.flex-basis-250{ flex-basis: 250px; }
.flex-basis-300{ flex-basis: 300px; }
.flex-basis-350{ flex-basis: 350px; }
.flex-basis-400{ flex-basis: 400px; }

