.conduit-result {
            padding: 18px;
            background-color: #f8faff;
            border-radius: 8px;
            border: 1px solid #e0e8f0;
            margin: 10px 0;
        }
        .fill-gauge {
            width: 100%;
            height: 28px;
            background-color: #e9ecef;
            border-radius: 14px;
            overflow: hidden;
            margin: 8px 0;
            position: relative;
        }
        .fill-gauge-bar {
            height: 100%;
            border-radius: 14px;
            transition: width 0.6s ease;
            background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
        }
        .fill-gauge-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: 700;
            font-size: 0.85rem;
            color: #1a1a2e;
            text-shadow: 0 0 6px rgba(255,255,255,0.7);
            letter-spacing: 0.3px;
        }
        .status-badge {
            font-size: 1.1rem;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
        }
        .status-pass { background: #d4edda; color: #155724; }
        .status-fail { background: #f8d7da; color: #721c24; }
        .status-warning { background: #fff3cd; color: #856404; }
        .conductor-entry {
            background: #f8faff;
            border-radius: 6px;
            padding: 10px 12px;
            margin-bottom: 8px;
            border: 1px solid #e8ecf5;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        .conductor-entry select, .conductor-entry input {
            flex: 1 1 120px;
            min-width: 80px;
        }
        .conductor-entry .remove-btn {
            background: none;
            border: none;
            color: #dc3545;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0 8px;
            transition: transform 0.2s;
        }
        .conductor-entry .remove-btn:hover { transform: scale(1.2); }
        .add-conductor-btn {
            border: 2px dashed #b0c4de;
            background: transparent;
            border-radius: 8px;
            padding: 10px 20px;
            color: #2c3e50;
            font-weight: 500;
            width: 100%;
            transition: all 0.25s;
            cursor: pointer;
        }
        .add-conductor-btn:hover {
            background: #eaf0fa;
            border-color: #6c8ebf;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1.2rem;
        }
        .geometry-canvas {
            width: 100%;
            max-width: 600px;
            height: auto;
            background-color: #fafcff;
            border: 1px solid #dce4ef;
            border-radius: 10px;
            display: block;
            margin: 0 auto;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            margin: 0.6rem 0 0.2rem 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .legend-item { display: flex; align-items: center; gap: 0.4rem; }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }
        .legend-color.green { background: #28a745; }
        .legend-color.yellow { background: #ffc107; }
        .legend-color.red { background: #dc3545; }
        .legend-color.blue { background: #0d6efd; }
        .unit-note { font-size: 0.9rem; color: #6c7a8e; }
        .recommendation-box {
            background: #eef3f9;
            border-radius: 8px;
            padding: 1rem 1.4rem;
            margin: 0.8rem 0;
            border-left: 4px solid #0d6efd;
        }
        .badge-pill-custom {
            display: inline-block;
            padding: 0.2rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            background: #e9ecf3;
            color: #2c3e50;
        }
        @media (max-width: 768px) {
            .conductor-entry { flex-direction: column; align-items: stretch; }
            .conductor-entry select, .conductor-entry input { flex: 1 1 auto; }
        }