@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px; /* Set base font size for consistency */
  height: 100vh;
  overflow: hidden;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
html,
body,
#root {
  height: 100dvh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.87);
  overflow: hidden;
}

.notistack-SnackbarContainer {
  position: fixed !important;
  bottom: 16px !important;
  right: 16px !important;
  z-index: 2147483647 !important;  /* max z-index */
}

/* And each snackbar inside it should also be visible */
.notistack-Snackbar {
  position: relative !important;
  transform: none !important;
  visibility: visible !important;
}

.ol-overlaycontainer-stopevent {
  position: relative;       /* create a new stacking context */
  z-index: 99999 !important;  /* > your panel’s z-index:100 */
}

/* 2) restore interactivity on the buttons */
.ol-zoom-in,
.ol-zoom-out {
  pointer-events: auto !important;
}

/* Make zoom controls dark-themed */
.ol-control {
	background-color: hsl(0, 0.00%, 1.20%) !important;
	border: 1px solid #333 !important;
	color: #f0f0f0 !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  z-index:  9999      !important;

  box-shadow: 0 2px 6px rgba(0,0,0,0.8)

}

.ol-zoom-in,
.ol-zoom-out {
	background-color: hsl(0, 0.00%, 1.20%) !important;
	color: #f0f0f0 !important;
  z-index:  9999      !important;

}

.ol-zoom {
	border-radius: 6px;
	overflow: hidden;
  z-index:  9999      !important;
}

@media (max-width: 600px) {
  .ol-zoom {
    top: 60px !important;
    scale: 0.75;
    z-index:  9999      !important;
  }
}

/* Existing styles remain unchanged */
.page-view {
	display: flex;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	flex-direction: column;
	transition: left 0.3s ease-in-out;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.page-content {
	flex: 1;
	overflow: auto; /* Ensure the dropdown isn't hidden */
}

/* Add this class for centering when loading */
.page-view.loading {
	justify-content: center;
	align-items: center;
	width: 100vw;
}

.page-content.center-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%; /* Ensure it takes the full screen height */
	width: 100%;
	overflow: hidden;
	overflow-x: hidden;
}

/* Additional existing styles */

.MuiSelect-root,
.MuiMenu-paper {
	z-index: 3000 !important; /* Adjust if necessary */
}


.page-content {
	scrollbar-width: thin;
	/* scrollbar-color: #a9a9a9 #f0f0f0; */
}

.page-content::-ms-scrollbar {
	width: 0.4rem;
}

.page-content::-ms-scrollbar-track {
	/* background: #f0f0f0; */
	border-radius: 0.5rem;
}

