<style media="screen" >


/* Base Styles */
* {
	box-sizing: border-box;
	position: relative;
}

body {
	padding: 15px;
	margin: 0;
	font-family: sans-serif;
}

/* Header */
header {
	padding: 15px;
	margin-bottom: 1em;
	background-color: #159957;
	background-image: -webkit-linear-gradient(30deg, #155799, #159957);
	background-image: -o-linear-gradient(30deg, #155799, #159957);
	background-image: linear-gradient(120deg, #155799, #159957);
}


header h1 {
	margin: 1em;
	display: block;
	text-align: center;
	font-size: 3rem;
	color: #fff;
}

/* Main Content */
main {
	margin: 0 1em;
	text-align: center;
}

#container {
	width: 200px;
	border: 1px solid #ccc;
	margin: 0 auto;
	margin-bottom: 1em;
}

	#myContainerLayout.container {
		padding: 15px !important;
	}

	#menuStripContainer {
		background-color: #A9E2B4; /* Set the background color for the menu strip */
	}

	.form-group {
		margin-top: 10px;
	}

/* Buttons */
.btn, .datatable-button, .datatable-2-button, .datatable-3-button, .datatable-4-button, .datatable-5-button {
	display: inline-block;
	padding: 5px 10px;
	/*font-size: 14px;*/
	/*font-weight: bold;*/
	text-align: center;
	text-decoration: none !important;
	/*cursor: pointer;*/
	background-color: #159957;
	background-image: -webkit-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: -o-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: linear-gradient(120deg, #A9E2B4, #A9E2B4);
	color: black;
	border-color: #fff3;
	border-style: solid;
	border-width: 1px;
	border-radius: 0.3rem;
	transition: background-image 0.2s;
}

.btn-go-to {
	font-size: inherit;
	padding: 1px 10px;
	margin-left: 10px;
}

.btn:hover, .datatable-button:hover, .datatable-2-button:hover, .datatable-3-button:hover, .datatable-4-button:hover, .datatable-5-button:hover, .btn-go-to:hover {
	background-image: -webkit-linear-gradient(30deg, #04A54C, #04A54C);
	background-image: -o-linear-gradient(30deg, #F7931B, #04A54C);
	background-image: linear-gradient(120deg, #04A54C, #04A54C);
	color: black;
}

.custom-back-button {
	border: 1px solid gray;
	background-color: transparent;
	padding: 0;
	border-radius: 0.3rem;
}

.custom-button-in-column {
	width: 100%;
}

.button-row {
	display: flex;
	justify-content: space-between;
}

.button-column {
	width: 48%; /* Adjust the width as needed */
	margin-bottom: 10px; /* Optional: Add margin between columns */
}


/* Tables */
table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
}

td {
	width: 100%;
	content: '';
	overflow-x: hidden;
	word-wrap: break-word;
}

/* Checkbox Styles */

.checkbox-xl .form-check-input {
	scale: 1.5;
}


.checkbox-xl .form-check-label {
	padding-left: 15px;
	//background-color: #A9E2B4; /* Set the background color for the checkbox */
}

#checkboxesContainer {
	position: absolute;
	top: 100px;
	left: 40px;
	z-index: 1000;
	overflow: auto;
	height: 80%;
	width: 20%;
	background-color: rgba(255, 255, 255, 0.1); /* Adjust the opacity (0.0 to 1.0) where 0.0 is transparent */
	display: flex;
	flex-direction: column;
}

.checkbox-container label {
	font-size: 10px; /* Adjust the font size as needed */
}

.checkbox-container {
	white-space: nowrap; /* Prevent label from wrapping */
}

	.checkbox-container input[type="checkbox"] {
		display: inline-block; /* Display checkbox and label on the same line */
		vertical-align: middle; /* Align checkbox vertically with the label */
	}

	.checkbox-container label {
		display: inline-block; /* Display label on the same line as the checkbox */
		vertical-align: middle; /* Align label vertically with the checkbox */
	}


/* Dropdown */

.dropdown-item {
	background-color: #A9E2B4; /* Background color */
	background-image: -webkit-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	color: black;
}

	.dropdown-item:hover {
		background-image: -webkit-linear-gradient(30deg, #04A54C, #04A54C);
		color: black;
	}


.custom-select {
	display: inline-block;
	color: black; /* Text color */
	padding: 10px 20px; /* Adjust padding as needed */
	background-color: #159957; /* Background color */
	background-image: -webkit-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: -o-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: linear-gradient(120deg, #A9E2B4, #A9E2B4);
	border: 1px solid #fff3;
	border-radius: 0.3rem;
	transition: background-color 0.2s;
	cursor: pointer;
	width: 100%;
}

	.custom-select:hover {
		background-image: -webkit-linear-gradient(30deg, #04A54C, #04A54C);
		background-image: -o-linear-gradient(30deg, #04A54C, #04A54C);
		background-image: linear-gradient(120deg, #04A54C, #04A54C);
		color: black;
	}

	/* Style for the dropdown arrow */
	.custom-select::after {
		content: '\f078'; /* You can use an arrow icon or any other content */
		font-family: "Font Awesome 5 Free"; /* Use your desired icon font */
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
	}

	/* Style for the dropdown options */
	.custom-select option {
		background-color: #04A54C; /* Background color for options */
		color: black; /* Text color for options */
	}

	.custom-select option {
		background-color: #04A54C; /* Background color for options */
		color: black; /* Text color for options */
	}

		.custom-select option:hover {
			background-color: #000; /* Background color for options on hover */
			color: #00F; /* Text color for options on hover */
		}

/* Link Button */
.link-button {
	background: none;
	border: none;
	color: #007bff; /* Link color */
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
}

/* Loading Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}

#loadingOverlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
	font-size: 20px;
	background-color: black !important;
	padding: 10px;
	display: block;
}

	#loadingOverlay .spinner-border {
		color: white;
	}

	#description {
		margin-top: 1em;
	}

/* Navbar */

/* Using a more specific selector */
.my-custom-navbar {
	background-color: #A9E2B4;
	color: black;
}

/* Using !important (not recommended) */
nav.navbar {
	background-color: #A9E2B4 !important;
	color: black !important;
}

.nav-item {
	background-color: #A9E2B4 !important;
	color: black !important;
}

	.nav-item a.nav-link {
		color: black !important;
	}

		.nav-item a.nav-link:hover {
			/* Style for hover state of the link */
			background-color: #04A54C !important;
			color: black !important;
		}


	a {
		color: #0085fc;
	}

	
	#idFilesInSelectedFolder {
		table-layout: fixed;
		width: 100%;
	}

	#idFilesInSelectedFolder .cbcell {
		width: 1%;
		white-space: nowrap;
	}

	#idFilesInSelectedFolder th:nth-child(2),
	#idFilesInSelectedFolder td:nth-child(2) {
		width: 71%;
	}

	#idFilesInSelectedFolder th:nth-child(3),
	#idFilesInSelectedFolder td:nth-child(3) {
		width: 5%;
	}

	#idFilesInSelectedFolder th:nth-child(4),
	#idFilesInSelectedFolder td:nth-child(4) {
		width: 23%;
	}


	/*Start: Makes the down arrow visible all the time, not only on hoover. */

	#sSearchProjectStatusNameProj::-webkit-calendar-picker-indicator {
		opacity: 1;
		pointer-events: auto;
	}

	#sSearchProjectStatusNameProj::-webkit-inner-spin-button {
		opacity: 1;
	}

	#sSurveyTypeNameProj::-webkit-calendar-picker-indicator {
		opacity: 1;
		pointer-events: auto;
	}

	#sSurveyTypeNameProj::-webkit-inner-spin-button {
		opacity: 1;
	}



	.label-text {
		display: inline-block;
		vertical-align: middle;
	}
	.label-container {
		display: flex;
		align-items: center;
	}

