.terminal * {
	word-break: break-all;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
    color: white;
	font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    font-size: 16px;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 4px;
	height: 4px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(145deg, #1c2533, #2b3c4d);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #547ca3, #6b96c4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #88c5ff, #b0dfff);
}
::-webkit-scrollbar-corner {
    background: linear-gradient(145deg, #1c2533, #2b3c4d);
}

hr {
	margin-top: 7px;
	margin-bottom: 7px;
}

.terminal {
	font-family: 'Cascadia Code', monospace;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 20px;   
	transition: filter 0.4s ease-in;
	filter: blur(0px);
}

.terminal-anim {
	transform: scale(1.2);   /* Start scaled down */
    transition: transform 0.4s ease-in, transform-origin 0.4s ease-in, opacity 0.4s ease-in, filter 0.4s ease-in;  /* Zoom effect with duration and easing */
	transform-origin: -3% -3%;
    opacity: 0;
	filter: blur(4px);
}

.terminal-anim1 {
    transform: scale(0.95);
	transform-origin: 2% 2%;
    opacity: 1;
}

.terminal-anim2 {
    transform: scale(1);
	transform-origin: 0% 0%;
}	

.input-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.input {
    position: relative;
}

.prompt {
    color: 	#00D0FF;
}

.getval {
    color: 	magenta;
}

.title {
    color: 	#00D0FF;
}

.info {
    color: 	#F0F;
}

.warn {
    color: 	yellow;
}

.error {
    color: 	red;
}

.success {
    color: 	lawngreen;
}

.high {
    color: 	cyan;
}

.countdown {
  color: violet;
  background-color: #222;
  padding: 0px 4px;
  border-radius: 4px;
}

.highlight {
  color: cyan;
  background-color: #222;
  padding: 2px 4px;
  border-radius: 4px;
}

.cep-button {
  width: 20px;
  height: 20px;
  border: none;
  background-color: transparent;
  position: relative;
  float: right;
  opacity: 0;
  right: 50px;
  margin-left: 4px;
  margin-right: 4px;
  margin-top: -1px;
  margin-bottom: -4px;
  transition: scale 0.3s ease-in-out, opacity 0.2s ease-in-out, right 0.2s ease-in-out;
}

.cep-button:hover,
.cep-button[aria-expanded="true"] {
  transform: scale(1.1);
}

.cep-button .cep {
  fill: #00D0FF;
  height: 20px;
  width: 20px;
}

.exit-code-S  { border-color: #0F0; }
.exit-code-F  { border-color: red; }
.exit-code-W  { border-color: yellow; }
.exit-code-N  { border-color: aqua; }

.hidden {
    opacity: 0 !important;
}

.hide {
    display: none !important;
}

input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: inherit;
    font-size: inherit;
    flex-grow: 0.97;
}

.output {
	overflow-y: auto;
    white-space: pre-wrap;
    display: flex;
    flex-direction: column;
}

.output::-webkit-scrollbar {
    width: 4px;
	height: 4px;
}

.output::-webkit-scrollbar-track {
    background: #111;
	border-radius: 10px;
}

.output::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.output::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.controls {
	position: absolute;
    background-color: #111;
    height: 34px;
    top: 10px;
    right: 10px;
    padding: 5px;
    border-radius: 7px;
	display: flex;
    justify-content: space-between;
    align-items: center;
	z-index: 1;
}

.controls.move {
	border: 2px solid transparent;
}

.controls-anim {
	top: -30px;
    transition: top 0.4s ease-in, opacity 0.4s ease-in;
    opacity: 0;
}

.controls-anim1 {
    top: 20px;
    opacity: 1;
}

.controls-anim2 {
    top: 10px;
}	

.controls button {
	width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
	transition: scale 0.3s ease-in-out, opacity 0.3s ease-in-out;
    margin: 0px 0px 0px 4px;
}

.controls button:not(.hide) {
    align-items: center;
    display: flex;
    justify-content: center;
}

.controls div {
	display: flex;
    margin: 0px 2px 0px 4px;
}

.controls button + .disabled {
    opacity: 0.5;
    cursor: progress;
}

.controls button:hover {
	transform: scale(1.1);
}

.controls button + .disabled:hover {
	transform: scale(1);
}

#con-restart svg {
	transition: transform 0.5s, fill 0.1s;
	transform: rotateX(180deg);
}

#con-refresh svg {
	transition: fill 0.1s;
	transform: rotateX(180deg);
}

