/* Base styles for code blocks inside .md-text */
.md-text pre, .md-text code {
    background-color: transparent !important;
    color: #555 !important;
    font-size: 14px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-family: "Verdana", sans-serif !important;
    word-break: break-word; /* Prevent overflow */
    white-space: pre-wrap;  /* Wrap text to fit */
}

.md-text .bold-text {
    font-weight: bold; /* Apply bold styling to the text itself */
}

/* Responsive styles for smaller screens */
@media (max-width: 600px) {
    .md-text pre, .md-text code {
        font-size: 12px !important; /* Slightly smaller font on small screens */
        line-height: 1.4 !important; /* Better readability */
    }
}

/* Remove all Highlight.js styles */
.hljs {
  all: unset;
  background: none !important;
  color: inherit !important;
  font: inherit !important;
}

/* Optionally reset styles for specific hljs classes */
.hljs-keyword,
.hljs-string,
.hljs-comment,
.hljs-function,
.hljs-title,
.hljs-number,
.hljs-built_in,
.hljs-variable {
  all: unset;
  color: inherit !important;
}

/* Target inline code elements to remove highlighting */
.md-text code {
    background-color: transparent !important;
    color: #555 !important;
}


.H7 {
        font-size: 0.1px;
}

.rounded-right {
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
}
.rounded-left {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
}

.card_indent {
  margin: 0 10px;
  border-radius: 30px;
  background: #fff0;
  box-shadow: 15px 15px 30px #bebebe,
              -15px -15px 30px #ffffff;
}

.image-blurred-edge {
    box-shadow: 0 0 8px 8px white inset;
    background-image: url('/assets/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    /* you need to match the shadow color to your background or image border for the desired effect*/
}

P {
    font-size: 6vw;

}


.text_1 {
  animation: text1;

}

.text_2 {
  animation: text2;

}

.text_1, .text_2 {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  animation-duration: 10s;
  animation-timing-function: steps(25, end);
  animation-iteration-count: infinite;
}

.text_1::after, .text_2::after {
  content: "";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}

@keyframes text2 {
  0%, 50%, 100% {
    width: 0;
  }

  60%, 90% {
    width: 8em;
  }
}

@keyframes text1 {
  0%, 50%, 100% {
    width: 0;
  }
  10%, 40% {
    width: 8em;
  }
}

@keyframes caret {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}




.grad {
	background: linear-gradient(#fcfcfc, #fff0);
}

.grad2 {
	background: linear-gradient(#fff0, white);
}

.grad3 {
	background: linear-gradient(to right,#e7e7e7, #fff0);
}

.grad4 {
	background: linear-gradient(to right,#e7e7e7, #D3D3D3);
}

body  {
  background-color: transparent;
  background: linear-gradient(45deg, #f5f2f2 10%, #e3e3e3 45%, #d8dde3 55%, #939797 90%);
  animation: my_animation 20s ease infinite;
  background-size: 200% 200%;
  background-attachment: fixed;
  }

@media (min-width: 900px) {
    .content {
        max-width: 70%;
        margin: auto;
}

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

.popover {
    max-width: 100%; !important;
}

img {
  pointer-events: none !important;
}


  @keyframes my_animation {
      0% {background-position: 0% 0%;}
      50% {background-position: 100% 100%;}
      100% {background-position: 0% 0%;}
  }

  .rc-slider-track {
    background-color: grey;
  }
  .rc-slider-dot-active {
    border-color: white;
    border: solid 1px white;
  }
  .rc-slider-handle {
    background-color: grey;
    border-color: white;
  }
  .rc-slider-handle:hover {
    border-color: white;
  }
  .rc-slider-handle-active:active {
    border-color: white;
  }

  input[type=checkbox] {
    transform: scale(0);
    margin: 1px;
    cursor: pointer;
  }


  .ag-theme-alpine {
      --ag-background-color: 'rgba(0,0,0,0)'!important;
      --ag-borders: none !important;
      --ag-header-foreground-color: 'rgba(0,0,0,0)'!important;
      --ag-header-background-color: 'rgba(0,0,0,0)'!important;
      --ag-odd-row-background-color: rgba(0,0,0,0.05) !important;
      --ag-row-hover-color: rgba(255,255,255,0.5) !important;

  }

  .container {
      -ms-overflow-style: none;  /* Internet Explorer 10+ */
      scrollbar-width: none;  /* Firefox */
  }
  .container::-webkit-scrollbar {
      display: none;  /* Safari and Chrome */
  }