.page-content::-ms-scrollbar-thumb {
	/* background-color: #a9a9a9; */
	border-radius: 0.5rem;
	/* border: 0.1rem solid #f0f0f0; */
}
.custom-scroll {
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.custom-scroll::-webkit-scrollbar {
	width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

.app-layout {
    display: flex;
    flex-direction: row;
    height: 100%; /* Changed from 100vh */
    width: 100%; /* Changed from 100vw */
    position: relative;
    min-height: 0; /* Allow flex items to shrink */
    min-width: 0;
}


.content {
    display: flex;
    flex: 1;
    position: relative;
    overflow: hidden; /* Prevents overflow from causing layout issues */
}

.content-iframe {
    display: flex;
    flex: 1;
    position: relative;
    overflow-x: hidden; /* Change from overflow-x: hidden */
    min-height: 0; /* Allow flex items to shrink */
}

@media (max-width: 768px) {
    .app-layout {
        flex-direction: column;
    }


    /* .left-panel {
        width: 100%;
        height: 100%;
        position: static;
    } */

    /* .vertical-navbar {
        width: 100%;
        height: 5vh;
        flex-direction: row;
        justify-content: space-around;
    } */
}





/* .top-section{
    display: flex;
    flex-direction: row;
    height: 80%;
    position: relative;
}

.bottom-section{
    display: flex;
    flex-direction: row;
    height: 20%;
    width: 75%;
    z-index: 500;
    min-height: 190px;
} */
/* 
@media (max-width: 768px) {
    .top-section {
        width: 100vw;
    }

    .bottom-section{
        width: 100vw !important;
    }

} */

/* src/styles/Mesh.css */

.iframe-container {
    /* padding: 20px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: auto;
}

.mesh-paper {
    padding: 24px; /* Adjust padding as necessary */
    margin-top: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: auto;
}

.mesh-paper.no-shadow {
    box-shadow: none;
}

.mesh-title {
    font-weight: bold;
    margin-bottom: 16px; /* Adjust margin as necessary */
}

.mesh-grid {
    margin-bottom: 16px; /* Adjust margin as necessary */
}

.container-fluid {
    padding: 0 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-8 {
    width: 66.66666667%;
}

.col-md-offset-2 {
    margin-left: 16.66666667%;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-heading {
    height: 3.75em;
    padding: 0.5em 1em;
    line-height: 2.75em;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.flex-table {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
}

.flex-cell {
    flex: 1;
    padding: 0.5em;
    border: 1px solid #ddd;
}

.flex-header {
    background-color: #f5f5f5;
    font-weight: bold;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
}

.icon-button.stop {
    color: red;
}

.icon-button.play {
    color: green;
}

.service-name {
    flex: 3;
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.table {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 4px; /* Adjust padding */
    line-height: 1.6;
    border-top: 1px solid #ddd;
}

.table th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
    font-size: 0.75rem; /* Adjust font size */
}

.table thead th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.iframe-container {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.row {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-right: 14px;
    padding-left: 14px;
}

.row .MuiFormControl-root {
    width: auto;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.table {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 4px; /* Adjust padding */
    line-height: 1.6;
    border-top: 1px solid #ddd;
}

.table th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
    font-size: 0.75rem; /* Adjust font size */
}

.table thead th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.iframe-container {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: auto; /* Ensure scrollable */
}

.row {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    padding-right: 14px;
    padding-left: 14px;
}

.row .MuiFormControl-root {
    width: auto;
    height: 100vh;
}

.grid-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.summary-container {
    display: flex;
}

.summary-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* src/styles/Preflight.css */

.preflight-paper {
    padding: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: auto;
}

.preflight-title {
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center; /* Center the title for consistency */
}

.preflight-switch,
.preflight-textfield,
.preflight-textarea,
.preflight-customcomponent {
    margin-bottom: 16px !important;
    margin-top: 16px !important;
    width: 100%;
}

.preflight-customcomponent {
    justify-content: center;
    display: flex;
}
.preflight-fullwidth-customcomponent {
    margin-bottom: 16px !important;
    margin-top: 16px !important;
    width: 100%;
}

.preflight-table
 {
    padding-bottom: 16px;
    padding-top: 16px !important;
    width: 100%;
}

.MuiStepIcon-root {
    font-size: 1.6rem; /* Adjust as needed */
}

.preflight-button-group {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.back-button {
    align-self: flex-start;
}

.finish-button {
    align-self: flex-end;
}

.stepper-content {
    margin-top: 32px; /* Padding between stepper and content */
}

.step-content-padding {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.stepper-spacing {
    margin-bottom: 30px;
}

/* Add hover effect on buttons for better UX */
.preflight-button {
    transition: background-color 0.3s ease;
}

/* .preflight-button:hover {
    background-color: #3f51b5;
    color: #fff;
} */

/* Ensure that reusable step content is consistently padded */
.reusable-step-padding {
    padding-top: 20px; /* Top padding for each step */
}
/* src/styles/Preflight.css */

.preflight-typography {
    /* padding-bottom: 16px; */
    padding-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
    /* color: #333; */
}

/* Apply same padding rules as other input elements */
.preflight-typography-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}
/* src/styles/Preflight.css */

/* Informative paper styling */
.informative-paper {
    /* background-color: #f1f1f1 !important; */
    padding: 16px;
    margin-bottom: 16px !important;
    /* border-left: 4px solid #3f51b5; Accent border */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    white-space: pre-wrap; /* Ensure \n is treated as a line break */
}

.informative-paper2 {
    /* background-color: #f1f1f1 !important; */
    width: 50%;
    padding: 16px;
    margin-bottom: 16px !important;
    /* border-left: 4px solid #3f51b5;  */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    white-space: pre-wrap; /* Ensure \n is treated as a line break */
}


.checkbox-container {
    margin: 16px; /* Add space beneath each checkbox */
    display: flex;
    align-items: center;
}

.checkbox-label {
    margin-left: 8px; /* Add space between the checkbox and the label */
}

.checkbox-helper-text {
    margin-left: 40px; /* Align the helper text with the label */
    margin-top: 4px; /* Add a small gap above the helper text */
    display: block;
}


.checkbox-container.checkbox-error {
    border: 2px solid red;
    padding: 8px;
    border-radius: 4px;
}

.checkbox-error-text {
    color: red;
    margin-top: 4px;
}

/* Example: SvgStyles.css */
/* Adjust these to match your original SVG export exactly! */
#cd-animated-svg-pilot {
	display: block; /* remove inline‐svg whitespace */
	max-width: 100%;
	width: 100%;
	height: 100%;
	position: absolute;
}

.st0 {
	fill: none;
	stroke: #f0bc7d;
	stroke-width: 2;
	stroke-miterlimit: 10;
}

.st1 {
	fill: #ed1c24;
}

.st2 {
	fill: #1a1a1a;
}

.st3 {
	fill: #009245;
}

.st4 {
	fill: #f0bc7d;
	stroke: #f0bc7d;
	stroke-width: 2;
	stroke-miterlimit: 10;
}

.st5 {
	fill: #ff0000;
}

.st6 {
	fill: none;
	stroke: #000000;
	stroke-width: 10;
	stroke-miterlimit: 10;
}

#winddir,
#compass_ring {
	fill: #ffffff;
	stroke: #ffffff;
}

.st7 {
	fill: none;
	stroke: #009245;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke-dasharray: 4, 2;
}
.st8 {
	font-family: "Calibri-Bold";
}

.st9 {
	font-size: 44px;
}

.st10 {
	fill: none;
	stroke: #0071bc;
	stroke-width: 4;
	stroke-miterlimit: 10;
}

.st11 {
	fill: #0071bc;
}

.st12 {
	font-size: 50px;
}

.st13 {
	fill: none;
	stroke: #1a1a1a;
	stroke-width: 8;
	stroke-linecap: square;
	stroke-miterlimit: 10;
	stroke-dasharray: 10.3024, 69.0259;
}

.st14 {
	fill: #ffffff;
}

.st15 {
	display: none;
}

.st16 {
	display: none;
	fill: none;
	stroke: #000000;
	stroke-width: 4;
	stroke-miterlimit: 10;
}

.st17 {
	fill: #4d4d4d;
}

.st18 {
	fill: #1a1a1a;
	stroke: #1a1a1a;
	stroke-width: 4;
	stroke-miterlimit: 10;
}

.st19 {
	fill: #ff0000;
	stroke: #ff0000;
	stroke-miterlimit: 10;
}

.st20 {
	fill: #009245;
	stroke: #009245;
	stroke-miterlimit: 10;
}

.st21 {
	display: none;
	fill: #4d4d4d;
	stroke: #666666;
	stroke-width: 4;
	stroke-miterlimit: 10;
}

.st22 {
	fill: #0071bc;
	stroke: #000000;
	stroke-miterlimit: 10;
}

.st23 {
	display: inline;
}

.st24 {
	font-family: "MyriadPro-Regular";
}

.st25 {
	font-size: 32px;
}

.st26 {
	fill: #00bfff;
	stroke: #000000;
	stroke-miterlimit: 10;
}

.st27 {
	fill: #1e90ff;
	stroke: #000000;
	stroke-miterlimit: 10;
}

.st28 {
	fill: red;
}

.st29 {
	fill: #333333;
}

.st30 {
	fill: #1e90ff;
}

.st31 {
	fill: #fbd009;
}

/* If you also have classes like .svgText, .svgGreen, etc.: */
.svgText {
	fill: #fff;
	font-family: sans-serif;
	font-size: 36px;
}

.svgRed {
	fill: red;
	color: red;
}
.svgGreen {
	fill: green;
	color: green;
}
.svgBlack {
	fill: black;
	color: black;
}

.svgOrange {
	fill: #ffa500;
}

.svgFadedGray {
	fill: #aaa;
}

.svgText {
	font-weight: bold;
	fill: #f0bc7d;
	&.--rudAng {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
	}
	&.--rudPort {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		fill: #ed1c24;
	}
	&.--rudStbd {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		fill: #009245;
	}
	&.--rudText {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		fill: "#f0bc7d";
	}
	&.--trimText {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		fill: "#f0bc7d";

		text-orientation: upright;
	}
	&.--depthTargetText {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		text-orientation: upright;

		fill: #ecf0f1;
	}
	&.--depthActualText {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		text-orientation: upright;

		fill: #ecf0f1;
	}

	&[class*="--trimUq"],
	&[class*="--depthMinTxt"],
	&[class*="--trimLq"] {
		font-family: "Droid Sans", sans-serif;
		font-size: 2rem;
		font-weight: bold;
		fill: "#f0bc7d";

		text-orientation: upright;
	}
}
#depthMinTxt .svgText.--rudAng {
	font-family: "Droid Sans", sans-serif;
	font-size: 2rem;
	text-orientation: upright;

	fill: #ecf0f1;
}


/* .wavy {
	--mask:
	  radial-gradient(33.54px at 50% 40px,#000 99%,#0000 101%) calc(50% - 30px) 0/60px 100%,
	  radial-gradient(33.54px at 50% -30px,#0000 99%,#000 101%) 50% 10px/60px 100% repeat-x;
	-webkit-mask: var(--mask);
			mask: var(--mask);
  } */

.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* parallax animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0%   { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}




.bottom-panel, .bottom-panel-status {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 👈 this centers the wrapped items */
	align-items: stretch; /* optional: keeps top alignment */
	color: white;
	width: 100%;
	height: 100%;
}
@media (max-width: 800px) {
	.bottom-panel {
	  justify-content: center; /* or center, as needed */
	  /* scale: 0.9 */
	}
	.ballast-and-bilge-parent{
		/* flex-wrap: wrap; */
		align-content: center;
	}
	#telemetry{
		/* scale:0.8; */
		/* gap: 1rem; */
	}
	.mission-column{
		scale: 0.9;
	}
	.mission-column-card{
		padding: 2px;
	}
}
@media (max-width: 700px) {
	.depth-row.emergency {
	  gap: 1rem;
	}
	.left-panel-grid{
		/* scale:0.8; */
		width: 300px !important;
		min-width: unset !important;
	}
	.left-panel{
		min-width: unset !important;
	}
	.header-and-mission{
		min-width: unset !important;
		font-size: 0.4rem !important;
	}




	#boat-svg-parent, #boat-svg-background{
		scale: 0.8;
	}
	#boat-svg-background{
		transform: translate(-65%, -80%) !important;
	}
	#cd-animated-svg-pilot {
		overflow: visible;
	}
}