html, body, #cesiumContainer {
	margin: 0;
	padding: 0;
	position: relative;
}

/* CSS targeting the Cesium buttons */
.cesium-button {
	cursor: pointer;
	/* Add any additional styles or modifications as needed */
}

.dropzone .dz-preview .dz-progress .dz-upload {
	background: #77DD77 !important; /* Set the background color to green */
	width: 100%; /* Ensure the progress bar fills the container */
}



.dz-button {
	display: inline-block;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	background-color: #159957;
	background-image: -webkit-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: -o-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: linear-gradient(120deg, #A9E2B4, #A9E2B4);
	color: black;
	border-color: #fff3;
	border-style: solid;
	border-width: 1px;
	border-radius: 0.3rem;
	transition: background-image 0.2s;
}

.dz-button:hover {
	background-image: -webkit-linear-gradient(30deg, #04A54C, #04A54C);
	background-image: -o-linear-gradient(30deg, #04A54C, #04A54C);
	background-image: linear-gradient(120deg, #04A54C, #04A54C);
	color: black;
}

.dz-button:focus {
	outline: none;
}

.button-text {
	display: block;
}

/* Optional: Adjust the button's appearance */
.button-text:before {
	content: '\f07c';
	font-family: "Font Awesome 5 Free";
	margin-right: 5px;
}


.input-group-fill {
	flex: 1 1 auto;
}





.loading-indicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* Add styles for the loading indicator */
}

.selected-value {
	font-style: italic;
	color: #04A54C; /* You can choose a different color that matches your design */
	margin-left: 20px; /* Adjust the indentation value as needed */
}

#RowStayingOnTopWhileScrolling {
	margin-top: -80px; /* Adjust the margin to create space below the menu strip */
	position: fixed;
	left: 8px;
	right: 8px;
	z-index: 1000;
	padding: 0px;
	width: 100%;
	background-color: white; 
}


/*input[type="text"],
input[type="password"],*/
button[type="submit"] {
	/* Your normal button styles */
	width: 100%;
	background-color: #A9E2B4; /* Green */
	color: white;
	border: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

	/* Hover state */
	button[type="submit"]:hover {
		background-color: #04A54C;
	}

	/* Disabled button state */
	button[type="submit"].disabled {
		background-color: grey; /* Adjust as needed */
		color: darkgrey; /* Adjust as needed */
		cursor: not-allowed;
	}


#myCesiumRasterCheckboxes label, #myCesiumVectorCheckboxes label {
	color: white;
	margin-left: 5px; /* Adjust the left margin as needed */
}


#idCesiumZoomToDataset {
	display: inline-block;
	color: black;
	padding: 5px 20px;
	background-color: #159957;
	background-image: -webkit-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: -o-linear-gradient(30deg, #A9E2B4, #A9E2B4);
	background-image: linear-gradient(120deg, #A9E2B4, #A9E2B4);
	border-color: #fff3;
	border-style: solid;
	border-width: 1px;
	border-radius: 0.3rem;
	transition: background-image 0.2s;
	text-decoration: none !important;
	margin-bottom: 10px;
	position: absolute;
	top: 79px;
	right: 15px;
	width: 160px;
	height: 35px;
	z-index: 1000;
}

#idCesiumZoomToDataset:hover {
	background-image: -webkit-linear-gradient(30deg, #04A54C, #04A54C);
	background-image: -o-linear-gradient(30deg, #04A54C, #04A54C);
	background-image: linear-gradient(120deg, #04A54C, #04A54C);
	color: black;
}


.windy-container {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 0px;
	height: 65vh;
}

.status-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: green; /* Default color */
}

/* Green LED style */
.led.green {
	width: 30px; 
	height: 30px; 
	background-color: green; 
	border-radius: 50%; 
	display: inline-block;
}

/* Black LED style */
.led.black {
	width: 30px; 
	height: 30px;
	background-color: black; 
	border-radius: 50%; 
	display: inline-block;
}

.myHiddenColumn {
	display: none;
}

/* Ensure the container does not center contents */
.tree-container {
	display: block !important; /* Prevents Bootstrap flexbox behavior */
	text-align: left !important; /* Aligns content inside the container */
}

/* Force #myTreeView to the left */
#myTreeView {
	display: inline-block !important; /* Prevents full-width stretching */
	text-align: left !important; /* Ensures text and structure are left-aligned */
	margin-left: 0 !important; /* Prevents unwanted shifting */
	padding-left: 0 !important; /* Removes any extra padding */
	width: auto !important; /* Prevents it from expanding unnecessarily */
	min-width: 100px; /* Ensures it doesn’t collapse */
}

/* Ensure the tree itself stays left-aligned */
.treeview-left {
	display: block !important; /* Removes any inline/flex behavior */
	text-align: left !important; /* Forces left alignment */
	margin-left: 0 !important; /* Prevents any unwanted shifting */
	padding-left: 0 !important;
	width: auto; /* Prevents full-width expansion */
}

/* Style for TreeView context menu with green border */
.treeview-context-menu, .datatable-context-menu {
	background-color: #A9E2B4 !important; /* Green background */
	border: 2px solid #A9E2B4 !important; /* Green border matching background */
	border-radius: 0.25rem; /* Slightly rounded corners */
	color: white; /* White text for contrast */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

	/* Optional: Change submenu background color to match */
	.treeview-context-menu .submenu, datatable-context-menu .submenu {
		background-color: #A9E2B4 !important; /* Match green background */
		border-color: #A9E2B4 !important; /* Green border for submenu */
	}

/* Small screens datatable layout */
@media only screen and (max-width: 768px) {
	/* Styles for small screens */
	.table-responsive {
		overflow-x: auto; /* Enable horizontal scrolling */
		-webkit-overflow-scrolling: touch; /* Smooth scrolling for touch devices */
	}

	.table {
		width: 100%; /* Ensure the table takes the full width of its container */
		font-size: 10px; /* Adjust font size */
		min-width: 1200px; /* Ensure the table has a minimum width */
	}

		.table td {
			white-space: nowrap; /* Prevent text wrapping in table cells */
			padding: 2px; /* Reduce padding for smaller screens */
		}

		.table th {
			white-space: normal; /* Allow text wrapping in headers */
			padding: 2px; /* Reduce padding for smaller screens */
		}
}
</style >