#con-refresh svg path {
	transition: transform 0.8s;
	transform-origin: center;
	transform: rotate(-75deg);
}

#con-run-stop:hover svg path {
	stroke: #339CFF;
}

#con-run-stop:hover svg rect {
	stroke: #ff5220;
}

#con-up:not(.disabled):hover svg {
	stroke: #FF31cd;
}

#con-down:not(.disabled):hover svg {
	stroke: #4080FF;
}

#con-clear:not(.disabled):hover svg {
	stroke: #00C853;
}

#con-restart:hover svg {
	fill: rgb(0, 212, 120);
	transform: rotateY(180deg);
}

#con-refresh:hover svg {
	fill: rgb(0, 120, 255);
}

#con-refresh:hover svg path {
	transform: rotate(-435deg);
}

#con-move:hover svg {
	stroke: rgb(255, 0, 255);
}

#con-run-stop:active svg path {
	stroke: yellow;
}

#con-run-stop:active svg rect {
	stroke: yellow;
}

#con-up:not(.disabled):active svg {
	stroke: yellow;
}

#con-down:not(.disabled):active svg {
	stroke: yellow;
}

#con-clear:not(.disabled):active svg {
	stroke: yellow;
}

#con-refresh:active svg {
	fill: yellow;
}

#con-restart:active svg {
	fill: yellow;
}

#con-move:active svg {
	stroke: yellow;
}

#con-run-stop.active svg path {
	stroke: #339CFF !important;
}

#con-run-stop.active svg rect {
	stroke: #ff5220 !important;
}

#con-up:not(.disabled).active svg {
	stroke: #FF31cd !important;
}

#con-down:not(.disabled).active svg {
	stroke: #4080FF !important;
}

#con-clear:not(.disabled).active svg {
	stroke: #00C853 !important;
}

#con-refresh.active svg {
	fill: rgb(0, 120, 255) !important;
}

#con-restart.active svg {
	fill: rgb(0, 212, 120) !important;
}

#con-move.active svg {
	stroke: rgb(255, 0, 255) !important;
}

@media (hover: none) {
	.controls button:hover {
		transform: scale(1);
	}
	
	#con-run-stop:hover svg path {
		stroke: #0078D4;
	}
	
	#con-run-stop:hover svg rect {
		stroke: #D83B01;
	}

    #con-up:not(.disabled):hover svg {
		stroke: #FF3B7D;
	}
	
	#con-down:not(.disabled):hover svg {
		stroke: #00D8FF;
	}
	
	#con-clear:not(.disabled):hover svg {
		stroke: red;
	}
	
	#con-restart:hover svg {
		fill: rgb(0, 120, 212);
		transform: rotateX(180deg);
	}
	
	#con-refresh:hover svg {
		fill: rgb(0, 120, 212);
	}
	
	#con-refresh:hover svg path {
		transform: rotate(-75deg);
	}
	
	#con-move:hover svg {
		stroke: rgb(212, 0, 212);
	}
}

.con-bolt-spinner-circle {
	width: 20px;
    height: 20px;
    position: relative;
    border: 2px solid;
    border-color: rgba( 200, 200, 200 ,  1 );
    border-color: rgba( 96, 94, 92 ,  1 );
    border-top-color: rgba(0, 90, 158, 1);
    border-top-color: rgb(71, 158, 245);
    border-radius: 50%;
    animation-name: spinner-anim;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);
}

/*Loading*/
.spinner-287 {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

@keyframes spinner-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bolt-spinner-circle {
  position: absolute;
  opacity: 0;
  right: -20px;
  transition: opacity 0.2s ease-in-out, right 0.2s ease-in-out;
  border:  1.5px solid;
  border-color: rgba( 200, 200, 200 ,  1 );
  border-color: rgba( 96, 94, 92 ,  1 );
  border-top-color: rgba(0, 90, 158, 1);
  border-top-color: rgb(71, 158, 245);
  border-radius: 50%;
  animation-name: spinner-anim;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);
}

