/* ==================== DEBUG PANEL STYLES ==================== */
/* Debug content area */
#debugContent {
    background: #1f2937;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Debug logs container scrollbar */
#debugLogsContainer::-webkit-scrollbar {
    width: 6px;
}

#debugLogsContainer::-webkit-scrollbar-track {
    background: #374151;
}

#debugLogsContainer::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 10px;
}

#debugLogsContainer::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Debug log entry */
.debug-log-entry {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
}

/* Debug log types */
.debug-log-info .debug-log-type {
    color: #60a5fa;
}

.debug-log-info .debug-log-message {
    color: #e5e7eb;
}

.debug-log-warn .debug-log-type {
    color: #fbbf24;
}

.debug-log-warn .debug-log-message {
    color: #fef3c7;
}

.debug-log-error .debug-log-type {
    color: #f87171;
}

.debug-log-error .debug-log-message {
    color: #fecaca;
}
