/* styles.css */

body {
    margin: 0;
    font-family: monospace;
    background: #1e1e1e;
    color: #ccc;
}

#container {
    display: flex;
    height: 100vh;
}

#videoPanel {
    flex: 2;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

video {
    width: 100%;
    height: 100%;
    background: black;
}

#divider {
    width: 5px;
    cursor: col-resize;
    background: #444;
}

#sidePanel {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    border-bottom: 1px solid #444;
    padding: 4px;
}

td.value {
    color: #0f0; /* bright green for values */
    font-weight: bold;
}

canvas {
    width: 100%;
    height: 200px;
    background-color: #222;
}
