/* ui_gauges.css - Resource and Status Progress Bars */

#gauges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    width: 100%;
    height: 20px;
    gap: 4px;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gauge-wrapper {
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 4px;
    position: relative;
    height: 16px;
    min-width: 0;
    cursor: pointer;
}

.gauge-wrapper:hover .gauge-icon { transform: scale(1.2); }

.gauge-info {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 8px;
    font-weight: bold;
    color: #888;
    white-space: nowrap;
}

.gauge-icon { font-size: 9px; transition: transform 0.2s; }

.gauge-bar {
    flex: 1;
    height: 10px;
    background: #000;
    border: 1px solid #333;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.gauge-count {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7.5px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    z-index: 5;
}

#se-gauge-fill { height: 100%; background: linear-gradient(90deg, #008ba3, #00e5ff); width: 100%; transition: width 0.3s; }
#portal-gauge-fill { height: 100%; background: linear-gradient(90deg, #4b0082, #9400d3); width: 0%; transition: width 0.3s; }
#rs-gauge-fill { height: 100%; background: linear-gradient(90deg, #b71c1c, #ff1744); width: 100%; transition: width 0.3s; }
