﻿.table-wrap { position: relative; }

.table-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.6);
	z-index: 2;
}

.spinner {
	width: 32px;
	height: 32px;
	border: 4px solid #ccc;
	border-top-color: #2e93e6;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

#table-loading-senr {
	text-align: center;
}

.spinner-senr {
	display: inline-block;
	width: 32px;
	height: 32px;
	border: 4px solid #ccc;
	border-top-color: #2e93e6;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	vertical-align: middle;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}
