@charset "UTF-8";
/**
 * Created with PhpStorm.
 * User: Satoshi
 * Date: 2025/07/12
 * Time: 9:43
 * To change this template use File | Settings | File Templates.
 */

/*-----------------------------------------------*
 * Debug Table Component
 *-----------------------------------------------*/

.cDebugTable {
    width: 100%;
    font-size: 16px;
    font-family: monospace;
    border-collapse: collapse;
}
.cDebugTable thead th {
    background-color: #b3c5fa;
}
.cDebugTable tbody {
    text-align: left;
}
.cDebugTable thead tr {
    background-color: #f5f5f5;
}
.cDebugTable tbody tr {
    background-color: #f5f5f5;
}
.cDebugTable,
.cDebugTable th,
.cDebugTable td {
    border: 1px solid #a3a3a3;
}
.cDebugTable th,
.cDebugTable td {
    padding: 0 4px;
}
.cDebugTable tbody td {
    background-color: #ffffff;
}

.cDebugTable__html {
    border: 1px solid #9fbcaa;
    background-color: #daf5e4;
    padding: 4px;
    font-size: 14px;
}