/* Reusable Glass Panel effect */
.glass-panel {
    background-color: #102A26;
    border: 1px solid #1E3D38;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #1E3D38;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #2a554f;
}

/* Log lines coloring */
.log-info {
    color: #55EFC4;
}

.log-warn {
    color: #FDCB6E;
}

.log-error {
    color: #FF7675;
}

.log-sys {
    color: #818cf8;
}

/* Indigo for systemic logs */

canvas {
    display: block;
    width: 100%;
    height: 100%;
}