#panel_debug {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 20px;
    color: #fff;
    overflow-y: hidden;
    display: none;
}

#debug_content{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    height: 200px;
    overflow-y: auto;
}

#debug_content button {
    font-size: 12px;
    background-color: #023e84;
    padding: 10px 20px;
    border-radius:0 !important;
    box-shadow: none !important;
}

#debug_content h3 {
   position: sticky;
   top: 0;
   background-color: rgba(0, 0, 0, 1);
}
