/* DEBUGBAR */
.debugbar {
    font-size: 10px;
    color: gray;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: white;
    z-index: 2000;
    box-shadow: 0 0 5px #888888;
    height: 40px;
    cursor: pointer;
}

.debugbar:hover {
    height: 40vh;
}

.debugbar .debugbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.debugbar .debugbar-inner {
    overflow: scroll;
    height: 100%;
    width: 100%;
    padding-bottom: 30px;
}

.debugbar .debugbar-inner table {
    width: 100%;
}

.debugbar .debugbar-inner table tr:nth-child(odd) {
    background-color: #EEEEEE;
}

.debugbar .debugbar-inner table tr.highlight {
    background-color: #FBBF24;
    color: #111827;
}

.debugbar .debugbar-inner table tr.duplicate {
    background-color: #F87171;
    color: #111827;
}

.debugbar .debugbar-inner table tr.wrapper {
    background-color: #60A5FA;
    color: #111827;
}

.debugbar .debugbar-inner table tr td {
    padding: 5px;
}

.debugbar .debugbar-inner table tr td:nth-child(2),
.debugbar .debugbar-inner table tr td:nth-child(3) {
    font-family: monospace;
}

.debugbar .debugbar-inner table tr td:last-child {
    text-align: right;
}