/*--------------------------------------------------------------
# global-rgt.css
# CSS สำหรับ component ที่อยู่ใน library/rgt/component.php (extended)
# component-master.php → อยู่ใน global.css
--------------------------------------------------------------*/

/* Bar Chart (rgt_component::getbarChart) */
.rgt-bar-chart { display:flex; align-items:flex-end; gap:4px; padding:0 2px; }
.rgt-bar-chart-item { flex:1; text-align:center; min-width:0; }
.rgt-bar-chart-val { font-size:11px; font-weight:600; color:#374151; margin-bottom:2px; overflow:hidden; text-overflow:ellipsis; }
.rgt-bar-chart-bar { border-radius:4px 4px 0 0; min-height:2px; transition:height .3s; }
.rgt-bar-chart-lbl { font-size:10px; color:#94A3B8; margin-top:4px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
@media (max-width:799px) {
  .rgt-bar-chart { gap:2px; }
  .rgt-bar-chart-lbl { font-size:9px; }
}
