body {
	height: 100%;
	background-color: black;
	color: white;
}

hr {
	color: white;
}

a {
	color: white;
}

td, tr {
	height: 1px;
	text-align: center;
	vertical-align: middle;
}

textarea {
	resize: both;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-outline-primary {
	background-color: transparent;
}

.btn-outline-primary:focus {
	outline: none;
	box-shadow: none;
}

.btn-outline-secondary {
	background-color: transparent;
}

.btn-outline-secondary:focus {
	outline: none;
	box-shadow: none;
}

.modal-header {
	color: red;
	background-color: white;
}

.modal-body {
	color: black;
	background-color: white;
}

.modal-footer {
	background-color: white;
}

.table-dark th {
	color: white;
	background-color: black;
}

* {
	font-size: 12px;
	line-height: 1.2;
}

.img-with-text {
	text-align: center;
	width: 150px;
	height: 150px;
	float: left;
	font-weight: bold;
}

.img-with-text a {
	display: block;
	margin: 0 auto;
}

.center-block {
	display: table;  /* Instead of display:block */
	margin-left: auto;
	margin-right: auto;
	width: 80%
}

.frame{
	border: 2px solid white;
	display: flex;
	margin-left: auto;
	margin-right: auto;
	float: center;
	width: 80% !important;
}

.flexname {
	min-height: 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 7px;
}

::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

@keyframes spin {
  100% {
    transform: rotateZ(360deg);
  }
}

.loader-container {
    position: relative;
    width: 26px; /* Set the width to the desired size */
    height: 26px; /* Set the height to the desired size */
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden; /* Hide the loader initially */
    animation: spin 1s infinite steps(12);
}

/* Show the loader when needed */
.loader-container.active .loader {
    visibility: visible;
}

.bootbox .modal-header .modal-title {
	color: black;
}

.navbar-nav a.nav-link {
	font-size: 14px;
}
