.rgo-production{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:30px;
margin-top:20px;
}

.rgo-empty{
color:#999;
font-style:italic;
}

.rgo-card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.rgo-card h2{
margin-top:0;
margin-bottom:15px;
}

.rgo-item{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
font-size:16px;
}

.rgo-item strong{
font-size:18px;
}

.rgo-days{
margin-bottom:20px;
}

.rgo-days button{
padding:8px 14px;
margin-right:5px;
border:1px solid #ccc;
background:#fff;
cursor:pointer;
}

.rgo-days button.active{
background:#007cba;
color:#fff;
border-color:#007cba;
}

/* Inventory stock status colours */
.rgo-stock-ok      { border-left: 4px solid #46b450; }
.rgo-stock-low     { border-left: 4px solid #ffb900; }
.rgo-stock-shortage{ border-left: 4px solid #e67e00; }
.rgo-stock-critical{ border-left: 4px solid #dc3232; }

.rgo-stock-detail{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:2px;
}

.rgo-needed{
font-size:13px;
color:#888;
}

.rgo-in-stock{
font-size:16px;
}

.rgo-shortage{
font-size:13px;
color:#dc3232;
font-style:normal;
font-weight:600;
}