@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

/* CSS reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;

	/* font-family: 'Source Sans Pro',sans-serif; */
	margin: 0;
	padding: 0;
	background-color: #f0f0f0;
	/* default font color  - black */
	color: #000000;
	display: block;
}

select {                                                                                                                                     
        font-family: Arial, sans-serif;                                                                                                      
        font-size: 1.5em;                                                                                                                      
}                                                                                                                                            
                                                                                                                                             
option {                                                                                                                                     
        font-family: Arial, sans-serif;                                                                                                      
        font-size: 1em;                                                                                                                      
}

.preload * {
	transition: none !important;
}

.back-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70vw;
}

.topnav {
	/* border: 1px solid #0f0f0f; */
	border-radius: 5px;
	margin: 0 auto 0 auto;
	width: 98vw;
	height: 80px;
	background: #E3E3E3;
	padding: 0 10px;
	box-sizing: border-box;
	display:flex;
	text-align: center;
}

.main-body {
	/* border: 1px solid #0f0f0f; */
	border-radius: 5px;
	margin: 0 auto 0 auto;
	width: 98vw;
	padding: 0;
	box-sizing: border-box;
	text-align: center;
	display: flex;
}

.container {
	/* border: 1px solid #0f0f0f; */
	border-radius: 5px;
	padding: 1em;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}


