/* ====================== 11-DEBUG.CSS ====================== */
/* Стили отладочной панели */

#debugPanel {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border: 2px solid #f39c12;
    border-radius: 10px;
    font-size: 13px;
    max-height: 280px;
    overflow-y: auto;
}

body.theme-dark #debugPanel {
    background: #3f2e1e;
    border-color: #e67e22;
    color: #f0d48c;
}

#debugLog {
    white-space: pre-wrap;
    font-family: monospace;
    line-height: 1.45;
    color: #333;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #f0e4b0;
}

body.theme-dark #debugLog {
    color: #ddd;
    background: #1e1e1e;
    border-color: #555;
}