
/* Hide Firefox's indicator when images are loading */
img:-moz-loading {
    visibility: hidden;
}
:root {
  --primary-color: #077880;
  --canvas-color: #077880;
}



/* ------ UTILITY ---------- */

.hidden {
	display: none;
}

div.tip {
	color: #555;
	font-weight: normal;
	text-align: left;
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 1.45;
	background: #fff;
	border: 1px solid #a2a2a2;
	border-radius: 6px;
	padding: 8px 11px 9px 11px;
	bottom: 0px;
	left: -50%;
	margin-right: 9px;
	white-space: pre;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
}

/* tail */
.tip:after, .tip:before {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

/* tail fg */
.tip:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #fff;
	border-width: 8px;
	left: 50%;
	margin-left: -8px;
}

/* tail bg */
.tip:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #999;
	border-width: 9px;
	left: 50%;
	margin-left: -9px;
}


.tip-button {
 float: right;
 margin-top: 2px;
 display: inline-block;
 position: relative;
 z-index: 500;
 cursor: pointer;
 text-align: center;
 font-size: 16px; /* Increase font size */
 line-height: 1.2; /* Increase line height for better readability */
 font-weight: normal;
 color: #007BFF; /* Change color to a more vibrant shade of blue */
 border-radius: 4px; /* Add rounded corners */
 box-shadow: 0px 2px 5px rgba(0,0,0,0.1); /* Add a box shadow for a "raised" effect */
 transition: all 0.3s ease; /* Add a transition for smooth hover effects */
}

.tip-button:hover {
 color: #077880; /* Darken color on hover for interactive feedback */
 box-shadow: 0px 2px 5px rgba(0,0,0,0.2); /* Increase box shadow on hover for a "pressed" effect */
}

.tip-anchor {
	visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
}

.tip-button:hover {
	font-weight: normal;
	color: #077880;
}

.tip-button:hover * {
	visibility: visible;
}

.clicktext {
	display:inline-block;
	line-height: 1;
	cursor: pointer;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	text-decoration:none;
	text-indent: 0px;
}

.file-control {
	position: absolute;
	top: -1000px;
}

/* -------- BUTTONS ---------- */

.btn {
 text-align: center;
 padding: 4px 7px 5px 7px;
 border-radius: 4px;
 line-height: 1;
 display: inline-block;
 cursor: pointer;
 background: linear-gradient(to right,  #077880, #077880); /* Add a gradient background */
 color: #fff; /* Change text color to white for better contrast */
 border: none; /* Remove border */
 box-shadow: 0px 5px 15px rgba(0,0,0,0.2); /* Add a box shadow for a "raised" effect */
 transition: all 0.3s ease; /* Add a transition for smooth hover effects */
}

.btn:hover {
 background: linear-gradient(to right, #077880, #009fff); /* Reverse gradient on hover */
 box-shadow: 0px 2px 10px rgba(0,0,0,0.2); /* Reduce box shadow on hover for a "pressed" effect */
}

.btn.active {
 cursor: pointer;
 box-shadow: 0px 2px 10px rgba(0,0,0,0.2); /* Reduce box shadow for a "pressed" effect */
}

.btn.selected,
.btn.selected:hover {
 color: #fff; /* Change text color to white for better contrast */
 background: #aaa; /* Change background to a solid color */
}

.btn.inline-btn:hover:not(.selected) {
 background-color: #FFFCDC;
 color: black;
}

.btn.disabled {
 cursor: default;
 background: #ccc; /* Change background to a lighter color */
 color: #777; /* Change text color to a darker color */
}

.inline-btn {
 margin: 0;
 border: 1px solid #aaa;
 padding: 1px 4px 3px 3px;
}

.text-btn {
 cursor: pointer;
}

.text-btn.disabled {
 cursor: auto;
 color: #999;
}
