/* Global styles for layout */
.rubus-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Main content area */
.rubus-content {
  display: flex;
  justify-content: center;
  height: 100vh;
  background-color: #f4f7fa;
  overflow: hidden;
}

/* Flexbox container for the main content */
.rubus-row {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.rubus-column-left,
.rubus-column-right {
  flex: 1 1;
  box-sizing: border-box;
  height: 100vh;
  overflow: hidden;
}

/* Left Column - Image Section */
.rubus-column-left {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
}

.rubus-company-name {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.rubus-company-name img {
  max-width: 150px;
  height: auto;
}

.rubus-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 800px;
}

.rubus-illustration img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* Right Column - Login Form Section */
.rubus-column-right {
  background-color: #d7e4ef;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Login Container Styling */
.rubus-login-container {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 40px;
  background: #ffffff;
  width: 100%;
  max-width: 450px;
  background-image: linear-gradient(to top, #00519a, #fff);
}

.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo-container img {
  max-width: 120px;
  height: auto;
}

/* Form styling */
.rubus-login-container .ant-form-item {
  margin-bottom: 20px;
}

.rubus-login-container .ant-input,
.rubus-login-container .ant-input-password {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
}

.rubus-login-container .ant-btn {
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
}

/* Footer Styling */
.rubus-footer {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #155fa2;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  text-align: center;
  border-top-left-radius: 8px;
  z-index: 100;
}

.rubus-footer p {
  margin: 0;
}

/* Ensure body has no margin */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* ============================================ */
/* RESPONSIVE DESIGN - Mobile First Approach */
/* ============================================ */

/* Extra Small Devices (Portrait Phones, 0-576px) */
@media (max-width: 576px) {
  .rubus-column-left {
    display: none; /* Hide illustration on small phones */
  }

  .rubus-column-right {
    width: 100%;
    padding: 20px 15px;
    background-color: #f4f7fa;
  }

  .rubus-login-container {
    padding: 30px 20px;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .logo-container img {
    max-width: 110px;
  }

  .rubus-login-container h3 {
    font-size: 20px !important;
  }

  .rubus-login-container h4 {
    font-size: 16px !important;
  }

  .rubus-login-container p {
    font-size: 14px;
  }

  .rubus-login-container .ant-input,
  .rubus-login-container .ant-input-password {
    padding: 10px 12px;
    font-size: 14px;
  }

  .rubus-login-container .ant-btn {
    height: 44px;
    font-size: 15px;
  }

  .rubus-footer {
    padding: 6px 12px;
    font-size: 11px;
    border-top-left-radius: 6px;
  }
}

/* Small Devices (Landscape Phones, 576px-768px) */
@media (min-width: 576px) and (max-width: 768px) {
  .rubus-column-left {
    display: none; /* Hide illustration on landscape phones */
  }

  .rubus-column-right {
    width: 100%;
    padding: 30px 20px;
    background-color: #f4f7fa;
  }

  .rubus-login-container {
    padding: 35px 30px;
    max-width: 420px;
  }

  .logo-container img {
    max-width: 130px;
  }

  .rubus-login-container h3 {
    font-size: 22px !important;
  }

  .rubus-login-container h4 {
    font-size: 17px !important;
  }

  .rubus-login-container .ant-input,
  .rubus-login-container .ant-input-password {
    padding: 11px 14px;
    font-size: 15px;
  }

  .rubus-login-container .ant-btn {
    height: 46px;
    font-size: 15px;
  }

  .rubus-footer {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* Medium Devices (Tablets, 768px-992px) */
@media (min-width: 768px) and (max-width: 992px) {
  .rubus-column-left {
    flex: 0.8 1;
    padding: 30px;
  }

  .rubus-column-right {
    flex: 1.2 1;
    padding: 30px 20px;
  }

  .rubus-company-name {
    top: 20px;
    left: 20px;
  }

  .rubus-company-name img {
    max-width: 120px;
  }

  .rubus-illustration img {
    max-width: 500px;
  }

  .rubus-login-container {
    padding: 35px;
    max-width: 400px;
  }

  .logo-container img {
    max-width: 150px;
  }

  .rubus-login-container h3 {
    font-size: 24px !important;
  }

  .rubus-login-container h4 {
    font-size: 18px !important;
  }
}

/* Large Devices (iPads, Small Desktops, 992px-1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .rubus-column-left {
    flex: 1 1;
    padding: 35px;
  }

  .rubus-column-right {
    flex: 1 1;
    padding: 35px 25px;
  }

  .rubus-company-name img {
    max-width: 130px;
  }

  .rubus-illustration img {
    max-width: 600px;
  }

  .rubus-login-container {
    padding: 38px;
    max-width: 430px;
  }

  .logo-container img {
    max-width: 180px;
  }
}

/* Extra Large Devices (Desktops, 1200px+) */
@media (min-width: 1200px) {
  .rubus-column-left {
    flex: 1.2 1;
    padding: 40px;
  }

  .rubus-column-right {
    flex: 0.8 1;
    padding: 40px 30px;
  }

  .rubus-company-name img {
    max-width: 150px;
  }

  .rubus-illustration img {
    max-width: 700px;
  }

  .rubus-login-container {
    padding: 40px;
    max-width: 450px;
  }

  .logo-container img {
    max-width: 200px;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .rubus-column-left {
    padding: 20px;
  }

  .rubus-company-name {
    top: 15px;
    left: 15px;
  }

  .rubus-company-name img {
    max-width: 100px;
  }

  .rubus-login-container {
    padding: 25px;
  }

  .logo-container {
    margin-bottom: 15px;
  }

  .rubus-login-container h3 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .rubus-login-container h4 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .rubus-login-container p {
    margin-bottom: 15px !important;
  }

  .rubus-login-container .ant-form-item {
    margin-bottom: 12px;
  }

  .rubus-login-container .ant-input,
  .rubus-login-container .ant-input-password {
    padding: 8px 12px;
  }

  .rubus-login-container .ant-btn {
    height: 40px;
  }
}

/* iPad Pro Portrait (1024px x 1366px) */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .rubus-column-left,
  .rubus-column-right {
    flex: 1 1;
  }

  .rubus-login-container {
    max-width: 450px;
    padding: 40px;
  }
}

/* iPad Pro Landscape (1366px x 1024px) */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .rubus-column-left {
    flex: 1.3 1;
  }

  .rubus-column-right {
    flex: 0.7 1;
  }

  .rubus-login-container {
    max-width: 420px;
  }
}

/* Touch-friendly enhancements for tablets and mobile */
@media (max-width: 992px) {
  .rubus-login-container .ant-btn,
  .rubus-login-container .ant-input,
  .rubus-login-container .ant-input-password {
    min-height: 44px; /* Touch-friendly minimum size */
  }

  .rubus-login-container .ant-checkbox-wrapper {
    font-size: 15px;
  }
}

/* High DPI / Retina Display Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .rubus-illustration img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .logo-container img,
  .rubus-company-name img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print Styles */
@media print {
  .rubus-footer {
    display: none;
  }

  .rubus-column-left {
    display: none;
  }

  .rubus-column-right {
    background-color: white;
  }
}


.subSectionTitle {
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
}

.dataUploadForm {
    padding: 10px 20px;
    border-radius: 10px;
}


.sliderBackground {
  border-radius: 15px;
  padding: 5px 12px;
  margin-left: -40px;
  min-height: 50px;
}


.mode2 {
  width: 100%;
  min-height: 250px;
  padding: 50px;
  border-radius: 60px;
  display: inline-flex
}

.mode3 {
  width: 100%;
  min-height: 250px;
  padding: 50px;
  border-radius: 60px;

}

.radioDiv {
  padding: 10px;
}

.status {
  width: 100%;
  height: 25px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 8px;
}

.start {
  background-color: green;
}

.stop {
  background-color: red;
}
.mode1 {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.sliderBackground {
  padding: 0 10px;
}
.map-container {
  flex: 1 1;
  height: 93vh;
  /* or any responsive height like 100% depending on parent layout */
  width: 100%;
  position: relative;
  background: #aad3df;
}

.leaflet-container {
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #aad3df;
}

.sidebar {
  width: 500px;
  padding: 16px;
  background: #aad3df;
  color: black;
   box-sizing: border-box;
    /* width: 80vw; */
  /* overflow-y: auto; */
  height: 100vh;
  /* position: absolute; */
  /* top: 0;
  right: 0; */
  /* z-index: 999; */
  /* box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); */
}

.sidebarLeft {
  /* width: 8vw; */
  background-color: #aad3df;
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: 998; */
  height: 100vh;
  color: black;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  /* overflow-y: auto; */
  box-sizing: border-box;
    background: #aad3df;
    font-weight: bold;
    width: 20vw;
}

.AppMap {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}.my-div-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-div-image {
  display: inline-block;
}

.circle-css {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
.App {
    display: flex;
    text-align: center;
  }
  
  .App-logo {
    height: 40vmin;
    pointer-events: none;
  }
  
  @media (prefers-reduced-motion: no-preference) {
    .App-logo {
      animation: App-logo-spin infinite 20s linear;
    }
  }
  
  .App-header {
    background-color: #282c34;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .App-link {
    color: #61dafb;
  }
  
  @keyframes App-logo-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .leaflet-container {
    width: 80vw;
    height: 100vh;
    z-index: 0;
  }
  .sidebarLeft{
    box-sizing: border-box;
    background: #aad3df;
    font-weight: bold;
    width: 20vw;
  }
  .sidebarRight{
    width: 80vw;
    height: 100vh;
  }
  .sidebar {
    box-sizing: border-box;
    width: 80vw;
    background: #aad3df;
  }
  
  .sidebar h2,
  .sidebar p,
  .sidebar ul {
    text-align: left;
  }
  
  .sidebar h2 {
    margin-top: 0;
  }
  
  .sidebar button {
    width: 100%;
    font-weight: bold;
    padding: .8em 1em;
  }
  .circle-css{
    height: 12px;
    width: 12px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
  }
.App {
  font-family: sans-serif;
  text-align: center;
}

.ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: transparent !important;
}

.basictable tr {
  background-color: #011931 !important;
  color: black !important;
  text-align: left !important;
}

.basictable th {
  color: white !important;
  font-weight: bold !important;
  text-align: center !important;
}

.basictable th {
  background-color: #aaaaaa !important;
  font-weight: bold !important;
}

.basictable tbody tr:hover td {
  background-color: #dedede !important;
  cursor: pointer;
  color: black !important;
}

.basictable tr:nth-child(even) {
  background: #d9d9d9 !important;
}

.basictable tr:nth-child(odd) {
  background: #efefef !important;
}
.rowContents {
  border: solid #bbb 1px;
  padding: 10px 5px 10px 10px;
  width: 40%;
  margin: 10px;
}

.innerdiv {
  padding: 10px 0 10px 50px;
  background: #fff
}

.selectdiv {
  width: 350px;
  padding: 10px 0 0 20px;
  margin-left: 20px
}

.editInputs {
  width: 100%;
  padding: 4px 11px;
  background-color: #fff;
  height: 32px;


}

.basictable tr {
  background-color: #011931 !important;
  color: black !important;
  text-align: center !important;
}

.basictable th {
  color: white !important;
  font-weight: bold !important;
  text-align: center !important;
}

.basictable th {
  background-color: #214972 !important;
  font-weight: bold !important;
}

.basictable tbody tr:hover td {
  background-color: #dedede !important;
  cursor: pointer;
  color: black !important;
}

.basictable tr:nth-child(even) {
  background: #7a8793 !important;
}

.basictable tr:nth-child(odd) {
  background: #bdc0c2 !important;
}

.Scroll {
  width: 104%;
  height: 69vh;
  overflow: scroll;
  scrollbar-color: orange;
  scrollbar-width: thin;
}


.typing-indicator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 0.3rem;
    border-radius: 1rem;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    width: 40px;
    text-align: left;
}

.typing-indicator-container.visible {
    opacity: 1;
}

.typing-indicator-container.hidden {
    opacity: 0;
}

.typing-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0b0a0a;
    margin: 0 1px;
    animation: typing-indicator-bounce 1.2s infinite ease-in-out;
}

.typing-indicator-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-indicator-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }
}

.antdcollapsed-button {
    position: absolute;
    inset-block-start: 18px;
    z-index: 101;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 40px;
    inset-inline-end: -13px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(22, 48, 70);
    background-color: #ffffff;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(25, 15, 15, 0.07), 0 0 1px 0 rgba(0, 0, 0, 0.08);
}

.debugMode {
    display: flex;
    text-align: center;
    margin: 8px;
    padding: 2px;
    border: 4px solid #d0d0d0;
    border-radius: 32px;
    justify-content: center;
    background-color: #bdbdbd;
}
.colRunning {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colRunning:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.colStopped {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colStopped:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.colDamaged {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colDamaged:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.colIdle {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colIdle:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.running {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 92%;
  height: 0;
  background-repeat: no-repeat;
}

.idle {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 92%;
  height: 0;
  background-repeat: no-repeat;
}

.stop123 {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 92%;
  height: 0;
  background-repeat: no-repeat;
}

.rectangle {
  height: 50px;
  width: 100px;
}

.damaged {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 100%;
  height: 0;
  background-repeat: no-repeat;
}

.titleStyling {
  text-align: center;
}

.gutter-box {
  border: 2px solid #e8e8e8;
  text-align: center;
  height: 100px;
  margin: 5px;
  box-shadow: 5px 5px #bfbfbf;
}

.gutterTitle {
  text-align: center;
}

.tphhead {
  color: black;
  font-weight: bold;
  text-align: center;

  border-bottom: 1px dotted black;
  margin-bottom: 10px;
}

.tphBox {
  border: 1px dotted black;
  font-weight: bold;
  text-align: center;
}

.defaultCover {
  background-image: url(http://www.rubusdigital.com/wp-content/uploads/2020/01/home-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 960px;

}


.background {
  height: 10px;
  margin: 10px 22px;
  width: 100%;
}
.colRunning {
    border: '1px solid red';
    margin: '5px';
    padding: '5px';
    border-radius: '10px';
    box-shadow: '5px 5px 30px black';
   }
   .colRunning:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 50px black;
   }
   .colStopped {
    border: '1px solid red';
    margin: '5px';
    padding: '5px';
    border-radius: '10px';
    box-shadow: '5px 5px 30px black';
   }
   .colStopped:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 50px black;
   }
   .colDamaged {
    border: '1px solid red';
    margin: '5px';
    padding: '5px';
    border-radius: '10px';
    box-shadow: '5px 5px 30px black';
   }
   .colDamaged:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 50px black;
   }
   .colIdle {
    border: '1px solid red';
    margin: '5px';
    padding: '5px';
    border-radius: '10px';
    box-shadow: '5px 5px 30px black';
   }
   .colIdle:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 50px black;
   }
   .running {
    background-image: url(/static/media/crane4.7658af12d2205410619d.png);
    background-size: 100%;
    padding-top: 100%;
    height: 0;
    background-repeat: no-repeat;
   }
   .idle {
    background-image: url(/static/media/crane1.f1f90df47f89532177f6.png);
    background-size: 100%;
    padding-top: 100%;
    height: 0;
    background-repeat: no-repeat;
   }
   .stop {
    background-image: url(/static/media/crane3.97c1cde3c10aae88cff8.png);
    background-size: 100%;
    padding-top: 100%;
    height: 0;
    background-repeat: no-repeat;
   }
   .damaged {
    background-image: url(/static/media/crane2.323f5e2b38714399abd4.png);
    background-size: 100%;
    padding-top: 100%;
    height: 0;
    background-repeat: no-repeat;
   }
   .titleStyling {
    text-align: center;
   }
   .gutter-box {
    background-color: #8c8c8c;
    color: #e8e8e8;
    border: 2px solid #e8e8e8;
    text-align: center;
    height: 100px;
    margin: 5px;
    box-shadow: 5px 5px #bfbfbf;
   }
   .gutterTitle {
    color: #e8e8e8;
    text-align: center;
   }
   .tphhead {
    color: black;
    font-weight: bold;
    text-align: center;
   
    border-bottom: 1px dotted black;
    margin-bottom: 10px;
   }
   .tphBox {
    border: 1px dotted black;
    font-weight: bold;
    text-align: center;
   }
   .defaultCover{
       background-image: url(http://www.rubusdigital.com/wp-content/uploads/2020/01/home-banner.jpg);
       background-position: center center;
       background-repeat: no-repeat;
       background-size: cover;
       height:960px;
   
   }
.colRunning {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colRunning:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.colStopped {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colStopped:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.colDamaged {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colDamaged:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.colIdle {
  border: '1px solid red';
  margin: '5px';
  padding: '5px';
  border-radius: '10px';
  box-shadow: '5px 5px 30px black';
}

.colIdle:hover {
  transform: scale(1.02);
  box-shadow: 20px 20px 50px black;
}

.running {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 92%;
  height: 0;
  background-repeat: no-repeat;
}

.idle {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 92%;
  height: 0;
  background-repeat: no-repeat;
}

.stop123 {
  background-size: 100%;
  padding-top: 92%;
  height: 0;
  background-repeat: no-repeat;
}

.rectangle {
  height: 50px;
  width: 100px;
}

.damaged {
  background-image: url("/static/media/Landing%20page-metro%20image.042daabd6f342f85ba9b.png");
  background-size: 100%;
  padding-top: 100%;
  height: 0;
  background-repeat: no-repeat;
}

.titleStyling {
  text-align: center;
}

.gutter-box {
  border: 2px solid #e8e8e8;
  text-align: center;
  height: 100px;
  margin: 5px;
  box-shadow: 5px 5px #bfbfbf;
}

.gutterTitle {
  text-align: center;
}

.tphhead {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 1px dotted black;
}

.tphBox {
  border: 1px dotted black;
  font-weight: bold;
  text-align: center;
}

.defaultCover {
  background-image: url(http://www.rubusdigital.com/wp-content/uploads/2020/01/home-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 960px;

}

/* LEGEND */
.status-legend {
  padding: 10px;
  margin-bottom: 10px;
  background: #444;
}
.legend-item {
  display: flex;
  align-items: center;
}

/* ZONE TITLE */
.zone-title {
  text-align: left;
  font-size: 20px;
  margin: 20px 0 10px 10px;
  font-weight: bold;
  border-left: 5px solid #1890ff;
  padding-left: 10px;
}

/* DEVICE CONTAINER */
.device-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px;
}

/* DEVICE TILE */
.device-tile {
  width: 110px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: #444;
}
.device-tile:hover {
  transform: scale(1.05);
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.4);
}

.device-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
  
}

.device-image {
  width: 100%;
  padding-top: 92%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.flex-container {
    border: 2px solid transparent;
    width: 100%;
    height: 20%;
    align-items: center;
    display: flex;
    align-self: center;
    justify-content: center;
    margin-top: -23px;
    margin-bottom: -23px;
}

.flex-item {
    width: 18%;
    height: 60%;
    text-align: center;
    border: 1px solid #ccc;
}
.card {
    padding: 15px;
    background: rgba(20, 45, 70, 0.3);
    border-radius: 8px;
    border: none;
    box-shadow: 0px 2px 4px rgba(20, 40, 70, 0.15);
    color: white;
    overflow-y: scroll;
    max-height: 600px;
    max-width: 700px;
}

.description {
    margin-bottom: 15px;
    display: block;
    color: #fff;
}

.info {
    margin-right: 5px;
    color: #fff;
}

.payload {
    background-color: #444;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.loading-container {
    color: white;
    width: 500px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.trendsFields {
  font-weight: bold;
  margin-top: 6px;
}

.progressbarcircle {
  width: auto !important;
  height: 80% !important;
  display: flex;
  justify-content: center;
  align-items: center;

}

.progressbarline {
  width: auto !important;
  height: 80% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.cardContainer {
  width: 100%;
}

.deleteIcon {
  margin-top: 36px;
  color: #ff4d4f !important
}

.Resetbutton {
  background: #1a4c7e !important;
  color: #fafafa !important;
  font-weight: bold !important;

}

.SubmitButton {
  margin-top: 25px;
  margin-bottom: 10px;
  background: #1a4c7e !important;
  border: 1px solid white !important;
}

.uploadInput {
  float: right;
  
}

.formuploadInput {
  margin-top: 12%;
}

.downloadInput {
  float: left;
  margin-left: 35%;
  margin-Top: 5px;  
}



.deleteIcon {
  color: #ff4d4f !important
}

.notify {
  border-radius: 10px !important;
}

.p {
  margin: 0;
}


.deletebutton {
  color: #ff4d4f !important
}

.downloadFile {
  margin-left: 5px;
  background-color: #2a6dec;
  border-color: #2a6dec;
  color: white;
}

.uploadFile {
  background-color: #70c083;
  border-color: #70c083;
  color: white;
}


.customDividerHor {
  margin: 15px 0px;
}


.small {
  font: italic 13px sans-serif;
}

.heavy {
  font: bold 30px sans-serif;
}

.blink_text {
  animation-name: blinker;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.rotate_ON {
  animation: rotation 1s infinite linear;
  transform-box: fill-box;
  transform-origin: center;
}

.rotate_OFF {
  color: #fff;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes blinker {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

.Rrrrr {
  font: italic 40px serif;
  fill: red;
}

@keyframes move {
  0% {
    left: 0;
  }

  100% {
    left: 90%
  }
}

.move {
  animation-name: move;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.arrow_ON {
  animation: flash 2.5s infinite;
}

.arrow_OFF {
  display: none;
}

@keyframes move {
  0% {
    left: 0;
  }

  100% {
    left: 90%
  }
}

@keyframes left {
  0% {
    left: 90%
  }

  100% {
    left: 0%
  }
}

@keyframes top {
  0% {
    top: 90%;
  }

  100% {
    top: 0%
  }
}

@keyframes bottom {
  0% {
    top: 0%;
  }

  100% {
    top: 90%
  }
}

.sideLR_ON {
  animation-name: move;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.topTB_ON {
  animation-name: top;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.sideRL_ON {
  animation-name: left;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.topBT_ON {
  animation-name: bottom;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.sideLR_OFF {
  display: none;
}

.topTB_OFF {
  display: none;
}

.sideRL_OFF {
  display: none;
}

.topBT_OFF {
  display: none;
}

.normal {
  background-color: #bebebe;
  animation-direction: normal;
  opacity: 0.4;
  position: relative;
}

.reverse {
  background-color: #7f7fff;
  animation-direction: reverse;
}

.alternate {
  background-color: #7fffff;
  animation-direction: alternate;
}

.alternateReverse {
  background-color: #7fff7f;
  animation-direction: alternate-reverse;
}

p {
  margin: 0;
}

.blink {
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes blinker {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}
.headerdrag .editsettings {
  background-color: #353535;
  border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
}

.headerdrag:hover {
  background-color: #353535;
  border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
}

.headerdrag:hover .editsettings {
  display: block;
}

.test {
  float: "right";
  color: "white";
  margin-top: "-25px";
  cursor: "pointer";
}

.headerdrag {
  cursor: move;
  cursor: grab;
  cursor: -webkit-grab;
}

.headerdrag:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.progressbarcircles {
  width: 993px !important;
  height: 387px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progressbar {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progressbarline {
  width: 100% !important;
  height: 90% !important;
  position: relative;
}

.warning-placeholder {
  position: relative;
  z-index: 1;
  padding: 16px 16px;
  text-align: center;
  border-radius: 0 0 4px 4px;
}

.statusCounter {
  height: 70%;
  margin: 5px;
  border-radius: 8px;
}


.liquidgauge {
  width: 100%;
  height: 90%;
  float: left;
}

@media (max-width: 980px) {
  .liquidgauge {
    height: 200px;
  }
}

.root-chart {
  width: 100%;
  height: 90%;
  float: none;
}

#view-more {
  text-align: center;
  margin: 20px 0 80px 0;
}

.liquidgauge>div {
  height: 100% !important;
  width: 100% !important;
}
.onlineStatus {
  color: white;
  font-weight: bold;
  height: 50px;
  width: 200px;
  border-radius: 8px;
  background-color: green;
  text-align: center;
  float: right;
  padding: 5px;
  margin-right: 15px;
  margin-bottom: 5px;
}

.offlineStatus {
  color: white;
  font-weight: bold;
  height: 50px;
  width: 200px;
  float: right;
  border-radius: 8px;
  background-color: #ff7875;
  text-align: center;
  padding: 5px;
  margin-right: 15px;
  margin-bottom: 5px;

}

.headerForm {

  margin-bottom: 8px;
  border-radius: 6px;
  padding: 9px;
}


.footerCol {
  padding: 5px;
}

.norecords {
  color: #fff;
  background-color: darkgrey;
  text-align: center;
  
  font-weight: bold;
}

.warning_reports {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 16px 16px;
  text-align: center;
  border-radius: 0 0 4px 4px;
  border-radius: 8px;
}

.configure {
  
  color: gray;
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
}

.container {
  
  font-weight: bold;
}

.containerDiv {
  padding: 4px;
  border: 1px solid gray;
  min-height: 43px;
  text-align: center;
  background-color: #e4dfdf;
}

.mainContainer {
  margin-bottom: 15px;
}
.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top, width, height;
}
.react-grid-item img {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.react-grid-item.cssTransforms {
  transition-property: transform, width, height;
}
.react-grid-item.resizing {
  transition: none;
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item.react-grid-placeholder.placeholder-resizing {
  transition: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-resizable-hide > .react-resizable-handle {
  display: none;
}

.react-grid-item > .react-resizable-handle.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w,
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n,
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}


.spinner {
  display: flex;
  height: 800px;
  justify-content: center;
  align-items: center;
}


.fileContainer {
  overflow: hidden;
  position: relative;
}

.fileContainer [type="file"] {
  cursor: inherit;
  display: block;
  filter: alpha(opacity=0);
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
}

.fileContainer {
  background: #ff4d4f;
  border-radius: 32px;
  float: left;
  padding: 0.5em;
  color: #ffffff;
  margin-left: 10px;
  width: 155px;
}

.fileContainer [type="file"] {
  cursor: pointer;
}


.counterGraph{
    justify-content:space-evenly ;
    color: #fff;
    position: absolute;
    margin-top: 3% ;
    margin-left: 25%;
}
.counterIcon{
display:flex;
justify-content: space-evenly ;
margin-top: 3% ;
margin-left: 15%;
}
.ecahrtCounterL{
width:100%;
height:400%;
}
.graphTag{
position: relative;
z-index: 2;
}
.rdrDateRangePickerWrapper.PreviewArea {
  z-index: 1;
  position: absolute;
  margin-left: -337px;
}

.datebutton {
  background-color: #121212;
  border: none;
  color: white;
  height: 38px;
  margin-right: 12px;
}

.drawerToggle {
  
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 52px;
  
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
  position: fixed;
}

.ImageName {
  display: flex;
  width: 215%;
  border-end-end-radius: 60px;
  border-start-end-radius: 60px;
  font-size: 25px;
  padding: 4%;
  margin-left: 9%;
}

.site-drawer-render-in-current-wrapper {
  position: relative;
  overflow: hidden;
}
.configDiv {
    border: 1px solid #595959;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    padding-top: 15px;

}

.configButton {
    float: right;
    margin: 0px 20px 20px;
}


.column-div {
    padding-left: 80px;
    padding-right: 80px;
}

.form-control {
    border: 0.5px solid #d9d9d9;
    margin-left: 30px;
    height: 30px;
}

.btn-link {
    height: 20px;
    margin-left: 20px;
}

.Open {
  background: #fffb8f !important;
}

.Approved {
  background: #bae637 !important;
}

.Waiting {
  background: #ffc069 !important;
}

.Rejected {
  background: #ff4d4f !important;
}

.Assigned {
  background: #87e8de !important;
}

.card-container {
  border: none;
}

.headerTitle {
  font-weight: bold;
  color: steelblue;
  
}

.subHeaderTitle {
  color: #8c8c8c;
}

.remarksHeading {
  color: white !important;
  font-weight: bold;

}

.remarksText {
  color: black !important;
  font-weight: bold;
}

.saveButton {
  background: #193652 !important;
  color: #fafafa !important;
  font-weight: bold !important;
}

.saveBatch {
  background: #36cfc9 !important;
  color: rgb(255, 255, 255) !important;
  font-weight: bold !important;
}

.deleteButton {
  background: #ff7875 !important;
  color: white !important;
  font-weight: bold !important;
  border-color: #ff7875 !important;
}

.adhocView {
  background: #1a3652 !important;
  padding: 40px;
}

.elogbookView {
  background: #d9d9d9;
}

.gridStyle {
  width: 25%;

  border: 2px solid #193652 !important;
  border-radius: 15px;
}

.elogBookUser {
  background: #193652 !important;
}

.subSectionTitle {
  background-color: #285c8e !important;
  color: #fff;
  font-weight: bold;

}

.subSecBody {
  border: 2px solid white !important;
}

.subSectionBody {

  border: 1px solid grey !important;
  background: #193652;
  margin: 10px 10px;
  padding: 10px;
  border-radius: 8px;
}

.mainHeader {
  margin-top: 30px;
  margin-bottom: 30px;
  color: black;
}

.formRowWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.inputItem {
  width: 300;
  font-weight: bold;
}

.subSectionFormBody {
  padding-right: 2em;
  padding: 5px 20px;
}

.subCollapseFormbody {
  margin: 20px 10px;
}

.iconStyle {
  color: #193652 !important;
}

.bodyCodeForm {
  margin: 10px 20px;
  background: #214972 !important;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  border-radius: 5px;
}


.customTable tr {
  background-color: #011931 !important;
  color: black !important;
  text-align: center !important;
}

.customTable th {
  color: white !important;
  font-weight: bold !important;
  text-align: center !important;
}

.customTable th {
  background-color: #285c8e !important;
  font-weight: bold !important;
}

.customTable tbody tr:hover td {
  background-color: #dedede !important;
  cursor: pointer;
  color: black !important;
}

.customTable tr:nth-child(even) {
  background: #7a8793 !important;
}

.customTable tr:nth-child(odd) {
  background: #bdc0c2 !important;
}

.AdhocCard {
  margin-top: 20px;
  background: #193652;
}

.cardTopBorder {
  background: white;
  border: 1px solid #bfbfbf;
  border-top: 6px solid steelblue;
  margin: 2px;
}

.cardView {
  border-radius: 15px 15px 15px;
}

.newLink {
  color: #9e1068;
  font-weight: bold;
}

.runningLink {
  color: red;
  font-weight: bold;
}

.completeLink {
  color: green;
  font-weight: bold;
}

.treeForFormWithMultiSubHeaderTable {
  color: white !important;
}

.picky {
  width: 100%;
  position: relative;
}
.picky * {
  box-sizing: border-box;
}
.picky__input {
  width: 100%;
  background-color: white;
  border: 0;
  border-width: 1px;
  border-color: #eee;
  border-style: solid;
  border-radius: 2px;
  padding: 5px;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  height: 38px;
}

.picky__input--disabled,
.picky__input--disabled + .picky__dropdown .option {
  color: rgb(95, 94, 94);
}
.picky__input::after {
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: '';
  right: 16px;
  top: 16px;
}
.picky__dropdown {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background: white;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  top: 39px;
}
.picky__dropdown .option,
.picky__dropdown li {
  list-style: none;
  background-color: white;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  padding: 0.5em;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.picky__dropdown .option:hover,
.picky__dropdown li:hover {
  background-color: #ecf0f1;
}
.picky__dropdown .option.selected,
.picky__dropdown li.selected {
  background-color: #ecf0f1;
}
.picky__dropdown .option:focus,
.picky__dropdown li:focus {
  outline: -webkit-focus-ring-color auto 5px !important;
}
.picky__dropdown .option input[type='checkbox'],
.picky__dropdown .option input[type='radio'],
.picky__dropdown li input[type='checkbox'],
.picky__dropdown li input[type='radio'] {
  margin-right: 3px;
}
.picky__filter {
  display: flex;
  width: 100%;
  padding: 3px;
}
.picky__filter__input {
  width: 100%;
  padding: 3px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  height: 30px;
}

.picky__placeholder {
  color: #595959;
}

.notifyicons .anticon svg {
  margin-top: -5px !important;
}
.claude-question-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 24px;
    width: 80%;
    border: 1px dashed #9f9f9f;
}

.page-header {
    margin-bottom: 24px;
}

.page-title {
    color: #1890ff;
    margin-bottom: 8px;
}

.page-description {
    
    color: #a0a0a0;
}

.question-area {
    background-color: #0b2640;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.question-text {
    
    font-weight: 1000;
    margin-bottom: 10px;
    color: white;
}

.input-area {
    margin-bottom: 14px;
}

.submit-button {
    width: 100%;
}

.response-area {
    background-color: #003a8c;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
}

.response-header {
    
    font-weight: 500;
    margin-bottom: 16px;
    color: #1890ff;
}

.response-content {
    
    white-space: pre-wrap;
    color: #ffffff;
}

.error-message {
    color: #ff4d4f;
    margin-top: 16px;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

@media (max-width: 576px) {
    .claude-question-container {
        padding: 16px;
    }
}

.option-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* Spacing between boxes */
}

.optionbox {
    /* flex: 1 1 200px; */
    /* Grow, shrink, and base width */
    min-width: 50px;
    min-height: 40px;
    /* Fixed height, adjust as needed */
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .optionbox {
        flex-basis: 100%;
        /* Full width on small screens */
    }
}

.customSelectOption {
    /* margin: 8px 8px; */
    background: #1a3652;
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    /* font-weight: bold;
     */
     
}

.detailsDiv {
    margin: 10px 0px 10px 0px;
    border: 1px dashed grey;
    padding: 20px;
    color: white;
    
    background: #0b2640;
}

.detailsTitle {
    color: #ffab0f;
    font-weight: bold;
}

.containerDynamicGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 0px;
}

.item {
    flex-basis: calc(49% - 8px);
    padding: 5px 16px;
    background-color: #ffab0f;
    border: 1px solid #dfdfdf;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    
}

.highlighted {
    background-color: #ffff99;
}

@media (max-width: 600px) {
    .item {
        flex-basis: 100%;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-text {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}
.submitFooter {
	padding: 13px 0px 0px 0px;
	cursor: pointer;
	color: #ffab0f;
	font-weight: bold;
	border-top: 1px dashed #ffab0f;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.markdown-content th,
.markdown-content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.markdown-content th {
    background-color: #0b2640;
}

.markdown-content tr:nth-child(even) {
    background: #1a3652;
}
.markdown-content tr:hover {
    background-color: #1a3652;
}


.notify {
    border-radius: 10px !important;
}




.edgeDiv {
  width: 80%;
  margin-top: 3%;
}

.buttonCss {
  margin-left: "20%";
  font-weight: bold !important;
}

.iconCss {
  font-weight: bold !important;
}

.getFileName {
  height: 150px;
  padding: 16px 0px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px dashed #d9d9d9;
}

.getFileName:hover {
  border: 1px dashed;
}

.ptext {
  margin: 15px;
  
}
.edgeDiv {
  width: 80%;
  margin-top: 3%;
}

.buttonCss {
  margin-left: "20%";
  font-weight: bold !important;
}

.iconCss {
  font-weight: bold !important;
}

.getFileName {
  height: 150px;
  padding: 16px 0px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px dashed #d9d9d9;
}

.getFileName:hover {
  border: 1px dashed;
}

.ptext {
  margin: 15px;
  
}
.headerCSS {
    
    font-weight: bold;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}



.Register {
  color: #1890ff !important;
  border-color: #1890ff !important;
  background: #fff !important;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}

.card-container p {
  margin: 0;
}

.code-box-demo {
  padding: 24px;
  overflow: hidden;
  background: #f5f5f5;
}





@media (min-width: 800px) {
  .Answers_Form {
    min-width: 800px;
  }
}


/*# sourceMappingURL=main.9f4b342d.css.map*/