/* CadStatusBar — bandeau d'état CAD (outil + contrainte + rappel touches) */

.cad-statusbar {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1250;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 24px);
    padding: 5px 10px;
    background: rgba(28, 30, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-size: 12px;
    color: #e8e8e8;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cad-statusbar-tool {
    font-weight: 600;
    color: #fff;
    padding: 1px 7px;
    background: #4a90d9;
    border-radius: 3px;
}

.cad-statusbar-constraint {
    color: #ffd479;
}

.cad-statusbar-hint {
    opacity: 0.5;
    font-size: 11px;
}