@media (max-width: 500px) {
	#boat-svg-parent, #boat-svg-background{
		scale: unset !important;
	}
	#boat-svg-background{
		transform: translate(-50%, -65%) !important;
	}
	#telemetry{
		scale: unset;
		gap: 1rem;
	}
	.bottom-panel {
		justify-content: center; /* or center, as needed */
		scale: unset
	}
}

.left-side {
	/* flex: 1 1 300px; shrink to fit content */

	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	height: 100%;
	width: 100%;
}

.right-side {
	flex: 1 1 300px; /* shrink to fit content */
	/* max-width: 150px; optional cap */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}


.data-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* margin-bottom: 0.75rem; */
	text-align: center;
	height: 100%;
	width: 100%;
    justify-content: space-around;
}

.label {
    font-size: 0.75em;
    color: #f0bc7d;
	/* margin-bottom: 0.3rem; */
}

.sub-label {
    font-size: 0.75em;
    color: rgb(165, 165, 165);
    display: inline;
	white-space: nowrap; 
}

.value {
	font-size: 0.8rem;
}

.depth-row {
	display: flex;
	justify-content: space-between;

	gap: 0.5rem;
}

.ballast-pair-row {
	display: flex;
	gap: 6px;
}
.ballast-pair-row-bottom {
	display: flex;
	gap: 6px;
}