main, footer {
	padding: 1em;
	flex-grow: 1;
	margin-bottom: 1em;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul {
	margin: 0;
	list-style-type: none;
	padding: 0;
}

li {
	padding: 5px 0;
	border-bottom: 1px solid #ddd;
}


ul li {
	list-style: none;
}

.menu-btn {
	display: none;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.menu-btn__burger {
	width: 50px;
	height: 6px;
	background: #000;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(255,101,47,.2);
	transition: all .3s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 6px;
	background: #000;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(255,101,47,.2);
	transition: all .3s ease-in-out;
}

.menu-btn__burger::before {
	transform: translateY(-16px) translateX(-25px);
}

.menu-btn__burger::after {
	transform: translateY(16px) translateX(-25px);
}

.menu-btn.open .menu-btn__burger {
	transform: translateX(-50px);
	background: transparent;
	box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
	transform: rotate(45deg) translate(25px, -25px);
}

.menu-btn.open .menu-btn__burger::after {
        transform: rotate(-45deg) translate(25px, 25px);
}

.content-wide {
        margin-left: 0;
}

.main_content{
	font-size: 1.5vw;
	width: 95%;
	height: 90%;
	/*margin-left: 200px;*/
	margin: auto;
	/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.main_content input{
	margin: 5px;
	padding: 3px;
	font-size: 1.5rem;
	border-radius: 5px;
}

.main_content ul {
	margin: 5px;
	padding: 5px;
	display: block;
}

.main_content ul li{
	list-style: unset;
}

.page_title {
	margin: 0 auto;
	color: #0f0f0f;
	padding: 0 20px;
	font-size: 1.1em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
}

ul li a {
	color: #0f0f0f;
	padding: 0 20px;
	font-size: 1.1em;
	text-decoration: none;
	font-weight: bold;
}

h1 {
	font-size: 3em;
	margin: auto;
}

section {
	padding: 80px 5px 5px;
	box-sizing: border-box;
	height: 100%;
}

form {
	height: 100%;
}

section h1 {
	margin: 0;
	padding: 0;
	font-size: 3em;
}

section h1 span {
	font-size: 0.8em;
	color: #0bacff;
}

.menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
	visibility: hidden;
	opacity: 0;
        transition: opacity 0.3s;
        margin: 0;
        padding: 0;
}

.menu-overlay.open {
	visibility: visible;
	opacity: 1;
}

.nav__links {
	position: fixed;
	top: 80px;
	width:20vw;
	left: 0;
	z-index: 2;
	height: 100vh;
	background: #ffffff;
	font-size: 2vw;
	transform: translateX(0px);
	transition: transform 0.3s;
}

.nav--open .nav__links {
	width: unset;
	transform: translateX(0);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.nav__link {
        display: flex;
        align-items: center;
        color: #666666;
        font-weight: bold;
        /*font-size: 3vw;*/
        text-decoration: none;
        padding: 12px 15px;
        transition: background 0.2s;
}

.nav__link > i {
	margin-right: 15px;
}

.nav__link--active {
	color: #009578;
}

.nav__link--active,
.nav__link:hover {
	background: #eeeeee;
}

.side-nav {
        border: 1px solid #0f0f0f;
        border-radius: 5px;
        text-align: center;
        margin: 0;
}


/*Mobile styles*/
/* @media (max-width: 768px){ */
/*@media (min-width: 768px) and (max-height: 1024px)  { */
@media (max-width: 768px){
	.side-nav {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
		height: 100vh;
		width: 0;
		background: #ffffff;
		transform: translateX(-1250px);
		transition: transform 0.3s;
		font-size: 1rem;
	}

	.menu-btn {
		display: flex;
	}

	body {
		font-size: 1rem;
	}
}

.side-nav--open {
	width: 80vw;
	transform: translateX(0);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.visual {
	height: 100px;
	width: 100%;
	background: wheat;
	margin: 1rem;
}

.parent {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	place-items: center;
	height: 100vh;
	width: 100vw;
}

.card {
	border-radius: 5px;
	width: clamp(50ch, 40vw, 50ch);
	height: 50%;
	display: block;
	background: AliceBlue;
	font-size: 3vw;
	border: solid 1px #0f0f0f;
	background: #E3E3E3;
}

.tcard {
	display: flex;
	overflow-y: auto;
	padding: 1rem;
	font-size: 4vw;
	text-align: center;
	align-content:flex-start;
	border: solid 1px #0026ff;
	place-items: center;
	text-align:center;
}

.bt{
	width: 25vw;
	height: 1rem;
	font-size: 1rem;
	margin: 10px 20px 10px auto;
}

.textBox {
	border-radius: 5px;
	width: clamp(50ch, 40vw, 50ch);
	font-size: 4vw;
	border: solid 1px #0f0f0f;
	padding: 1rem;
}

.report-settings {
	padding: 0;
	display: flex;
}

.settings-left {
	margin: 0 auto 1rem auto;
}

.settings-right {
	margin: 0 auto 1rem auto;
}

.table-scroll {
	width: 90vw;
	display: block;
	position: relative;
	margin: auto;
	overflow: hidden;
	border: 1px solid #000000;
}
.table-wrap {
	width:100%;
	overflow:auto;
}
.table-scroll table {
	width: 100vw;
	margin:auto;
	border-collapse:separate;
	border-spacing:0;
}
.table-scroll th, .table-scroll td {
	padding:5px 10px;
	border:1px solid #000;
	background:#fff;
	white-space:nowrap;
	vertical-align:top;
}
.table-scroll thead, .table-scroll tfoot {
	background:#f9f9f9;
}
.clone {
	position:absolute;
	top:0;
	left:0;
	pointer-events:none;
}

th {
	overflow-wrap: break-word;
}

.clone th, .clone td {
	visibility:hidden
}
.clone td, .clone th {
	border-color: transparent;
}
.clone tbody th {
	visibility:visible;
	color:cornflowerblue;
}
.clone .fixed-side {
	border:1px solid #000;
	background:#eee;
	visibility:visible;
}
.clone thead, .clone tfoot{background:transparent;}

.input_block {
	display: grid;
	grid-template-columns: auto auto;
	width: 90%;
	margin: 0 auto;
}

.input_slot_left{
	padding: 0;
	padding-right: 5px;
	text-align: right;
}

.input_slot_right{
	/*	border:1px solid #000; */
	border-radius: 5px;
}

.bordered{
	border:1px solid #000;
	border-radius: 5px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: papayawhip;
}

.input_slot_right input{
	margin: 5px;
	padding: 1px;
	font-size: 1.5rem;

	width: 100%;
	max-width: 300px;
}

.input_slot_central{
	align-self: center;
	grid-column-start: 1;
	grid-column-end: 3;
	text-align: center;

	/*	border:1px solid #000; */
	border-radius: 5px;
}

.input_block_4 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 6rem auto;
	grid-auto-rows: auto;

	width: 90%;
	height: 100%;
	margin: 0 auto;
}

.input_slot_central_4{
	align-self: center;
	grid-column-start: 1;
	grid-column-end: 4;
	text-align: left;

	/*	border:1px solid #000; */
	margin:15px 0;
	/*background-color: #0f9d58; */
	height: 100%;
	width: 100%;
}

.md_textarea {
	width: 100%;
	height: 50vh;
	box-sizing: border-box;
	padding: 10px;
}

.md_textarea_10vh {
	width: 100%;
	height: 10vh;
	box-sizing: border-box;
	padding: 10px;
}

.material-icons.md-3v {
	font-size: 2rem;
	color: #FB8C00;
	margin: auto;
}

.hlink {
	font-size: 1.5rem; 
}

.main_content_grid{
	width: 90%;
	margin-left: 200px;
	/*	border: 1px solid #F00; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 3fr;
}

.content_grid_cell{
	text-align: center;
	margin-top: 10px;
	font-size: 2vw;
	border: 1px solid #F00;
}

.content_grid_cell-span2{
	font-size: 2vw;
	grid-column: span 2;
}

/* Dashed border */
hr.dashed {
	border-top: 3px dashed #bbb;
}

/* Dotted border */
hr.dotted {
	border-top: 3px dotted #bbb;
}

/* Solid border */
hr.solid {
	border-top: 3px solid #bbb;
}

/* Rounded border */
hr.rounded {
	border-top: 8px solid #bbb;
	border-radius: 5px;
}

.table_list{
	border: 3px solid #000;
	border-collapse: collapse;
	overflow-x:auto;
}


.table_list td,th{
	border: 3px solid #000;
	margin: 0px;
	padding-left: 5px;
	padding-right: 5px;
}


.table_list tr:nth-child(even) {
	background: #DDD
}

.table_list tr:nth-child(odd) {
	background: #FFF
}

.emoji-popup {
	display: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	padding: 10px;
	z-index: 10;
}

.emoji-option {
	font-size: 20px;
	cursor: pointer;
	margin: 5px;
}

.emoji-option:hover {
	transform: scale(1.2);
}


.icon_btn {
        padding: 1px !important;
        width: 30px;
        margin: 3px !important;
}

input[type=checkbox] {
	width: 30px;
	height: 30px;
	accent-color: #445768;
}


button {
        margin: 5px;
        padding: 3px;
        font-size: 1.5rem;
        border-radius: 5px;
}

.btn-submit {
        font-size: 1.5rem;
        color: #000;
}

.error-text {
        color: red;
        font-size: 1rem;
}

.exe-button-style {
    font-size: 1rem;
    background-color: #FFAC49;
    border: 1px solid #FF7417;
    width: 100%;
    max-width: 200px;
    height: 5rem;
    border-radius: 10px;
    color: black; /* Text color */
    text-align: center; /* Text alignment */
    padding: 5px 0; /* Padding top/bottom 10px, left/right 0 */
    margin: 10px auto 10px auto;
}

.exe-button-style:hover {
    background-color: #FFD001;
}

.input_slot_right{
        display: flex;
        align-items: center;
}

.input_slot_right label{
        margin: 5px;
        font-size: 1.5rem;
}

.input_slot_right input{
        margin: 5px;
        padding: 1px;
        font-size: 1.5rem;
        border-radius: 5px;
        flex: 1;
        max-width: 300px;
}

/* Base layout style */
:root{
  --brand:#ff7a00;
  --brand-2:#ff8a2b;
  --brand-soft:rgba(255,122,0,.08);
  --text:#111827;
  --muted:#6b7280;
  --surface:#ffffff;
  --surface-muted:#f6f7f9;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --header-h:76px;
  --side-nav-w:240px;
}

html, body{
  margin:0;
  padding:0;
  background:#fff !important;
  color:var(--text);
  font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

#topbar.topnav{
  position:sticky;
  top:0;
  z-index:40;
  display:flex;
  align-items:center;
  width:100%;
  height:var(--header-h);
  margin:0;
  padding:0 20px 0 24px;
  background:#fff;
  border-bottom:1px solid var(--border);
  border-radius:0;
  box-shadow:0 4px 18px rgba(17,24,39,.04);
}

.page_title{
  flex:1;
  min-width:0;
  margin:0;
  padding:0;
  color:var(--text);
  font-size:1.55rem;
  font-weight:800;
  line-height:1.1;
  text-align:left;
}

.page_title::before{
  content:"";
  display:inline-block;
  width:10px;
  height:32px;
  margin-right:12px;
  border-radius:8px;
  background:var(--brand);
  vertical-align:middle;
}

.main-body{
  width:100%;
  min-height:calc(100vh - var(--header-h));
  margin:0;
  background:#fff !important;
  border:0 !important;
  border-radius:0;
  box-shadow:none !important;
}

.container{
  min-width:0;
  padding:16px 20px 0;
  background:#fff !important;
  border:0 !important;
  border-radius:0;
  box-shadow:none !important;
}

main,
footer{
  width:100%;
  max-width:1180px;
  padding:20px;
  margin-bottom:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow:var(--shadow);
  text-align:left;
}

footer p{
  margin:0;
  color:var(--muted);
}

.app-shell{
  width:100%;
  min-width:0;
}

.app-root{
  width:100%;
  min-width:0;
}

.side-nav{
  width:var(--side-nav-w);
  padding:40px 14px 12px;
  background:#fff;
  border:0 !important;
  border-right:1px solid var(--border) !important;
  box-shadow:none !important;
  text-align:left;
}

.nav__link{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  margin:4px 0;
  padding:12px;
  border-radius:8px;
  color:#374151;
  font-size:16px;
  font-weight:500;
  line-height:1.4;
  text-align:left;
  text-decoration:none;
  transition:background .15s, color .15s;
}

.nav__link .material-icons,
.nav__link .material-symbols-outlined{
  width:22px;
  min-width:22px;
  margin-right:0;
  text-align:center;
}

.nav__link span:not(.material-icons):not(.material-symbols-outlined){
  flex:1 1 auto;
}

.nav__link:hover{
  background:var(--surface-muted);
  color:#111827;
}

.nav__link--active{
  font-weight:600;
  background:var(--brand-soft);
  color:#111827;
}

.nav__link--active::before{
  content:"";
  position:absolute;
  left:-10px;
  top:8px;
  bottom:8px;
  width:4px;
  border-radius:8px;
  background:var(--brand);
}

hr.rounded{
  margin:12px 0;
  border:0;
  border-top:1px solid var(--border);
  border-radius:0;
}

.menu-btn{
  flex:0 0 80px;
  display:none;
  justify-content:flex-end;
  align-items:center;
  width:80px;
  height:var(--header-h);
  margin:0 0 0 auto;
  padding:0;
  border:0;
  background:transparent;
}

.menu-btn__burger{
  position:relative;
  width:50px;
  height:6px;
  background:var(--text);
  border-radius:5px;
}

.menu-btn__burger::before,
.menu-btn__burger::after{
  top:0;
  left:0;
  width:50px;
  height:6px;
  background:var(--text);
  border-radius:5px;
}

.menu-btn__burger::before{
  transform:translateY(-16px);
}

.menu-btn__burger::after{
  transform:translateY(16px);
}

.menu-btn.open .menu-btn__burger{
  background:transparent;
  box-shadow:none;
  transform:none;
}

.menu-btn.open .menu-btn__burger::before{
  transform:rotate(45deg);
}

.menu-btn.open .menu-btn__burger::after{
  transform:rotate(-45deg);
}

.menu-overlay{
  z-index:20;
  background:rgba(17,24,39,.35);
}

.side-nav--open{
  width:min(320px,80vw);
  box-shadow:14px 0 30px rgba(0,0,0,.18);
}

@media (max-width:768px){
  .side-nav{
    position:fixed;
    top:var(--header-h);
    left:0;
    z-index:30;
    width:min(320px,80vw);
    height:calc(100vh - var(--header-h));
    overflow-y:auto;
    border-right:0 !important;
    transform:translateX(-100%);
    transition:transform .3s;
  }

  .side-nav--open{
    transform:translateX(0);
  }

  .menu-btn{
    display:flex;
  }
}

@media (max-width:640px){
  .container{
    padding:12px 12px 0;
  }

  main,
  footer{
    padding:14px;
  }

  .page_title{
    font-size:1.15rem;
  }

  .page_title::before{
    width:8px;
    height:24px;
    margin-right:8px;
  }
}

.command-hub h2{
  margin:0 0 16px;
  color:var(--text);
  font-size:1.6rem;
  font-weight:800;
}

.command-hub__links{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}

.command-hub__link{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:84px;
  padding:16px;
  color:var(--text);
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow:var(--shadow);
  text-decoration:none;
  transition:border-color .15s, box-shadow .15s, transform .02s;
}

.command-hub__link:hover{
  border-color:var(--brand);
  box-shadow:0 12px 26px rgba(255,122,0,.16);
}

.command-hub__link:active{
  transform:translateY(1px);
}

.command-hub__link .material-icons{
  color:var(--brand);
  font-size:2rem;
}

.command-hub__link strong,
.command-hub__link small{
  display:block;
}

.command-hub__link strong{
  font-size:1.05rem;
}

.command-hub__link small{
  margin-top:4px;
  color:var(--muted);
  font-size:.88rem;
}

/* Authenticated personal-data editor */
.profile-wrapper{
  --profile-brand:#ff7a00;
  --profile-text:#111827;
  --profile-muted:#6b7280;
  --profile-border:#e5e7eb;
  width:100%;
  max-width:760px;
  margin:0 auto;
  padding:12px 0 28px;
  color:var(--profile-text);
  font-family:'Montserrat',Arial,sans-serif;
  text-align:left;
}

.profile-wrapper--narrow{max-width:540px}

.profile-title-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-bottom:18px;
}

.profile-logo{width:auto;height:76px}
.profile-title-row h1,.profile-card h1{margin:0;font-size:2.25rem}
.profile-title-row p{margin:5px 0 0;color:var(--profile-muted)}

.profile-card{
  height:auto;
  margin:0 0 18px;
  padding:24px;
  background:#fff;
  border:1px solid var(--profile-border);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.profile-card h2{margin:0 0 18px;font-size:1.45rem}
.profile-card h1{margin-bottom:14px}
.profile-form{height:auto}
.profile-field{margin-bottom:16px}
.profile-field label{display:block;margin-bottom:6px;font-weight:600}

.profile-field input{
  box-sizing:border-box;
  width:100%;
  height:48px;
  padding:0 12px;
  border:1px solid #d1d5db;
  border-radius:8px;
  background:#fff;
  color:var(--profile-text);
  font-size:17px;
}

.profile-field input[readonly]{background:#f6f7f9;color:var(--profile-muted)}
.profile-field small,.profile-help{display:block;margin-top:6px;color:var(--profile-muted);font-size:.92rem}
.profile-current-value{margin:0 0 8px}
.profile-help ul{margin:6px 0 0 20px;list-style:disc}
.profile-help li{padding:2px 0;border:0;list-style:disc}

.profile-button{
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:50px;
  margin-top:12px;
  padding:8px 14px;
  border:2px solid var(--profile-brand);
  border-radius:9px;
  font-size:17px;
  text-decoration:none;
  cursor:pointer;
}

.profile-button--primary{background:var(--profile-brand);color:#fff}
.profile-button--secondary{background:#fff;color:var(--profile-brand)}
.profile-errors{margin:8px 0;color:#b42318}
.profile-errors ul{margin:0;padding-left:20px;list-style:disc}
.profile-errors li{border:0;list-style:disc}

.profile-message{
  margin:0 0 16px;
  padding:12px 14px;
  border-radius:9px;
  background:#e8f7ee;
  color:#118a4e;
}

.profile-code-field input{
  height:52px;
  font-size:24px;
  letter-spacing:.25em;
  text-align:center;
}

.profile-confirm-logo{display:block;width:auto;height:76px;margin:0 auto 16px}
.profile-back-link{display:block;margin-top:18px;color:var(--profile-brand);text-align:center}

@media(max-width:640px){
  .profile-wrapper{max-width:94vw}
  .profile-card{padding:18px}
  .profile-title-row h1,.profile-card h1{font-size:1.8rem}
}
