/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 7 Jan 2025, 19:39:46
    Author     : ian
*/


html,  body
{
	font-family: sans-serif;
	font-size: 1.3vw;
	color:black;
	
	padding:0;
	

	text-size-adjust: none;
	user-select:none;
	-moz-user-select: none;
}

p, ol, ul, li, table, tr, td, select, option, div, button, input, textarea, pre, a, span
{
	font-size:inherit;
	font-family:inherit;
}
table.parameters
{
	border-collapse: collapse
}

table.parameters td:nth-child(4)
{
	border-left: 1px solid black;
}

table.parameters td:nth-child(7)
{
	border-left: 1px solid black;
}

table.log
{
	border-collapse: collapse;
}

table.log td
{
	border:black solid 1px;
}


table.log tr:hover 
{
	background-color:lightgray;
}

.menubutton
{
	
}

table.xlsx
{
	border-collapse: separate;
	border-spacing: 0;
}

table.xlsx td
{
	border:black solid 1px;
	text-align: right;
}

tr.sticky
{
	position: sticky;
	background-color: lightgray;
}

tr.sticky td
{
	border:black solid 1px;
}



td
{
	font-family: sans-serif;
	font-size: 1.3vw;
	color:black;
	padding:0 0.2em;
}

.spec
{
}

.auto
{
}

input, button
{
	font-size: 1.3vw;
	
}

.vesseldiv
{
	position:absolute;
	left:3000px;
	
	/*
	left:800px;
	top:200px;
	background-color:gray;
	margin-left:-272px;
	margin-top:-53px;
	transform-origin: 272px 53px;
	transform: rotate(0deg) scale(1);
	*/
}
.vessel
{
	position:absolute;
	left:0;
	top:0px;
}
.rudder
{
	position:absolute;
	/*
	left:42px;
	top:65px;
	margin-left:-23px;
	margin-top:-32px;
	transform-origin: 23px 32px;
	transform: rotate(0deg);
	*/
}

.redblob
{
	position:absolute;
	background-color: red;
	width:4px;
	height:4px;
	margin-left:-2px;
	margin-top:-2px;
}

div.spreadsheet
{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow:scroll;
	background-color: white;
}

div.spreadsheet td
{
	text-align:right;
	font-size: 11pt;
}


#snackbar 
{
  visibility: hidden;
  min-width: 15em;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 0.1em;
  padding: 1em;
  position: fixed;
  z-index: 1;
  left: 3em;
  bottom: 3em;
}

#snackbar.show 
{
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein 
{
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein 
{
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout 
{
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout 
{
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}