.ballast-pair-row > *, .ballast-pair-row-bottom > * {
	flex: 1;
}



.depth-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* width: fit-content; */
}
.status-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 0.5em 1em;
	width: 100%;
}
:root,
:host {
  --ol-background-color: white;
  --ol-accent-background-color: #F5F5F5;
  --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
  --ol-partial-background-color: rgba(255, 255, 255, 0.75);
  --ol-foreground-color: #333333;
  --ol-subtle-foreground-color: #666666;
  --ol-brand-color: #00AAFF;
}

.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid var(--ol-background-color);
  background-color: var(--ol-partial-background-color);
}

.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}

.ol-scale-line {
  background: var(--ol-partial-background-color);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}

.ol-scale-line-inner {
  border: 1px solid var(--ol-subtle-foreground-color);
  border-top: none;
  color: var(--ol-foreground-color);
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}

.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.ol-scale-bar-inner {
  display: flex;
}

.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: var(--ol-foreground-color);
  float: right;
  z-index: 10;
}

.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 10px;
  z-index: 11;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
}

.ol-scale-text {
  position: absolute;
  font-size: 12px;
  text-align: center;
  bottom: 25px;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
}

.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid var(--ol-foreground-color);
}

.ol-scale-singlebar-even {
  background-color: var(--ol-subtle-foreground-color);
}

