﻿
html, body
{
	/* disable animation when setting scrollY via JS*/
	scroll-behavior: auto !important;
	/*background-color: var(--primary-bg);*/
}

.row-striped:nth-of-type(odd)
{
	background-color: #efefef;
}

.row-striped:nth-of-type(even)
{
	background-color: #ffffff;
}

.amount,
.amount_positive,
.amount_negative
{
	font-weight: bold !important;
	text-align: right !important;
	white-space: nowrap;
}

.amount_positive
{
	color: #0b0 !important;
}

.amount_negative
{
	color: #b00 !important;
}

.AW_HelpPanel
{
	margin: 10px;
	padding: 10px 10px 10px 55px; /* Add padding to the left for the icon */
	background-color: #ffc;
	color: #000;

	font-size: 0.9em; /* Slightly smaller font size */
	line-height: 1.2; /* Reduced line spacing */

	border: 1px solid #000;
	border-radius: 10px;
	background-image: url('/Images/lightbulb.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50px 50px;
}

.aw_error
{
	color: #f00;
	font-weight: bold;
}

label.aw_required::after
{
	content: "*";
	color: #f00;
}

.aw_status,
.aw_is_recurrent_True,
.aw_is_late_True,
.aw_is_admin_True
{
	margin-left: 2px;
	padding: 2px;
	font-size: x-small;
	white-space: nowrap;
	color: #000;
	text-transform: uppercase;
}

.aw_status_new
{
	background-color: #ff0;
}

.aw_status_proposed
{
	background-color: #999;
	color: #fff;
}

.aw_status_in_progress
{
	background-color: #FFA633;
	color: #000;
}

.aw_status_scheduled
{
	background-color: #00a;
	color: #fff;
}

.aw_status_postponed
{
	background-color: #050;
	color: #fff;
}

.aw_status_skipped
{
	background-color: #000;
	color: #fff;
}

.aw_status_completed
{
	background-color: #0f0;
}

.aw_is_admin_False
{
	display: none;
}

.aw_is_admin_True
{
	background-color: #ff0;
	color: #000;
}

.aw_is_late_False
{
	display: none;
}

.aw_is_late_True
{
	background-color: #a00;
	color: #fff;
}

.aw_is_recurrent_False
{
	display: none;
}

.aw_is_recurrent_True
{
	background-color: #fff;
	border: 1px solid #000;
}

.aw_document_status
{
	padding: 2px;
	font-size: x-small;
	white-space: nowrap;
	color: #000;
	text-transform: uppercase;
}

.aw_document_status_valid
{
	background-color: #0f0;
}

.aw_document_status_missing,
.aw_document_status_expired
{
	background-color: #f00;
	color: #fff;
}


.aw_higlight_True
{
	background-color: #ff0;
}

.aw_no_border,
.aw_no_border tr,
.aw_no_border td
{
	border: 0 !important;
}

a.nav-link
{
	text-align: right !important;
	color: #fff !important;
}

h1, h2, h3,
.h1, .h2, .h3
{
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

img,
canvas
{
	max-width: 100%;
	height: auto;
}

label
{
	font-weight: bold;
}

/* internet connection check */

div.aw_fill_overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none; /* Initially hidden */
	justify-content: center;
	align-items: center;
	z-index: 9999; /* Make sure it's on top */
}

div.aw_fill_overlay > div
{
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	/*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);*/
	text-align: center;
	font-weight: bold;
}

/* Bootstrap classes */

.navbar-brand
{
	background-image: url('/Images/Logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 95px;
	font-weight: bold;
}

@media (max-width: 768px)
{
	.navbar-brand
	{
		background-image: url('/Images/Icon.png');
		padding-left: 50px;
	}
}


.btn
{
	border-radius: 20px !important;
}

	.btn::after
	{
		content: ' →';
		/*content: ' ➡';*/
		/*content: ' ▶';*/
		font-size: inherit;
		margin-left: 5px;
	}