.bolt-spinner-circle.medium {
  width: 1.25rem;
  height: 1.25rem;
}

/*Loader*/
body .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}
body .vertical-centered-box:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
body .vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes rotate{ 0% { -webkit-transform: rotate(0deg);} 100% { -webkit-transform: rotate(360deg);}}
@-moz-keyframes rotate{ 0% { -moz-transform: rotate(0deg);} 100% { -moz-transform: rotate(360deg);}}
@-o-keyframes rotate{ 0% { -o-transform: rotate(0deg);} 100% { -o-transform: rotate(360deg);}}
@keyframes rotate{ 0% {-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg);} 100% {-webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-ms-transform: rotate(360deg);transform: rotate(360deg);}}
[not-existing] {
  zoom: 1;
}
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@-moz-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@-o-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
[not-existing] {
  zoom: 1;
}

lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@-moz-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@-o-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
[not-existing] {
  zoom: 1;
}

.loader-line-mask {
  position: absolute;
  width: 170px;
  height: 30px;
  margin-left: -30px;
  margin-top: -30px;
  overflow: hidden;
  -webkit-transform-origin: 85px 85px;
  -moz-transform-origin: 85px 85px;
  -ms-transform-origin: 85px 85px;
  -o-transform-origin: 85px 85px;
  transform-origin: 85px 85px;
  -webkit-mask-image: -webkit-linear-gradient(right, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 4s infinite linear;
}
.loader-line-mask .loader-line {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(42, 127, 159);
}

.loader-line-mask1 {
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 110px;
  margin-left: 10px;
  margin-top: 10px;
  overflow: hidden;
  transform: rotate(-50deg);
  -webkit-transform-origin: 90px 90px;
  -moz-transform-origin: 90px 90px;
  -ms-transform-origin: 90px 90px;
  -o-transform-origin: 90px 90px;
  transform-origin: 90px 90px;
}

.loader-line-mask1 .loader-line {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(76, 79, 87);
}

.loader-line-mask2 {
      -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: "proxima-nova-soft", sans-serif;
    -webkit-user-select: none;
    text-align: left;
    font-size: 0;
    position: absolute;
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 6px #24ecff) drop-shadow(0 0 30px #24ecff)
    drop-shadow(0 0 50px #24ecff);
	animation: move 7s linear 1;
	will-change: offset-distance;
}

.loader-line-mask2 .loader-dot {
    width: 1px;
    height: 1px;
    border-radius: 100%;
    box-shadow: 7px 7px 0px 2px #A6EAFF;
}

.loader-line-mask2 .loader-fade {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    box-shadow: 7px 7px 11px 6px #A6EAFF;
}

@keyframes move {
  0% {
    offset-distance: 53%;
  }
  
  50% {
    offset-distance: 30%;
  }

  100% {
    offset-distance: 20%;
  }
}

.zoom-in {
    transform: scale(0.8);   /* Start scaled down */
    transition: transform 0.4s ease-in, opacity 0.4s ease-in;  /* Zoom effect with duration and easing */
    opacity: 0;            /* Start hidden */
}

.zoom-in.visible {
    transform: scale(1);   /* Scale to full size */
    opacity: 1;            /* Fully visible */
}

.endlogo {
    transform: scale(1);   /* Start scaled down */
    transition: transform 0.2s ease-in, opacity 0.2s ease-in;  /* Zoom effect with duration and easing */
    opacity: 1;            /* Start hidden */
}

.endlogo.close {
    transform: scale(0.8);   /* Scale to full size */
    opacity: 0;            /* Fully visible */
}


    .loader {
      position: absolute;
      width: 200px;
      height: 200px;
    }

    .loader svg {
      width: 100%;
      height: 100%;
	  overflow: visible;
    }
	
	.loader-line-mask2 svg {
		filter: drop-shadow(0 0 14px #24ecff) drop-shadow(0 0 26px #24ecff) drop-shadow(0 0 11px #24ecff);
		overflow: visible;
	}
	
	.rotatingdot {
		filter: drop-shadow(0 0 0px #24ecff) drop-shadow(0 0 0px #24ecff) drop-shadow(0 0 0px #24ecff);
		will-change: filter;
	}

    /* Circle styling */
    .loader circle {
      fill: none;
      stroke-width: 5;
      stroke: url(#gradient); /* Use the gradient defined in the <defs> */
      stroke-dasharray: 565.2; /* Circumference of the circle */
      stroke-dashoffset: 141.3; /* Initially show 75% of the circle */
	  stroke-linecap: round;
      /* transition: stroke-dashoffset 10s linear; */
      /*animation: rotate 2s linear infinite;*/ /* Circle will rotate on its axis */
      transform-origin: 50% 50%; /* Set rotation axis to the center of the circle */
    }

    /* Rotation on axis */
    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    /* Decrease the visible portion to 25% over 10 seconds */
    .loader.decreasing circle {
      /* stroke-dashoffset: 235.5; */
    }
	
	#fade {
		margin-left: 40px;
		margin-top: 40px;
	}
	
	#static-back {
		opacity: 0;
	}
	
	#loader-dot {
		opacity: 0;
	}

@keyframes blink {
			0%, 100% { opacity: 1; }
			50% { opacity: 0; }
		}
		
		.typewriter {
			--caret: currentcolor;
		}

		.typewriter::before {
			content: "";
			animation: typing 0.7s;
			animation-fill-mode: forwards;
		}	

		.typewriter::after {
			content: "";
			border-right: 1px solid var(--caret);
			animation: blink 0.5s linear infinite;
		}
		
.loader-text {		
	color: rgb(255, 77, 77);
    font-size: 12px;
	text-align: center;
    position: absolute;
    width: 100%;
	transition: color 0.3s ease;
}

.loader-text .anim {
	color: rgba(42, 127, 159);
}

.loader-text.animate-scale1 {
    animation: scaleUp1 1s forwards; /* 2s for the animation duration */
}

/*Error page*/
.flex-center {
	height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
	flex-direction: column;
}

.Error-logo {
	position: absolute;
	z-index: 9999;
	width: 500px;
	height: 170px;
	display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
	transform: scale(2);
    opacity: 0;
	}
	
.Error-div {
	display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align everything to the left */
    justify-content: center;
    height: 100dvh;
    background-color: #020202;
    color: #1b1b1b;
    text-align: left;
    padding-left: 10%; /* Adjust for proper left alignment */
	}
	
.zoom-in {
    transform: scale(0.8);   /* Start scaled down */
    transition: transform 0.4s ease-in, opacity 0.4s ease-in;  /* Zoom effect with duration and easing */
    opacity: 0;            /* Start hidden */
}

.zoom-in.visible {
    transform: scale(1);   /* Scale to full size */
    opacity: 1;            /* Fully visible */
}

        .logo {
            width: 300px;
        }

        h1 {
            font-size: 100px;
            font-weight: 600;
            color: #ccc;
        }

        .message {
            max-width: 450px;
            margin-top: 10px;
        }

        .message p:first-child {
            font-size: 20px;
            font-weight: 600;
            color: #0078D4;
        }

        .message p:last-child {
            font-size: 16px;
            font-weight: 400;
            color: #aaa;
        }
		
/*Message Center*/
.message-center * {
	word-break: normal;
}

.message-center {
    font-size: 0.875rem;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    background-color: transparent;
    margin: 0.75rem;
    pointer-events: none;
}

.msgcen-t {
    pointer-events: none;
    z-index: 1;
    border-radius: 0.75rem;
    background-color: transparent;
}

.notify-bar {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: white;
	font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.msg-card {
    width: 27rem;
    animation: slideIn 1s ease forwards;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.32) 0px 0.3px 0.9px 0px;
    padding: 0.75rem;
    border-radius: 0.25rem;
    overflow: hidden;
    pointer-events: auto;
	background-color: rgb(41, 40, 39);
	margin-bottom: 4px;
	max-height: 100px;
}

.msg-card.reset-animation {
  animation: none;
  opacity: 1;
}

.msg-card.close-animation {
  margin: 0;
  max-height: 0 !important;
  opacity: 0.2 !important;
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.7s;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.msg-card:nth-child(3) {
	transform: translateY(0);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); /* For Safari */
}

.msg-card:nth-child(n+4) {
	transform: translateY(0);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%); /* For Safari */
}

.msg-card-head {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
    overflow: hidden;
}

.auto-d-bar {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: cyan;
}

.n-progress-bar {
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: cyan;
  transition: background-color 0.3s, width 0.3s;
}

.msg-svg {
    flex-shrink: 0;
    height: 1.25rem;
    width: 1.25rem;
}

.msg-title {
    overflow-wrap: anywhere;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-grow: 1;
    margin-left: 8px;
    margin-right: 8px;
    align-items: center;
    margin-inline-start: 0.5rem;
    margin-inline-end: 0.5rem;
    overflow: hidden;
}

.msg-button {
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    flex-shrink: 0;
    font-family: inherit;
    font-size: inherit;
    justify-content: center;
    line-height: inherit;
    outline: none;
    overflow: visible;
    position: relative;
    transition: background 80ms linear;
    margin: 0;
    animation: none !important;
    box-shadow: none !important;
    border-radius: 0.375rem;
    user-select: none;
    pointer-events: auto;
    height: auto;
    background-color: transparent;
    font-weight: normal;
    padding: 0.375rem;
}

.msg-button:not(.start):hover {
	background-color: rgba(255, 255, 255, 0.08);
}

.msg-button:not(.start):active {
	background-color: rgba(255, 255, 255, 0.29);
}

.msg-refresh svg {
	transition: transform 0.5s, fill 0.1s;
	transform: rotateX(180deg);
}

.msg-refresh:not(.start):hover svg {
	fill: rgb(0, 212, 120);
	transform: rotateY(180deg);
}

.msg-refresh.start svg {
	animation: ref-rotate 3s infinite forwards;
}

@keyframes ref-rotate {
	0% {
    transform: rotateX(180deg) rotateZ(360deg);
  }
  100% {
    transform: rotateX(180deg) rotateZ(0deg);
  }
}

.terminal.no-con-disable >div:not(.message-center) {
	pointer-events: none;
	opacity: 0.5;
	filter: blur(4px);
	user-select: none;
    transition: all 0.5s;
}

/* Info Container */
.cmd-info-card-con {
  font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  position: fixed;
  z-index: 1000000;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  overflow: hidden;
}

.cmd-info-card {
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.cmd-info-flex {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}

.cmd-info-box {
  transition: top 500ms ease-in-out;
  animation: tooltip-scale-in 300ms ease-in-out;
  background-color: transparent;
  pointer-events: auto;
  position: absolute;
  display: flex;
  flex-direction: row;
}

.cmd-info-card-con * {
  word-break: normal;
}

.info-card {
      width: 300px;
      min-height: 160px;
      background-color: #20262f;
      box-shadow:
  0 0 0 1px rgba(255, 255, 255, 0.06),
  0 6px 12px rgba(0, 0, 0, 0.65),
  0 8px 20px rgba(0, 120, 212, 0.35);

      padding: 16px 20px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
	  color: #f3f3f3;
    }

    /* Header */
    .info-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .info-title {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
    }
	
	.meta-line {
      font-size: 12px;
      color: #bbb;
      margin-top: 6px;
    }
	
	.loading-text {
      text-align: center;
      font-size: 13px;
      color: #aaa;
      flex-grow: 1;
      display: flex;
	  gap: 6px;
	  margin: 20px 0;
      align-items: center;
      font-style: italic;
    }
	
	.card-final-text {
      text-align: center;
      font-size: 13px;
      color: #aaa;
      flex-grow: 1;
      display: flex;
	  gap: 6px;
	  margin: 20px 0;
      flex-direction: column;
      font-style: italic;
    }
	
	.card-final-text .cep-message {
      display: flex;
      gap: 6px;
      align-items: center;
      text-align: left;
    }
	
	.card-final-text .cep-message svg {
      height: 20px;
    }
	
	.output-log-interactive {
	  text-align: center;
      font-size: 13px;
      color: #aaa;
      flex-grow: 1;
      display: flex;
	  gap: 6px;
	  margin: 10px 0;
      flex-direction: column;
      font-style: italic;
	}
	
	.loading-kay-logo {
		float: right;
	}
	
	.loading-kay-logo svg {
		width: 64px;
		height: 64px;
		fill: #6b96c4; 
	}

    .card-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin: 12px 0;
    }

    .footer-branding {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      font-size: 11px;
    }

    .footer-logo {
      height: 16px;
      margin-right: 6px;
      vertical-align: middle;
    }

    .footer-text {
      color: #3a96dd;
      font-weight: 500;
    }

    /* Sections */
    .section {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      margin-bottom: 12px;
      padding-bottom: 10px;
    }

    .section:last-child {
      border-bottom: none;
    }

    .section-title {
      font-weight: 500;
      font-size: 13px;
      color: #e1e1e1;
      display: flex;
      justify-content: space-between;
	  align-items: center;
      cursor: pointer;
    }

    .section-content {
      margin-top: 6px;
	  font-size: 13px;
    }

    .info-label {
      color: #aaa;
      font-weight: 600;
	  font-size: 12px;
      margin-bottom: 2px;
    }

    .info-value {
      color: #ddd;
	  margin-bottom: 8px;
    }

    /* Code Block */
    .code-block {
      background-color: #1b1b1b;
      color: #d4d4d4;
      padding: 10px;
      border-radius: 4px;
      font-family: monospace;
      font-size: 13px;
      overflow-x: auto;
      margin-top: 6px;
      position: relative;
	  line-height: 1.5;
    }

    .copy-btn {
      position: absolute;
      top: 6px;
      right: 6px;
      background-color: #0078d4;
      color: #fff;
      border: none;
      border-radius: 3px;
      font-size: 12px;
      padding: 3px 6px;
      cursor: pointer;
    }

    .copy-btn:hover {
      background-color: #005a9e;
    }

    /* Errors and Warnings */
    .error-line {
      color: #f1707b;
      font-weight: bold;
    }

    .warning-line {
      color: #f9d71c;
      font-weight: bold;
    }

    /* Links */
    .info-links {
      margin-top: 12px;
    }

    .info-link {
      color: #3a96dd;
      text-decoration: none;
      font-weight: 500;
      margin-right: 10px;
	  font-size: 12px;
    }

    .info-link:hover {
      text-decoration: underline;
    }

    .info-footer {
      margin-top: 15px;
      font-size: 11px;
      color: #888888;
    }

    /* Collapse icon */
    .collapse-icon {
      font-size: 12px;
      color: #3a96dd;
      transition: transform 0.3s;
    }

    .section.open .collapse-icon {
      transform: rotate(90deg);
    }
	
	.section.hover-open .collapse-icon {
      transform: rotate(90deg);
    }
	
	.section-content {
  height: 0;
  overflow: hidden;
  transition: height 500ms ease;
}

.section.open .section-content {
  height: auto;
}

.info-spinner-circle {
  flex-shrink: 0;
  border:  1.5px solid;
  border-color: rgba( 200, 200, 200 ,  1 );
  border-color: rgba( 96, 94, 92 ,  1 );
  border-top-color: rgba(0, 90, 158, 1);
  border-top-color: rgb(71, 158, 245);
  border-radius: 50%;
  animation-name: spinner-anim;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);
}

