
.page {
  width: auto;
  height: 100vh;
  align-items: center;
  margin: 0 auto;
  vertical-align: middle;
}
.page-content {
}

.header[data-v-9257fd96] {
  height: fit-content;
}
.shifted[data-v-9257fd96] {
  padding-left: 20px;
}


.banner-text[data-v-182d28cb] {
  text-align: center;
  font-size: 25px;
  color: #868785;
}
.banner[data-v-182d28cb] {
  background: whitesmoke;
  padding: 16px;
  border-radius: 8px;
}
.logo[data-v-182d28cb] {
  display: flex;
  flex-direction: row;
  padding-bottom: 20px;
  padding-top: 20px;
  justify-content: center;
}
.container[data-v-182d28cb] {
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 90vh;
  align-self: center;
  align-items: center;
  vertical-align: middle;
}
.sign[data-v-182d28cb] {
  column-gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}



.button-center[data-v-de980501] {
  display: flex;
  align-items: center;
}


.navigation[data-v-a1eafbd3] {
  padding-left: 30px;
}

.spinner[data-v-fba934de] {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin-fba934de 1s linear infinite;
}
@keyframes spin-fba934de {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.overlay[data-v-fba934de] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.connections[data-v-c991f36b] {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}


.content[data-v-d4bd2888] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

.console-container[data-v-89ba15ca] {
  background: #1e1e1e;
  border-radius: 4px;
  padding: 16px;
  overflow: auto;
  max-height: 500px;
}
.console-output[data-v-89ba15ca] {
  color: #d4d4d4;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: left;
}
.pack {
    background: whitesmoke;
    padding: 15px;
    border-radius: 2px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

i.v-icon.v-icon {
    color: #868785;
    margin-top: 2px;
}

.title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #aaaaaa;
}

.dashboard {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 16px;
    width: 75%;
}

.description, .card-description {
    display: flex;
    width: 100%;
    text-align: left;
    justify-content: start;
}

.card-description {
    padding-top: 16px;
}

.table-value {
    font-weight: 500;
}/* color palette from <https://github.com/vuejs/theme> */
:root {
    --vt-c-white: #ffffff;
    --vt-c-white-soft: #f8f8f8;
    --vt-c-white-mute: #f2f2f2;

    --vt-c-black: #181818;
    --vt-c-black-soft: #222222;
    --vt-c-black-mute: #282828;

    --vt-c-indigo: #2c3e50;

    --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
    --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
    --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
    --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

    --vt-c-text-light-1: var(--vt-c-indigo);
    --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
    --vt-c-text-dark-1: var(--vt-c-white);
    --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}

/* semantic color variables for this project */
:root {
    --color-background: var(--vt-c-white);
    --color-background-soft: var(--vt-c-white-soft);
    --color-background-mute: var(--vt-c-white-mute);

    --color-border: var(--vt-c-divider-light-2);
    --color-border-hover: var(--vt-c-divider-light-1);

    --color-heading: var(--vt-c-text-light-1);
    --color-text: var(--vt-c-text-light-1);

    --section-gap: 160px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-background: var(--vt-c-black);
        --color-background-soft: var(--vt-c-black-soft);
        --color-background-mute: var(--vt-c-black-mute);

        --color-border: var(--vt-c-divider-dark-2);
        --color-border-hover: var(--vt-c-divider-dark-1);

        --color-heading: var(--vt-c-text-dark-1);
        --color-text: var(--vt-c-text-dark-2);
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    position: relative;
    font-weight: normal;
}

body {
    min-height: 100vh;
    color: var(--color-text);
    background: var(--color-background);
    transition: color 0.5s, background-color 0.5s;
    line-height: 1.6;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
