html {
	/*background-image: linear-gradient(90deg, rgba(67, 28, 91, 0.1), rgba(67, 28, 91, 0.9));*/
	background-color: rgba(32, 46, 82, 1);
	color: rgba(253, 233, 233, 1);
}

body {
	background-image: none;
	background-color: transparent;
	color: rgba(253, 233, 233, 1);
	font-family: Outfit, 'Century Gothic';
	font-weight: 400;
}

a, .btn-link {
	font-weight: bold;
	text-decoration: underline;
}

.btn-primary {
	color: rgba(253, 233, 233, 1);
	background-color: rgba(158, 46, 239, 0.8);
	border-color: rgba(158, 46, 239, 0.8);
}

.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
	color: rgba(253, 233, 233, 1);
	background-color: rgba(158, 46, 239, 1);
	border-color: rgba(158, 46, 239, 1);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(140, 83, 245, 0.6);
}

.btn-primary:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
	border-color: #8c53f5;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(140, 83, 245, 0.6);
}

.btn-primary:disabled, .btn-secondary:disabled {
	background-color: rgba(158, 46, 239, 0.4);
	border-color: rgba(158, 46, 239, 0.4);
}

.btn-secondary {
	color: rgba(253, 233, 233, 1);
	background-color: rgba(67, 28, 91, 0.8);
	border-color: rgba(158, 46, 239, 0.8);
}

.btn-secondary:hover {
	color: rgba(253, 233, 233, 1);
	background-color: rgba(67, 28, 91, 1);
	border-color: rgba(158, 46, 239, 1);
}

.dropdown-item, .dropdown-divider {
	cursor: pointer;
}

.content {
	padding-top: 1.1rem;
	overflow-x: hidden;
	height: calc(100vh - 60px); /* Fixes ANSP-56 UI:Team names are cut off */
}

.valid.modified:not([type=checkbox]) {
	outline: 1px solid #26b050;
}

.invalid {
	outline: 1px solid red;
}

.validation-message {
	color: red;
}

#blazor-error-ui {
	background: black;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

#blazor-error-ui .dismiss {
	cursor: pointer;
	position: absolute;
	right: 0.75rem;
	top: 0.5rem;
}

.table {
	color: rgba(253, 233, 233, 1);
	border-collapse: separate;
	border-spacing: 0px 2px;
	max-width: 100vw;
}

.table td {
	border-top: 0px solid black;
}

.priority-0 {
	background-color: black;
	color: white;
}

.priority-1 {
	background-color: black;
	color: #c55d5d;
}

.priority-2 {
	background-color: black;
	color: #f2af79;
}

.priority-3 {
	background-color: black;
	color: #fed754;
}

.priority-4 {
	background-color: black;
	color: #7eb69e;
}

.priority-5 {
	background-color: black;
	color: #73c38d;
}

.ticket-due-past, .ticket-due-past a, .ticket-due-past .btn-link {
	background-color: #cc0000;
	color: white;
	/*font-weight: bold;*/
}

.ticket-due-critical, .ticket-due-critical a, .ticket-due-critical .btn-link {
	background-color: rgb(128, 0, 0);
	color: white;
}

.ticket-due-major, .ticket-due-major a, .ticket-due-major .btn-link {
	background-color: orange;
	color: black;
}

.ticket-due-minor, .ticket-due-minor a, .ticket-due-minor .btn-link {
	background-color: palegoldenrod;
	color: black !important;
}

.ticket-due-trivial, .ticket-due-trivial a, .ticket-due-trivial .btn-link {
	background-color: darkgreen;
	color: white;
}

.ticket-closed, .ticket-due-closed a, .ticket-due-closed .btn-link {
	background-color: black;
	color: green;
}

.top-row {
	background-color: #e2eff7 !important;
	border-bottom: black solid 1px !important;
	color: rgba(32, 46, 82, 1);
	display: flex !important;
	position: sticky !important;
	top: 0 !important;
	z-index: 1 !important;
}

.removal-pending {
	animation-name: fadeOut;
	animation-duration: 1.5s;
	/*animation-timing-function: ease-in;*/
	animation-fill-mode: forwards;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* toast message overrides */
.toaster {
	box-shadow: 0px 0px 10px 5px black !important;
}

/* tweaks to boostrap after upgrade from 4.x to 5.x */
.text-end .hdr {
	justify-content: end;
}

.table {
	border-color: transparent;
}

	.table thead th {
		border-bottom: 1px solid white;
		border-top: 1px solid white;
	}