.info-spinner-circle.xsmall {
  width: 0.75rem;
  height: 0.75rem;
}

.context-con {
	max-height: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: max-height 0.5s;
	padding-right: 4px;
}

@keyframes tooltip-scale-in {
  from {
    scale: 0.3;
	opacity: 0;
  }
  to {
    scale: 1;
	opacity: 1;
  }
}

/* Content-Box */
.info-box-bg {
  background: linear-gradient(145deg, #141e30, #243b55);
  border-radius: 7px;
  margin: 0px 20px 0px 0px;
  position: relative;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.info-box-bg * {
  word-break: normal;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  white-space: normal;
}

.info-head {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 1rem;
    color: white;
    letter-spacing: 0.5px;
}

.top-head {
  background: linear-gradient(135deg, #1c2533, #2b3c4d);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem; /* spacing between icon and text */
}

.top-head .top-icon {
  height: 20px;
}

.top-bar {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
}

.top-bar button {
  flex: 1;
  padding: 1rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.top-bar button:hover,
.top-bar button.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.info-content {
  padding: 1rem 2rem;
  transition: opacity 0.3s ease-in-out;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-box code {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: Consolas, monospace;
  font-size: 1rem;
}

.info-box .value {
  color: cyan;
  background-color: rgba(0,0,0,0.3);
  padding: 2px 4px;
  border-radius: 4px;
}

.info-box h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffe082;
}

.info-box h3{
  margin-bottom: 0.3rem;
  font-size: 1.17rem;
  color: aqua;
}

.info-box p {
  margin-bottom: 1rem;
}

.info-box ul {
  margin-left: 1rem;
}

.info-box th,
.info-box td {
  padding: 5px 15px;
  text-align: justify;
  vertical-align: baseline;
}

.info-box a {
  color: #007BFF;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

.table-container {
  overflow-y: auto;
  position: relative;
  max-height: 25vh;
}

.table-container table {
  border-collapse: collapse;
}

.table-container thead {
  position: sticky;
  top: 0;
  background: linear-gradient(145deg, #222d3f, #2d425a);
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Regular.woff2") format("woff2"),
       url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Regular.woff") format("woff"),
	   url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Bold.woff2") format("woff2"),
       url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Bold.woff") format("woff"),
	   url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Bold.ttf") format("truetype"),;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Italic.woff2") format("woff2"),
       url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Italic.woff") format("woff"),
	   url("https://cdn.mvsrgroups.com/fonts/ext/jetbrainsmono/JetBrainsMono-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

.fv {
  overflow: hidden;
  font-size: 14px;
}
.fv-codewrap {
  max-height: 50vh;
  overflow: auto;
  position: relative;
}

.fv-code {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: line;
}
.fv-code li {
  display: flex;
  white-space: pre;
}
.fv-code li::before {
  counter-increment: line;
  content: counter(line);
  width: 4ch;
  min-width: 4ch;
  padding: 0 .75ch 0 .5ch;
  margin-right: 1ch;
  color: #888;
  background: #1b2433;
  text-align: right;
  user-select: none;
  position: sticky;
  left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.fv-code li span {
  flex: 1;
  white-space: pre; 
  tab-size: 4;
  line-height: 1.5;
  font-family: "JetBrains Mono", Consolas, Menlo, monospace;
  font-variant-ligatures: none;
}
.fv-code li.highlight {
  background: rgba(255, 220, 120, 0.25);
}
.fv-codewrap.wrap li {
  white-space: pre-wrap;
  word-break: break-word;
}
.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  float: right;
  color: inherit;
}
.copy-btn:hover svg {
  fill: #007bff; /* change color on hover */
}
.copy-btn .icon-check { display: none; }
.copy-btn.is-copied .icon-copy { display: none; }
.copy-btn.is-copied .icon-check { display: inline; }

.toolbar {
  display: flex;
  gap: 8px;              /* Slightly larger gap for clarity */
  padding: 0.5rem 1rem;  /* Add padding for spacing from edges */
  align-items: center;
  background: rgba(0, 0, 0, 0.2); /* Subtle background to separate from info-head */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}
.toolbar button,
.toolbar select {
  padding: 4px 6px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f7f7f7;
}
.font-size-wrap {
  position: relative;
  width: 60px;
  align-items: center;
}
.font-size-wrap:hover,
.font-size-wrap:hover {
  background: #3a4a5c;
}
.font-size-wrap:focus-within {
  background: #2b3c4d;
  border: 1px solid #555;
}
.font-size {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  appearance: none;
  cursor: pointer;
  z-index: 2;
}

.fv-codewrap {
  font-family: monospace;
  font-size: 14px;
  overflow: auto;
}
.fv-codewrap.word-wrap span {
  white-space: normal;
  word-break: break-word;
}
.fv-code {
  counter-reset: line;
}
.fv-code li {
  white-space: pre;
  list-style: decimal;
}

/* Find highlights */
.find-highlight {
  background: #ffb84d;
  color: #000;
  padding: 0;
  font-family: "JetBrains Mono", Consolas, Menlo, monospace;
  font-variant-ligatures: none;
}
.fv-code li.find-hit {
  background: rgba(255, 184, 77, 0.15);
}

/* Flash when goto */
@keyframes flashLine {
  0%   { background: rgba(255, 200, 100, 0.4); }
  100% { background: transparent; }
}
.flash-line {
  animation: flashLine 1s ease-in-out 1;
}

/* Simple dialogs */
.fv-dialog {
  position: absolute;
  bottom: 50%;
  right: 50%;
  width: 280px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  z-index: 10000;
  font-family: sans-serif;
  background: #1c2533;
  border: 1px solid #444;
  color: #eee;
  opacity: 0.1;
}
.fv-dialog:focus-within {
  opacity: 1;
}
.fv-dialog[hidden] {
  display: none !important;
}
.fv-dialog-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-weight: bold;
  background: #2b3c4d;
  border-bottom: 1px solid #555;
  color: #eee;
}
.fv-dialog-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fv-dialog input[type="text"],
.fv-dialog input[type="number"] {
  width: 100%;
  box-sizing: border-box;
  padding: 4px 6px;
  background: #2b3c4d;
  color: #fff;
  border: 1px solid #555;
}
.fv-dialog button {
  padding: 4px 6px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  cursor: pointer;
}
.fv-find-opts {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fv-find-stats {
  font-size: 12px;
  color: #555;
}
.fv-dialog-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

/* Toolbar buttons & dropdowns */
.toolbar button {
  background: none;
  border: none;
  color: #eee;
}

.toolbar select {
  background: #2b3c4d;
  border: 1px solid #555;
  color: #eee;
}

.toolbar button:hover,
.toolbar select:hover {
  background: #3a4a5c;
}

.toolbar button.active {
  background: #2b3c4d;
  border: 1px solid #555;
}

.toolbar button:focus,
.toolbar button:active {
  background: #405a74;
}

/* Copy button */
.copy-btn {
  color: #ccc;
}

.copy-btn:hover svg {
  fill: #88c5ff; /* Match scrollbar hover tone */
}

/* Dialog box */
.fv-dialog {
  background: #1c2533;
  border: 1px solid #444;
  color: #eee;
  opacity: 0.95;
}

.fv-dialog-title {
  background: #2b3c4d;
  border-bottom: 1px solid #444;
  color: #fff;
}

.fv-dialog input[type="text"],
.fv-dialog input[type="number"] {
  background: #2b3c4d;
  border: 1px solid #555;
  color: #fff;
}

.fv-dialog button {
  background: #2b3c4d;
  border: 1px solid #555;
  color: #eee;
}

.fv-dialog button:hover {
  background: #3a4a5c;
}

.toolbar .icon {
  height: 20px;
  vertical-align: middle;
}

.divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
  margin: 0 4px;
}

/* NEW buttons */
.btn-save {}
.btn-undo[disabled],
.btn-redo[disabled] { opacity: .5; pointer-events: none; }
.btn-replace {}
.btn-cut {}
.btn-paste {}

/* Replace dialog */
.fv-dialog.fv-replace {}
.fv-dialog.fv-replace .fv-replace-actions {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
}

/* Dirty indicator (red dot in header) */
.dirty-indicator {
  color: #e74c3c;
  margin-left: .5rem;
  font-size: 1.2em;
}

/* Save button state */
.btn-save.is-saving::after {
  content: '…';
  animation: saving-dots 1s infinite steps(3, end);
}
@keyframes saving-dots {
  0% { content: '·'; }
  33% { content: '··'; }
  66% { content: '···'; }
}

/* When a line flashes after Goto */
.flash-line {
  background: rgba(255, 235, 59, 0.35);
  transition: background 1s ease;
}
