/* ========================================================
   INSPECTION SHARED STYLES
   Global styles for inspection-related components
   ======================================================== */

/* Status Cell - Visual Indicator Column */
.status-cell {
    width: 8px;
    min-width: 8px;
    max-width: 8px;
    padding: 0;
    border-right: 2px solid var(--border-strong);
    position: relative;
}

.status-cell.complete {
    background: var(--success); /* Green - Ready/Complete */
}

.status-cell.incomplete {
    background: var(--danger); /* Red - Needs Attention */
}

/* Status Column Header */
.status-header {
    width: 8px;
    min-width: 8px;
    max-width: 8px;
    padding: 0;
}