.ol-scale-singlebar-odd {
  background-color: var(--ol-background-color);
}

.ol-unsupported {
  display: none;
}

.ol-viewport,
.ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ol-viewport canvas {
  all: unset;
  overflow: hidden;
}

.ol-viewport {
  touch-action: pan-x pan-y;
}

.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.ol-grabbing {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.ol-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.ol-control {
  position: absolute;
  background-color: var(--ol-subtle-background-color);
  border-radius: 4px;
}

.ol-zoom {
  top: .5em;
  left: .5em;
}

.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}

.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}

.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}

.ol-full-screen {
  right: .5em;
  top: .5em;
}

.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: var(--ol-background-color);
  border: none;
  border-radius: 2px;
}

.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}

.ol-zoom-extent button {
  line-height: 1.4em;
}

.ol-compass {
  display: block;
  font-weight: normal;
  will-change: transform;
}

.ol-touch .ol-control button {
  font-size: 1.5em;
}

.ol-touch .ol-zoom-extent {
  top: 5.5em;
}

.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  outline: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
}

.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}

.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}

.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
}

.ol-attribution a {
  color: var(--ol-subtle-foreground-color);
  text-decoration: none;
}

.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: var(--ol-foreground-color);
  text-shadow: 0 0 2px var(--ol-background-color);
  font-size: 12px;
}

.ol-attribution li {
  display: inline;
  list-style: none;
}

.ol-attribution li:not(:last-child):after {
  content: " ";
}

.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}

.ol-attribution button {
  flex-shrink: 0;
}

.ol-attribution.ol-collapsed ul {
  display: none;
}

.ol-attribution:not(.ol-collapsed) {
  background: var(--ol-partial-background-color);
}

.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}

.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}

.ol-attribution.ol-uncollapsible button {
  display: none;
}

.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}

.ol-zoomslider button {
  position: relative;
  height: 10px;
}

.ol-touch .ol-zoomslider {
  top: 5.5em;
}

.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}

.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}

.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}

.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid var(--ol-subtle-foreground-color);
  height: 150px;
  width: 150px;
}

.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 0;
  left: 0;
  position: absolute;
}

.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}

.ol-overviewmap:not(.ol-collapsed) {
  background: var(--ol-subtle-background-color);
}

.ol-overviewmap-box {
  border: 1.5px dotted var(--ol-subtle-foreground-color);
}

.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

.map-component {
	width: 100%;
	height: 100%;
	z-index: 1; /* Behind the panel */
	/* position: absolute; Position relative to parent */
	background-color: cadetblue;
	/* right: 0;
	left: 0; */
}

.deck-tooltip {
  position: absolute;
  /* pointer-events: auto; */
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.8em;
  color: #000;
  z-index: 9999999;
  white-space: nowrap;
}

.weatherlayers-timeline-control {
  left: 40px !important;
  right: auto !important;
  position: absolute;
  z-index: 7000;
}

/* src/styles/LocationDisplay.css */
.location-display {
	/* margin-top: 5%; */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
}


.location-display {
    display: flex;
    align-items: center;
	justify-content: center;
}

.icon {
    margin-right: 4px; /* Adjust the margin value as needed */
	min-width: 16px; 
}

.location-display p {
	margin: 5px 0;
}
