@charset "UTF-8";

*,
::after,
::before {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(244 254 255);
    background-color: #374458;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.h4,
.h5,
.h6 {
    margin-top: 0;
    font-weight: 500;
    line-height: 1.2;
    color: #3a4456;
}

.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    .h4 {
        font-size: 1.5rem;
    }
}

.h5 {
    font-size: 1.25rem;
}

.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.small,
small {
    font-size: 0.875em;
}

a {
    color: rgba(110, 168, 254);
    text-decoration: underline;
}

svg {
    vertical-align: middle;
}

.container-fluid {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-top: 0;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #34455a;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:focus,
.nav-link:hover {
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.nav-link:disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.nav-underline {
    gap: 1rem;
}

.nav-underline .nav-link {
    padding-right: 0;
    padding-left: 0;
    border-bottom: 0.125rem solid transparent;
}

.nav-underline .nav-link:focus,
.nav-underline .nav-link:hover {
    border-bottom-color: currentcolor;
}

.nav-underline .nav-link.active {
    font-weight: 700;
    color: #34455a;
    border-bottom-color: currentcolor;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    background-color: #b0c3d7;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: auto;
    color: rgb(55 68 88);
    word-wrap: break-word;
    background-color: #d2e0ef;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.375rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    position: relative;
}

.card-title {
    margin-bottom: 0.5rem;
    color: #3a4456;
    font-weight: bold;
}

.card-subtitle {
    margin-top: -0.25rem;
    margin-bottom: 0;
    color: #c4cdd4;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.d-flex {
    display: flex !important;
}

.border-0 {
    border: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-center {
    text-align: center !important;
}

.text-success {
    color: #198754 !important;
}

.text-body-secondary {
    color: #6c757d !important;
}

.text-body-tertiary {
    color: #adb5bd !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    background-color: transparent;
    color: rgba(110, 168, 254);
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.btn:hover {
    color: rgba(110, 168, 254);
    background-color: rgba(0, 0, 0, 0.1);
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot-corner {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.status-online {
    background-color: #28a745;
}

.status-offline {
    background-color: #dc3545;
}

.status-unknown {
    background-color: #6c757d;
}

.status-bounce {
    animation: status-glow 0.65s ease;
}

@keyframes status-glow {
    0% {
        transform: scale(1);
        box-shadow: none;
    }
    35% {
        transform: scale(1.08);
        box-shadow:
            0 0 10px 2px currentColor,
            0 0 18px 4px currentColor;
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}
