* {
	box-sizing: border-box;
	font-family: tahoma;
}

a {
    color: #00897b; /* Dark gray for links */
    text-decoration: none; /* Remove the underline */
    font-weight: 400; /* Regular weight */
    border-bottom: 2px solid transparent; /* Add a border for the underline effect */
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Hover and focus effects */
a:hover,
a:focus {
    color: #00897b; /* Bright orange color on hover */
    border-color: #00897b; /* Border underline matches the hover color */
    text-decoration: none; /* Keep the underline off, the border acts as the underline */
}

/* Visited links */
a:active, a:visited {
    color: #00897b; /* Teal for visited links */
    border-color: #00897b; /* Border underline matches the visited color */
}

body {
	font-family: tahoma;
	background-color: #f3f3fe;
	background-color: #f2f2f2;
	margin: 0;
	padding: 10px;
}

#page-content {
	max-width: 752px;
	width: 100%;
	margin: 72px auto;
}


.form-wrapper {
	background-color: #FFF;
	box-shadow: 0 4px 4px rgba(87,100,126,.21);
	border-radius: 3px;
}

.form-header {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-bottom: 1px solid #ccc;
}

.form-header .title {
    font-size: 1.5em;
}

.form-body {
	padding: 20px;
}

.form-footer {
	border-top: 1px solid #ccc;
	padding: 20px;
}


.alert {
	position: relative;
    padding: 0.75rem 1.25rem;
	border-radius: 0.25rem;
	margin-bottom: 1rem;
	font-size: 1.2em;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
	border: 1px solid #f5c6cb;
}

.alert-success {
    border: 1px solid #c3e6cb;
    background-color: #d4edda;
    color: #155724;
}

.alert-closebutton {
	position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
	
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #777;
    text-shadow: 0 1px 0 #fff;
}

.alert-closebutton:hover {
    color: black;
	cursor: pointer;
}

a.btn {
	text-decoration: none;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	color: #fff !important;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:focus, .btn:hover {
    text-decoration: none;
}

.btn-margin {
	margin-top: 7px;
	margin-bottom: 7px;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #5a6268;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}


.input {
	width:100%;
	border-radius: 3px;
	background: #f9f9f9;
	border: 1px solid #ccc;
	outline:none;
	font-family: tahoma;
	font-size: 1em;
	color: #333;
	transition: border 0.2s;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 15px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}

.input:focus {
	border:1px solid #56b4ef;
	box-shadow: 0px 0px 3px 1px #c8def0;
}

.input.error {
	border:1px solid #ef5656;
}

.input-error-text {
    color: #ef5656;
    margin-bottom: 10px;
}   

.input-group {}

table {  
  width: 100%;
}

table > tbody > tr > th {
    white-space: nowrap;
    width: 1px;
}

table > tbody > tr > td {
    white-space: nowrap;
    width: auto;
}

.table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
}

.table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.table th,
.table td {
    padding: 12px 15px;
}

.table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.table tbody tr td {
    border: 1px solid #dddddd;
}

/*
.table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
*/

.table tbody tr:hover {
    background-color: #f3f3f3;
}


.table tbody tr:last-of-type {
}

.table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

@media screen and (max-width: 600px) {
	body {
		background-color: #fff;
	}
	#page-content {
		max-width: 100%;
		width: 100%;
		margin: 0;
	}
	
	.form-wrapper {
		box-shadow: none;
		border-radius: 0;
	}
	
	.alert {
		border-radius: 0;
	}
}

.fixed-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #f1f1f1;
	border-top: 1px solid #ccc;
	padding: 10px;
	text-align: center;
}

.fixed-footer button {
	padding: 10px 20px;
	font-size: 16px;
	color: #fff;
	background-color: #007BFF;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.fixed-footer button:hover {
	background-color: #0056b3;
}

.incidentCount {
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    background-color: #cf3922;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 10px;
}