/* Inventory Color Code Circles */
.color-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    margin-right: 8px;
}

.color-circle.green {
    background: #4caf50;
}

.color-circle.yellow {
    background: #ffeb3b;
    border: 1px solid #ccc;
}

.color-circle.red {
    background: #f44336;
}

.color-circle.green-yellow {
    background: none;
}

.color-circle.green-yellow .half {
    display: block;
    width: 8px;
    height: 16px;
    position: absolute;
    top: 0;
}

.color-circle.green-yellow .green-half {
    background: #4caf50;
    left: 0;
}

.color-circle.green-yellow .yellow-half {
    background: #ffeb3b;
    right: 0;
}

