body {
    display: grid;
    grid-template-rows: auto 1fr;
}

.nspy-dropdown-toggle {
    display: flex;
    align-items: center;
}

#nav-tab-content {
    /*height: 100%;*/
    max-width: 1280px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#nav-tab {
    width: 100%;
    max-width: 1280px;
}

#navbar-top-menu {
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

table tbody>tr.selected input {
    font-weight: 700;
    border-radius: unset;
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.inline-flex {
    display: inline-flex;
}

.btn-jurbot-home {
    background: #7797b4;
    color: black;
    border-radius: unset;
    border: unset;

    padding: 0.75rem 2.1875rem;
}

section {
    position: relative;
}

.mbr-arrow {
    bottom: 48px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.mbr-arrow a {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    height: 46px;
    outline-style: none !important;
    position: relative;
    text-decoration: none;
    transition: all .3s ease-in-out;
    width: 46px;
}

.mbr-arrow a:hover {
    background: rgba(0, 0, 0, 1);
}

.mbr-arrow-floating .mbr-arrow-icon {
    -webkit-animation: floating-arrow 1.6s infinite ease-in-out 0s;
    animation: floating-arrow 1.6s infinite ease-in-out 0s;
}

.mbr-arrow-icon {
    display: block;
}

.mbr-arrow-icon::before {
    content: "\203a";
    display: inline-block;
    font-family: serif;
    font-size: 32px;
    line-height: 1;
    font-style: normal;
    left: 4px;
    position: relative;
    top: 6px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

#page-quick-start {
    display: none;
    font-size: 1rem; 
    line-height: 1.5;
}

.nav-link-nspy {
    color: rgba(255, 255, 255, 0.75);
}

.nav-link-nspy:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-link-nspy:focus {
    color: rgba(255, 255, 255, 1);
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: white;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

section .container {
    height: 100vh;
}

.nspy-visibility-hidden {
    visibility: hidden;
}

.input-group-text.dropdown-toggle::after {
    content: unset;
}

.label-new {
    display: flex;
    justify-content: start;
}

.grid-new {
    display: grid;
    grid-template-columns: auto 20rem;
    row-gap: 1rem;
    column-gap: 2.5rem;
    width: fit-content;
}

.grid-new div {
    align-items: center;
}

.grid-new span {
   font-weight: bold;
}

.flex-new {
    display: flex;
    gap: 0.5rem;
}

.gap-row {
    height: 1rem;
    /* Adjust height as needed */
}

.border-radius-0 {
    border-radius: 0;
}

.nspy-progress-spinner {
  width: 100%;
  height: 5px;
  background-color: #e0e0e0;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.nspy-progress-bar {
  width: 30%;
  height: 100%;
  background-color: #007bff;
  position: absolute;
  top: 0;
  left: 0;
  animation: nspy-progress-back-and-forth 1.5s ease-in-out infinite;
}

@keyframes nspy-progress-back-and-forth {
  0% {
    left: 0;
  }

  50% {
    left: 70%;
  }

  100% {
    left: 0;
  }
}