.focus-conn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #f8f9fa41;
    backdrop-filter: blur(8px);
    z-index: 12;

    visibility: hidden;
}


.center-conn {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: -1;
    overflow: auto;
}

.responsive {
    width: 100% !important;
    max-width: fit-content !important;
}

.guacamole-container {
    position: relative;
    cursor: crosshair;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    max-height: 82vh;
    overflow-x: visible !important;
}


.popover {
    background-color: #f8f9fac0;
    font-size: 14px;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.popover::after {
    background-color: #f8f9faab;
    backdrop-filter: blur(10px);
}

canvas {
    z-index: 0 !important;
}

.title-conn {
    font-size: 25px;
    position: relative;
    top: 0;
    color: black;
    z-index: 15;
    margin: 0;
}


.buttonConnection {
    border: none;
    background-color: inherit;

    position: absolute;
    top: 10px;
    left: 30px;

    z-index: 2;

    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 32px;
}

.buttonConnection:hover {
    scale: 0.94;
}

.buttonConnection svg {
    transition: all 0.4s ease;
}

.buttonConnection:hover svg {
    fill: var(--table-actions-color);
}


.container-close {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 14;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px
}

.close {
    font-size: 25px;
    position: relative;
    right: 0;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    background-color: red;
    opacity: 1;
    z-index: 15;
    transition: all 0.4s ease;
    margin: 0;
}

.close:hover {
    color: white;
    opacity: 1;
    background-color: #f7a54a;
    scale: 0.94;
}

.clipboard-display {
    display: none;
    bottom: 5px;
    width: 100%;
    margin-bottom: 10px;
    z-index: 15;
    color: var(--table-actions-color);
    font-style: italic;
    border-radius: 10px;
}

/* SKELETON */

.skeleton-loader {
    background: linear-gradient(to right, #eeeeeeda 8%, rgb(211, 211, 211) 25%, #eeeeeee8 33%);
    background-size: 200% 50px;
    width: 800px !important;
    max-width: 100% !important;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 82vh;
    animation: loader 1.2s linear infinite;

    border-radius: 10px;
}

@keyframes loader {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.toggleClipboard {
    margin: 10px 0px;
}

.iframe-http {
    border: none;
    border-radius: 10px;
}