.debug {
    z-index: 10000;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38px;
    width: 90px;
    display: block;
    background: #afafaf;
    cursor: pointer;
    position: fixed;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
.debug:hover {
    opacity: 1;
}
.debug.open {
    height: calc(100vh - 1rem);
    width: calc(100vw - 2rem);
    opacity: 1;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 1.5rem;
    top: 0.5rem;
    overflow-y: scroll;
}
.debug-text {
    padding: 1rem;
    background-color: #1c94c4;
    color: white;
}
.debug .debug-info {
    margin-top: 10px;
    background: #efefef;
    border: 1px solid #afafaf;
    display: none;
    width: 100%;
    overflow: hidden;
    padding: 5px;
}

.debug-info table th {
    white-space: nowrap;
}